OLD | NEW |
1 | 1 |
2 class JavaScriptCallFrameJs extends DOMTypeJs implements JavaScriptCallFrame nat
ive "*JavaScriptCallFrame" { | 2 class _JavaScriptCallFrameJs extends _DOMTypeJs implements JavaScriptCallFrame n
ative "*JavaScriptCallFrame" { |
3 | 3 |
4 static final int CATCH_SCOPE = 4; | 4 static final int CATCH_SCOPE = 4; |
5 | 5 |
6 static final int CLOSURE_SCOPE = 3; | 6 static final int CLOSURE_SCOPE = 3; |
7 | 7 |
8 static final int GLOBAL_SCOPE = 0; | 8 static final int GLOBAL_SCOPE = 0; |
9 | 9 |
10 static final int LOCAL_SCOPE = 1; | 10 static final int LOCAL_SCOPE = 1; |
11 | 11 |
12 static final int WITH_SCOPE = 2; | 12 static final int WITH_SCOPE = 2; |
13 | 13 |
14 JavaScriptCallFrameJs get caller() native "return this.caller;"; | 14 _JavaScriptCallFrameJs get caller() native "return this.caller;"; |
15 | 15 |
16 int get column() native "return this.column;"; | 16 int get column() native "return this.column;"; |
17 | 17 |
18 String get functionName() native "return this.functionName;"; | 18 String get functionName() native "return this.functionName;"; |
19 | 19 |
20 int get line() native "return this.line;"; | 20 int get line() native "return this.line;"; |
21 | 21 |
22 List get scopeChain() native "return this.scopeChain;"; | 22 List get scopeChain() native "return this.scopeChain;"; |
23 | 23 |
24 int get sourceID() native "return this.sourceID;"; | 24 int get sourceID() native "return this.sourceID;"; |
25 | 25 |
26 Object get thisObject() native "return this.thisObject;"; | 26 Object get thisObject() native "return this.thisObject;"; |
27 | 27 |
28 String get type() native "return this.type;"; | 28 String get type() native "return this.type;"; |
29 | 29 |
30 void evaluate(String script) native; | 30 void evaluate(String script) native; |
31 | 31 |
32 int scopeType(int scopeIndex) native; | 32 int scopeType(int scopeIndex) native; |
33 } | 33 } |
OLD | NEW |