2003/05/12 05:10:30
[org.ibex.core.git] / src / org / mozilla / javascript / InterpretedScript.java
1 /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-\r
2  *\r
3  * The contents of this file are subject to the Netscape Public\r
4  * License Version 1.1 (the "License"); you may not use this file\r
5  * except in compliance with the License. You may obtain a copy of\r
6  * the License at http://www.mozilla.org/NPL/\r
7  *\r
8  * Software distributed under the License is distributed on an "AS\r
9  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express oqr\r
10  * implied. See the License for the specific language governing\r
11  * rights and limitations under the License.\r
12  *\r
13  * The Original Code is Rhino code, released\r
14  * May 6, 1999.\r
15  *\r
16  * The Initial Developer of the Original Code is Netscape\r
17  * Communications Corporation.  Portions created by Netscape are\r
18  * Copyright (C) 1997-1999 Netscape Communications Corporation. All\r
19  * Rights Reserved.\r
20  *\r
21  * Contributor(s): \r
22  * Roger Lawrence\r
23  *\r
24  * Alternatively, the contents of this file may be used under the\r
25  * terms of the GNU Public License (the "GPL"), in which case the\r
26  * provisions of the GPL are applicable instead of those above.\r
27  * If you wish to allow use of your version of this file only\r
28  * under the terms of the GPL and not to allow others to use your\r
29  * version of this file under the NPL, indicate your decision by\r
30  * deleting the provisions above and replace them with the notice\r
31  * and other provisions required by the GPL.  If you do not delete\r
32  * the provisions above, a recipient may use your version of this\r
33  * file under either the NPL or the GPL.\r
34  */\r
35 \r
36 package org.mozilla.javascript;\r
37 \r
38 import org.mozilla.javascript.debug.*;\r
39 \r
40 import java.util.*;\r
41 \r
42 public class InterpretedScript extends NativeScript implements DebuggableScript {\r
43 \r
44     InterpretedScript(Context cx,\r
45                       InterpreterData theData, \r
46                       String[] argNames, short argCount)\r
47     {\r
48         itsData = theData;\r
49         this.argNames = argNames;\r
50         this.argCount = argCount;\r
51         functionName = "";\r
52         nestedFunctions = itsData.itsNestedFunctions;\r
53         version = (short)cx.getLanguageVersion();   \r
54     }\r
55     \r
56     public Object exec(Context cx, Scriptable scope)\r
57         throws JavaScriptException\r
58     {\r
59         return call(cx, scope, scope, null);    \r
60     }\r
61 \r
62     public Object call(Context cx, Scriptable scope, \r
63                        Scriptable thisObj, Object[] args)\r
64         throws JavaScriptException\r
65     {\r
66         Function temp = cx.currentFunction;\r
67         cx.currentFunction = this;\r
68         cx.interpreterSourceFile = itsData.itsSourceFile;\r
69         scope = ScriptRuntime.initScript(cx, scope, this, thisObj, \r
70                                          itsData.itsFromEvalCode);\r
71         Object ret = Interpreter.interpret(cx, scope, thisObj, args, this, itsData);    \r
72         cx.currentFunction = temp;\r
73         return ret;\r
74     }\r
75     \r
76     public boolean isFunction() {\r
77         return false;\r
78     }\r
79     \r
80     public Scriptable getScriptable() {\r
81         return this;\r
82     }\r
83     \r
84     public String getSourceName() {\r
85         return itsData.itsSourceFile;\r
86     }\r
87     \r
88     public int[] getLineNumbers() {\r
89         return itsData.itsLineNumberTable.getKeys();\r
90     }\r
91     \r
92     public boolean placeBreakpoint(int line) { // XXX throw exn?\r
93         return itsData.placeBreakpoint(line);\r
94     }\r
95     \r
96     public boolean removeBreakpoint(int line) {\r
97         return itsData.removeBreakpoint(line);\r
98     }\r
99     \r
100     InterpreterData itsData;\r
101 }\r
102 \r