Changeset 30534 in webkit for trunk/JavaScriptCore/kjs/regexp_object.cpp
- Timestamp:
- Feb 23, 2008, 9:01:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.cpp
r30109 r30534 174 174 } 175 175 176 void RegExpImp::put(ExecState* exec, const Identifier& propertyName, JSValue* value , int attributes)177 { 178 lookupPut<RegExpImp, JSObject>(exec, propertyName, value, attributes,&RegExpImpTable, this);179 } 180 181 void RegExpImp::putValueProperty(ExecState* exec, int token, JSValue* value , int)176 void RegExpImp::put(ExecState* exec, const Identifier& propertyName, JSValue* value) 177 { 178 lookupPut<RegExpImp, JSObject>(exec, propertyName, value, &RegExpImpTable, this); 179 } 180 181 void RegExpImp::putValueProperty(ExecState* exec, int token, JSValue* value) 182 182 { 183 183 UNUSED_PARAM(token); … … 411 411 } 412 412 413 void RegExpObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue *value , int attr)414 { 415 lookupPut<RegExpObjectImp, InternalFunctionImp>(exec, propertyName, value, attr, &RegExpObjectImpTable, this);416 } 417 418 void RegExpObjectImp::putValueProperty(ExecState *exec, int token, JSValue *value , int)413 void RegExpObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue *value) 414 { 415 lookupPut<RegExpObjectImp, InternalFunctionImp>(exec, propertyName, value, &RegExpObjectImpTable, this); 416 } 417 418 void RegExpObjectImp::putValueProperty(ExecState *exec, int token, JSValue *value) 419 419 { 420 420 switch (token) {
Note:
See TracChangeset
for help on using the changeset viewer.