Lines Matching refs:script
121 // Probe the script generation tables. Make sure not to leak handles
139 // We only re-use a cached function for some script source code if the
140 // script originates from the same place. This is to avoid issues
147 Handle<Script> script =
148 Handle<Script>(Script::cast(function_info->script()), isolate());
149 // If the script name isn't set, the boilerplate script should have
152 return script->name()->IsUndefined();
155 if (line_offset != script->line_offset()->value()) return false;
156 if (column_offset != script->column_offset()->value()) return false;
158 if (!name->IsString() || !script->name()->IsString()) return false;
160 return String::cast(*name)->Equals(String::cast(script->name()));
165 // be cached in the same script generation. Currently the first use
175 // Probe the script generation tables. Make sure not to leak handles
209 // to see if we actually found a cached script. If so, we return a
215 // If the script was found in a later generation, we promote it to