Home | History | Annotate | Download | only in runtime

Lines Matching refs:prototype

151     if (propertyName == exec->propertyNames().prototype) {
155 JSObject* prototype = new (exec) JSObject(scopeChain().globalObject()->emptyObjectStructure());
156 prototype->putDirect(exec->propertyNames().constructor, this, DontEnum);
157 putDirect(exec->propertyNames().prototype, prototype, DontDelete);
187 if (propertyName == exec->propertyNames().prototype) {
256 JSValue prototype = get(exec, exec->propertyNames().prototype);
257 if (prototype.isObject())
258 structure = asObject(prototype)->inheritorID();