Changeset 36726 in webkit for trunk/JavaScriptCore/kjs/GlobalEvalFunction.cpp
- Timestamp:
- Sep 20, 2008, 7:29:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/GlobalEvalFunction.cpp
r36263 r36726 26 26 #include "GlobalEvalFunction.h" 27 27 28 #include "FunctionPrototype.h"29 28 #include "JSGlobalObject.h" 30 29 #include <wtf/Assertions.h> … … 34 33 ASSERT_CLASS_FITS_IN_CELL(GlobalEvalFunction); 35 34 36 GlobalEvalFunction::GlobalEvalFunction(ExecState* exec, FunctionPrototype* functionPrototype, int len, const Identifier& name, NativeFunction function, JSGlobalObject* cachedGlobalObject)37 : PrototypeFunction(exec, functionPrototype, len, name, function)35 GlobalEvalFunction::GlobalEvalFunction(ExecState* exec, PassRefPtr<StructureID> structure, int len, const Identifier& name, NativeFunction function, JSGlobalObject* cachedGlobalObject) 36 : PrototypeFunction(exec, structure, len, name, function) 38 37 , m_cachedGlobalObject(cachedGlobalObject) 39 38 {
Note:
See TracChangeset
for help on using the changeset viewer.