Home | History | Annotate | Download | only in src

Lines Matching refs:script

762       Handle<Script> script(Script::cast(fun->shared()->script()));
765 int script_line_offset = script->line_offset()->value();
767 int line_number = GetScriptLineNumber(script, position);
771 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
776 // For the case where the code is on the same line as the script
778 column_offset += script->column_offset()->value();
794 Handle<Object> script_name(script->name(), this);
801 Handle<Object> result = GetScriptNameOrSourceURL(script);
820 script->compilation_type() == Script::COMPILATION_TYPE_EVAL ?
1179 Object* script = reinterpret_cast<Object*>(handler->message_script_);
1181 ASSERT(script->IsScript() || script->IsTheHole());
1183 thread_local_top()->pending_message_script_ = script;
1226 *target = MessageLocation(Handle<Script>(heap_.empty_script()), -1, -1);
1231 Object* script = fun->shared()->script();
1232 if (script->IsScript() &&
1233 !(Script::cast(script)->source()->IsUndefined())) {
1236 Handle<Script> casted_script(Script::cast(script));
1376 thread_local_top()->pending_message_script_ = *location->script();
1395 } else if (location != NULL && !location->script().is_null()) {
1397 script for the location.
1401 int line_number = GetScriptLineNumberSafe(location->script(),
1407 *String::cast(location->script()->name())->ToCString(),
1412 *String::cast(location->script()->name())->ToCString(),
1495 Handle<Script> script(
1496 Script::cast(thread_local_top_.pending_message_script_));
1499 MessageLocation location(script, start_pos, end_pos);
1519 Handle<Script> script(
1520 Script::cast(thread_local_top_.pending_message_script_));
1523 return MessageLocation(script, start_pos, end_pos);