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