Home | History | Annotate | Download | only in src

Lines Matching defs:script

174   Object* script = JSValue::cast(object)->value();
175 return Script::cast(script)->source();
192 Object* script = JSValue::cast(object)->value();
193 return Script::cast(script)->name();
210 Object* script = JSValue::cast(object)->value();
211 return Script::cast(script)->id();
228 Object* script = JSValue::cast(object)->value();
229 return Script::cast(script)->line_offset();
246 Object* script = JSValue::cast(object)->value();
247 return Script::cast(script)->column_offset();
264 Object* script = JSValue::cast(object)->value();
265 return Script::cast(script)->data();
282 Object* script = JSValue::cast(object)->value();
283 return Script::cast(script)->type();
300 Object* script = JSValue::cast(object)->value();
301 return Script::cast(script)->compilation_type();
321 Handle<Script> script(Script::cast(wrapper->value()), isolate);
322 InitScriptLineEnds(script);
323 ASSERT(script->line_ends()->IsFixedArray());
324 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
347 Object* script = JSValue::cast(object)->value();
348 return Script::cast(script)->context_data();
365 Object* script = JSValue::cast(object)->value();
366 if (!Script::cast(script)->eval_from_shared()->IsUndefined()) {
368 SharedFunctionInfo::cast(Script::cast(script)->eval_from_shared()));
370 if (eval_from_shared->script()->IsScript()) {
371 Handle<Script> eval_from_script(Script::cast(eval_from_shared->script()));
393 Handle<Script> script(Script::cast(JSValue::cast(object)->value()));
395 // If this is not a script compiled through eval there is no eval position.
396 int compilation_type = Smi::cast(script->compilation_type())->value();
397 if (compilation_type != Script::COMPILATION_TYPE_EVAL) {
404 script->eval_from_shared())->code());
406 script->eval_from_instructions_offset()->value()));
423 Object* script = JSValue::cast(object)->value();
425 Script::cast(script)->eval_from_shared()));