Lines Matching full:slot
70 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
72 return getStaticValueSlot<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, slot);
80 JSValue regExpObjectGlobal(ExecState*, const Identifier&, const PropertySlot& slot)
82 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->global());
85 JSValue regExpObjectIgnoreCase(ExecState*, const Identifier&, const PropertySlot& slot)
87 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->ignoreCase());
90 JSValue regExpObjectMultiline(ExecState*, const Identifier&, const PropertySlot& slot)
92 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->multiline());
95 JSValue regExpObjectSource(ExecState* exec, const Identifier&, const PropertySlot& slot)
97 return jsString(exec, asRegExpObject(slot.slotBase())->regExp()->pattern());
100 JSValue regExpObjectLastIndex(ExecState* exec, const Identifier&, const PropertySlot& slot)
102 return jsNumber(exec, asRegExpObject(slot.slotBase())->lastIndex());
105 void RegExpObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
107 lookupPut<RegExpObject, JSObject>(exec, propertyName, value, ExecState::regExpTable(exec), this, slot);