Changeset 38464 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Nov 16, 2008, 6:21:16 PM (17 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/ExecState.h
r38463 r38464 83 83 const CommonIdentifiers& propertyNames() const { return *globalData().propertyNames; } 84 84 const ArgList& emptyList() const { return *globalData().emptyList; } 85 BytecodeInterpreter* interpreter() { return globalData().interpreter; }85 Interpreter* interpreter() { return globalData().interpreter; } 86 86 Heap* heap() { return &globalData().heap; } 87 87 … … 98 98 friend class JSActivation; 99 99 friend class JSGlobalObject; 100 friend class BytecodeInterpreter;100 friend class Interpreter; 101 101 102 102 static CallFrame* create(Register* callFrameBase) { return static_cast<CallFrame*>(callFrameBase); } -
trunk/JavaScriptCore/runtime/JSCell.h
r38463 r38464 39 39 friend class JSString; 40 40 friend class JSValue; 41 friend class BytecodeInterpreter;41 friend class Interpreter; 42 42 43 43 private: -
trunk/JavaScriptCore/runtime/JSFunction.h
r38463 r38464 40 40 class JSFunction : public InternalFunction { 41 41 friend class CTI; 42 friend class BytecodeInterpreter;42 friend class Interpreter; 43 43 44 44 typedef InternalFunction Base; -
trunk/JavaScriptCore/runtime/JSGlobalData.cpp
r38463 r38464 65 65 66 66 JSGlobalData::JSGlobalData(bool isShared) 67 : interpreter(new BytecodeInterpreter)67 : interpreter(new Interpreter) 68 68 , exception(noValue()) 69 69 , arrayTable(new HashTable(JSC::arrayTable)) -
trunk/JavaScriptCore/runtime/JSGlobalData.h
r38463 r38464 48 48 class JSObject; 49 49 class Lexer; 50 class BytecodeInterpreter;50 class Interpreter; 51 51 class Parser; 52 52 class ParserRefCounted; … … 64 64 ~JSGlobalData(); 65 65 66 BytecodeInterpreter* interpreter;66 Interpreter* interpreter; 67 67 68 68 JSValue* exception; -
trunk/JavaScriptCore/runtime/JSString.h
r38463 r38464 61 61 class JSString : public JSCell { 62 62 friend class CTI; 63 friend class BytecodeInterpreter;63 friend class Interpreter; 64 64 65 65 public:
Note:
See TracChangeset
for help on using the changeset viewer.