Changeset 10636 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Sep 27, 2005, 4:38:22 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r10621 r10636 2346 2346 FunctionImp *fimp = new DeclaredFunctionImp(exec, ident, body.get(), context->scopeChain()); 2347 2347 ValueImp *ret(fimp); 2348 ValueImp *proto = exec->lexicalInterpreter()->builtinObject()->construct(exec, List::empty()); 2348 ObjectImp *proto = exec->lexicalInterpreter()->builtinObject()->construct(exec, List::empty()); 2349 proto->put(exec, constructorPropertyName, ret, ReadOnly|DontDelete|DontEnum); 2349 2350 fimp->put(exec, prototypePropertyName, proto, Internal|DontDelete); 2350 2351
Note:
See TracChangeset
for help on using the changeset viewer.