Changeset 4612 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Jul 10, 2003, 2:18:25 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r4363 r4612 107 107 }; 108 108 109 class SavedBuiltinsInternal; 110 111 class SavedBuiltins { 112 friend class InterpreterImp; 113 public: 114 SavedBuiltins(); 115 ~SavedBuiltins(); 116 private: 117 SavedBuiltinsInternal *_internal; 118 }; 119 109 120 /** 110 121 * Interpreter objects can be used to evaluate ECMAScript code. Each … … 345 356 #endif 346 357 358 void saveBuiltins (SavedBuiltins &) const; 359 void restoreBuiltins (const SavedBuiltins &); 360 347 361 private: 348 362 InterpreterImp *rep;
Note:
See TracChangeset
for help on using the changeset viewer.