Home | History | Annotate | Download | only in src

Lines Matching refs:Script

244   Object* script = JSValue::cast(object)->value();
245 return Script::cast(script)->source();
264 Object* script = JSValue::cast(object)->value();
265 return Script::cast(script)->name();
282 Object* script = JSValue::cast(object)->value();
283 return Script::cast(script)->id();
302 Object* script = JSValue::cast(object)->value();
303 return Script::cast(script)->line_offset();
322 Object* script = JSValue::cast(object)->value();
323 return Script::cast(script)->column_offset();
342 Object* script = JSValue::cast(object)->value();
343 return Script::cast(script)->data();
362 Object* script = JSValue::cast(object)->value();
363 return Script::cast(script)->type();
382 Object* script = JSValue::cast(object)->value();
383 return Smi::FromInt(Script::cast(script)->compilation_type());
404 Handle<Script> script(Script::cast(wrapper->value()), isolate);
405 InitScriptLineEnds(script);
406 ASSERT(script->line_ends()->IsFixedArray());
407 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
432 Object* script = JSValue::cast(object)->value();
433 return Script::cast(script)->context_data();
452 Object* script = JSValue::cast(object)->value();
453 if (!Script::cast(script)->eval_from_shared()->IsUndefined()) {
455 SharedFunctionInfo::cast(Script::cast(script)->eval_from_shared()));
457 if (eval_from_shared->script()->IsScript()) {
458 Handle<Script> eval_from_script(Script::cast(eval_from_shared->script()));
481 Script* raw_script = Script::cast(JSValue::cast(object)->value());
483 Handle<Script> script(raw_script);
485 // If this is not a script compiled through eval there is no eval position.
486 if (script->compilation_type() != Script::COMPILATION_TYPE_EVAL) {
487 return script->GetHeap()->undefined_value();
493 script->eval_from_shared())->code());
495 script->eval_from_instructions_offset()->value()));
514 Object* script = JSValue::cast(object)->value();
516 Script::cast(script)->eval_from_shared()));