Changeset 193606 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- Timestamp:
- Dec 6, 2015, 5:54:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r193584 r193606 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.