Home | History | Annotate | Download | only in src

Lines Matching refs:Script

96   // Probe the script generation tables. Make sure not to leak handles
112 // We only re-use a cached function for some script source code if the
113 // 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()) return false;
128 if (column_offset != script->column_offset()) return false;
130 if (!name->IsString() || !script->name()->IsString()) return false;
132 if (resource_options.Flags() != script->origin_options().Flags())
136 Handle<String>(String::cast(script->name())));
141 // be cached in the same script generation. Currently the first use
151 // Probe the script generation tables. Make sure not to leak handles
172 // to see if we actually found a cached script. If so, we return a
179 // If the script was found in a later generation, we promote it to