summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/Script.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/Script.js')
-rw-r--r--WebCore/inspector/front-end/Script.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/WebCore/inspector/front-end/Script.js b/WebCore/inspector/front-end/Script.js
index 79004f3..42d6850 100644
--- a/WebCore/inspector/front-end/Script.js
+++ b/WebCore/inspector/front-end/Script.js
@@ -23,7 +23,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorLine, errorMessage)
+WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorLine, errorMessage, worldType)
{
this.sourceID = sourceID;
this.sourceURL = sourceURL;
@@ -31,6 +31,7 @@ WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorL
this.startingLine = startingLine;
this.errorLine = errorLine;
this.errorMessage = errorMessage;
+ this.worldType = worldType;
// if no URL, look for "//@ sourceURL=" decorator
// note that this sourceURL comment decorator is behavior that FireBug added
@@ -46,6 +47,16 @@ WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorL
}
}
+WebInspector.Script.WorldType = {
+ MAIN_WORLD: 0,
+ EXTENSIONS_WORLD: 1
+}
+
+WebInspector.Script.WorldType = {
+ MAIN_WORLD: 0,
+ EXTENSIONS_WORLD: 1
+}
+
WebInspector.Script.prototype = {
get linesCount()
{