Home | History | Annotate | Download | only in runtime

Lines Matching full:value

94 void JSActivation::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
96 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this));
98 if (symbolTablePut(propertyName, value))
105 putDirect(propertyName, value, 0, true, slot);
109 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
111 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this));
113 if (symbolTablePutWithAttributes(propertyName, value, attributes))
121 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot);