Changeset 128265 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.h
- Timestamp:
- Sep 11, 2012, 11:14:56 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.h
r127958 r128265 32 32 #include "JSFunction.h" 33 33 #include "Interpreter.h" 34 #include "JSGlobalObject.h" 34 35 #include "LLIntCLoop.h" 35 36 #include "Nodes.h" … … 754 755 WriteBarrier<SharedSymbolTable> m_symbolTable; 755 756 }; 757 758 inline JSFunction::JSFunction(JSGlobalData& globalData, FunctionExecutable* executable, JSScope* scope) 759 : Base(globalData, scope->globalObject()->functionStructure()) 760 , m_executable(globalData, this, executable) 761 , m_scope(globalData, this, scope) 762 { 763 } 756 764 757 765 inline FunctionExecutable* JSFunction::jsExecutable() const
Note:
See TracChangeset
for help on using the changeset viewer.