Changeset 192882 in webkit for trunk/Source/JavaScriptCore/bytecode/EvalCodeCache.h
- Timestamp:
- Dec 1, 2015, 6:39:58 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/EvalCodeCache.h
r192876 r192882 51 51 return 0; 52 52 } 53 54 EvalExecutable* getSlow(ExecState* exec, JSCell* owner, bool inStrictContext, ThisTDZMode thisTDZMode, bool isDerivedConstructorContext, bool isArrowFunctionContext,const String& evalSource, JSScope* scope)53 54 EvalExecutable* getSlow(ExecState* exec, JSCell* owner, bool inStrictContext, ThisTDZMode thisTDZMode, const String& evalSource, JSScope* scope) 55 55 { 56 56 VariableEnvironment variablesUnderTDZ; 57 57 JSScope::collectVariablesUnderTDZ(scope, variablesUnderTDZ); 58 EvalExecutable* evalExecutable = EvalExecutable::create(exec, makeSource(evalSource), inStrictContext, thisTDZMode, isDerivedConstructorContext, isArrowFunctionContext,&variablesUnderTDZ);58 EvalExecutable* evalExecutable = EvalExecutable::create(exec, makeSource(evalSource), inStrictContext, thisTDZMode, &variablesUnderTDZ); 59 59 if (!evalExecutable) 60 60 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.