Home | History | Annotate | Download | only in src

Lines Matching refs:Script

270 // objects between script tags in a browser setting.
301 * Set up the Script function and constructor.
303 %FunctionSetInstanceClassName(Script, 'Script');
304 %SetProperty(Script.prototype, 'constructor', Script,
306 %SetCode(Script, function(x) {
307 // Script objects can only be created by the VM.
323 var script = %MessageGetScript(message);
324 var location = script.locationFromPosition(start_position, true);
333 var script = %MessageGetScript(message);
335 var location = script.locationFromPosition(start_position, true);
448 * start position of the source for the function within the full script source.
458 // Default is the first line in the script. Lines in the script is relative
491 * Get a slice of source code from the script. The boundaries for the slice is
496 * inclusive). Default is the number of lines in the script
532 // Default is the first line in the script. Lines in the script are relative
564 * If sourceURL comment is available and script starts at zero returns sourceURL
565 * comment contents. Otherwise, script name is returned. See
570 * @return {?string} script name if present, value for //# sourceURL or
612 SetUpLockedPrototype(Script,
630 * script : script object for the source
640 * @param {Script} script The Script object for which this is a location
648 function SourceLocation(script, position, line, column, start, end) {
649 this.script = script;
715 return %_CallFunction(this.script.source,
723 $Array("script", "position", "line", "column", "start", "end"),
732 * Class for a source slice. A source slice is a part of a script source with
734 * script : script object for the source
742 * @param {Script} script The Script object for the source slice
749 function SourceSlice(script, from_line, to_line, from_position, to_position) {
750 this.script = script;
763 return %_CallFunction(this.script.source,
770 $Array("script", "from_line", "to_line", "from_position", "to_position"),
778 var script = %MessageGetScript(message);
780 var location = script.locationFromPosition(start_position, false);
824 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
825 return script && script.compilation_type == COMPILATION_TYPE_EVAL;
829 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
830 return FormatEvalOrigin(script);
834 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
835 return script ? script.nameOrSourceURL() : null;
854 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
855 if (script && script.compilation_type == COMPILATION_TYPE_EVAL) {
894 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
895 return script ? script.name : null;
902 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
904 if (script) {
905 location = script.locationFromPosition(
915 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
917 if (script) {
918 location = script.locationFromPosition(
925 var script = %FunctionGetScript(GET_PRIVATE(this, CallSiteFunctionKey));
926 return script ? (script.type == TYPE_NATIVE) : false;
1031 function FormatEvalOrigin(script) {
1032 var sourceURL = script.nameOrSourceURL();
1038 if (script.eval_from_function_name) {
1039 eval_origin += script.eval_from_function_name;
1044 var eval_from_script = script.eval_from_script;
1047 // eval script originated from another eval.
1050 // eval script originated from "real" source.
1054 script.eval_from_script_position, true);