Changeset 30534 in webkit for trunk/JavaScriptCore/kjs/regexp_object.h
- Timestamp:
- Feb 23, 2008, 9:01:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.h
r30040 r30534 54 54 bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); 55 55 JSValue* getValueProperty(ExecState*, int token) const; 56 void put(ExecState*, const Identifier&, JSValue* , int attributes = None);57 void putValueProperty(ExecState*, int token, JSValue* , int attributes);56 void put(ExecState*, const Identifier&, JSValue*); 57 void putValueProperty(ExecState*, int token, JSValue*); 58 58 59 59 virtual const ClassInfo* classInfo() const { return &info; } … … 80 80 JSObject* createRegExpImp(ExecState*, PassRefPtr<RegExp>); 81 81 virtual JSValue* callAsFunction(ExecState*, JSObject*, const List&); 82 virtual void put(ExecState*, const Identifier&, JSValue* , int attributes = None);83 void putValueProperty(ExecState*, int token, JSValue* , int attributes);82 virtual void put(ExecState*, const Identifier&, JSValue*); 83 void putValueProperty(ExecState*, int token, JSValue*); 84 84 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); 85 85 JSValue* getValueProperty(ExecState*, int token) const;
Note:
See TracChangeset
for help on using the changeset viewer.