Home | History | Annotate | Download | only in debug

Lines Matching defs:source

2 // Use of this source code is governed by a BSD-style license that can be
927 * Returns the source code for the function.
928 * @return {string or undefined} The source code for the function. If the
931 FunctionMirror.prototype.source = function() {
932 // Return source if function is resolved. Otherwise just fall through to
961 * Returns the script source position for the function. Only makes sense
975 * Returns the script source location object for the function. Only makes sense
1032 return this.source();
1171 * Returns the source to the regular expression.
1172 * @return {string or undefined} The source to the regular expression
1174 RegExpMirror.prototype.source = function() {
1175 return this.value_.source;
1226 return "/" + this.source() + "/";
1676 * 6: Source position
2022 FrameMirror.prototype.evaluate = function(source, disable_break,
2027 source,
2113 // Format source and position.
2135 result += '[no source]';
2344 * Mirror object for script source.
2373 ScriptMirror.prototype.source = function() {
2374 return this.script_.source;
2378 ScriptMirror.prototype.setSource = function(source) {
2379 if (!IS_STRING(source)) throw %make_error(kDebugger, "Source is not a string");
2380 %DebugSetScriptSource(this.script_, source);
2485 * includeSource: include ths full source of scripts
2714 // Script is represented by id, name and source attributes.
2726 content.source = mirror.source();
2728 var sourceStart = mirror.source().substring(0, 80);
2731 content.sourceLength = mirror.source().length;
2804 content.source = mirror.source();