Home | History | Annotate | Download | only in src

Lines Matching refs:Script

171   Object* script = JSValue::cast(object)->value();
172 return Script::cast(script)->source();
189 Object* script = JSValue::cast(object)->value();
190 return Script::cast(script)->name();
207 Object* script = JSValue::cast(object)->value();
208 return Script::cast(script)->id();
225 Object* script = JSValue::cast(object)->value();
226 return Script::cast(script)->line_offset();
243 Object* script = JSValue::cast(object)->value();
244 return Script::cast(script)->column_offset();
261 Object* script = JSValue::cast(object)->value();
262 return Script::cast(script)->data();
279 Object* script = JSValue::cast(object)->value();
280 return Script::cast(script)->type();
297 Object* script = JSValue::cast(object)->value();
298 return Script::cast(script)->compilation_type();
316 Handle<Script> script(Script::cast(JSValue::cast(object)->value()));
317 InitScriptLineEnds(script);
318 ASSERT(script->line_ends()->IsFixedArray());
319 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
339 Object* script = JSValue::cast(object)->value();
340 return Script::cast(script)->context_data();
357 Object* script = JSValue::cast(object)->value();
358 if (!Script::cast(script)->eval_from_shared()->IsUndefined()) {
360 SharedFunctionInfo::cast(Script::cast(script)->eval_from_shared()));
362 if (eval_from_shared->script()->IsScript()) {
363 Handle<Script> eval_from_script(Script::cast(eval_from_shared->script()));
385 Handle<Script> script(Script::cast(JSValue::cast(object)->value()));
387 // If this is not a script compiled through eval there is no eval position.
388 int compilation_type = Smi::cast(script->compilation_type())->value();
389 if (compilation_type != Script::COMPILATION_TYPE_EVAL) {
396 script->eval_from_shared())->code());
398 script->eval_from_instructions_offset()->value()));
415 Object* script = JSValue::cast(object)->value();
417 Script::cast(script)->eval_from_shared()));