- EvalExecutable* get(ExecState* exec, CodeCache* codeCache, ScriptExecutable* owner, bool inStrictContext, const String& evalSource, JSScope* scope, JSValue& exceptionValue)
- {
- EvalExecutable* evalExecutable = tryGet(inStrictContext, evalSource, scope);
-
- if (!evalExecutable)
- evalExecutable = getSlow(exec, codeCache, owner, inStrictContext, evalSource, scope, exceptionValue);
-
- return evalExecutable;
- }
-