Lines Matching defs:script
92 // Probe the script generation tables. Make sure not to leak handles
110 // We only re-use a cached function for some script source code if the
111 // script originates from the same place. This is to avoid issues
119 Handle<Script> script =
120 Handle<Script>(Script::cast(function_info->script()), isolate());
121 // If the script name isn't set, the boilerplate script should have
124 return script->name()->IsUndefined();
127 if (line_offset != script->line_offset()->value()) return false;
128 if (column_offset != script->column_offset()->value()) return false;
130 if (!name->IsString() || !script->name()->IsString()) return false;
132 if (is_shared_cross_origin != script->is_shared_cross_origin()) return false;
135 Handle<String>(String::cast(script->name())));
140 // be cached in the same script generation. Currently the first use
153 // Probe the script generation tables. Make sure not to leak handles
191 // to see if we actually found a cached script. If so, we return a
201 // If the script was found in a later generation, we promote it to