Changeset 192882 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- Timestamp:
- Dec 1, 2015, 6:39:58 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r192876 r192882 582 582 JSGlobalObject* calleeGlobalObject = exec->callee()->globalObject(); 583 583 VariableEnvironment emptyTDZVariables; // Indirect eval does not have access to the lexical scope. 584 EvalExecutable* eval = EvalExecutable::create(exec, makeSource(s), false, ThisTDZMode::CheckIfNeeded, false, false,&emptyTDZVariables);584 EvalExecutable* eval = EvalExecutable::create(exec, makeSource(s), false, ThisTDZMode::CheckIfNeeded, &emptyTDZVariables); 585 585 if (!eval) 586 586 return JSValue::encode(jsUndefined());
Note:
See TracChangeset
for help on using the changeset viewer.