Changeset 20310 in webkit for trunk/JavaScriptCore/kjs/interpreter.h
- Timestamp:
- Mar 18, 2007, 10:43:47 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.h
r20004 r20310 328 328 virtual bool isSafeScript(const Interpreter*) { return true; } 329 329 330 // This is a workaround to avoid accessing the global variables for these identifiers in331 // important property lookup functions, to avoid taking PIC branches in Mach-O binaries332 const Identifier& argumentsIdentifier() { return *m_argumentsPropertyName; }333 const Identifier& specialPrototypeIdentifier() { return *m_specialPrototypePropertyName; }334 335 330 // Chained list of interpreters (ring) 336 331 static Interpreter* firstInterpreter() { return s_hook; } … … 376 371 377 372 ExecState m_globalExec; 378 379 const Identifier *m_argumentsPropertyName;380 const Identifier *m_specialPrototypePropertyName;381 373 382 374 // Chained list of interpreters (ring) - for collector
Note:
See TracChangeset
for help on using the changeset viewer.