Changeset 47330 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Aug 15, 2009, 5:23:25 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Arguments.h
r47292 r47330 30 30 #include "Interpreter.h" 31 31 #include "ObjectConstructor.h" 32 #include "PrototypeFunction.h" 32 33 33 34 namespace JSC { -
trunk/JavaScriptCore/runtime/Executable.h
r47307 r47330 47 47 int lineNo() const { return m_node->lineNo(); } 48 48 CodeBlockType& bytecode(ScopeChainNode* scopeChainNode) { return m_node->bytecode(scopeChainNode); } 49 50 #if ENABLE(JIT) 49 51 JITCode& jitCode(ScopeChainNode* scopeChainNode) { return m_node->jitCode(scopeChainNode); } 52 #endif 50 53 51 54 protected:
Note:
See TracChangeset
for help on using the changeset viewer.