Changeset 31136 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Mar 18, 2008, 2:10:30 PM (17 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/Activation.h
r31114 r31136 28 28 #include "JSVariableObject.h" 29 29 #include "object.h" 30 #include "function.h" 30 31 31 32 namespace KJS { … … 82 83 }; 83 84 85 inline void ActivationImp::init(ExecState* exec) 86 { 87 d()->exec = exec; 88 d()->function = exec->function(); 89 d()->symbolTable = &exec->function()->body->symbolTable(); 90 d()->argumentsObject = 0; 91 } 92 84 93 const size_t activationStackNodeSize = 32; 85 94 -
trunk/JavaScriptCore/kjs/function.cpp
r31121 r31136 353 353 if (!d()->isOnStack) 354 354 delete d(); 355 }356 357 void ActivationImp::init(ExecState* exec)358 {359 d()->symbolTable = &exec->function()->body->symbolTable();360 d()->exec = exec;361 d()->function = exec->function();362 d()->argumentsObject = 0;363 355 } 364 356
Note:
See TracChangeset
for help on using the changeset viewer.