Changeset 59637 in webkit for trunk/JavaScriptCore/runtime/Lookup.cpp
- Timestamp:
- May 17, 2010, 7:39:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Lookup.cpp
r58286 r59637 21 21 #include "Lookup.h" 22 22 23 #include "Executable.h" 23 24 #include "JSFunction.h" 24 25 #include "PrototypeFunction.h" … … 78 79 #if ENABLE(JIT) 79 80 if (entry->generator()) 80 function = new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), entry->functionLength(), propertyName, exec->globalData().get Thunk(entry->generator()), entry->function());81 function = new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), entry->functionLength(), propertyName, exec->globalData().getNativeExecutable(entry->function(), entry->generator())); 81 82 else 82 83 #endif
Note:
See TracChangeset
for help on using the changeset viewer.