| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName JavaScriptCallFrame | |
| 10 interface JavaScriptCallFrame { | |
| 11 | |
| 12 static final int CATCH_SCOPE = 4; | |
| 13 | |
| 14 static final int CLOSURE_SCOPE = 3; | |
| 15 | |
| 16 static final int GLOBAL_SCOPE = 0; | |
| 17 | |
| 18 static final int LOCAL_SCOPE = 1; | |
| 19 | |
| 20 static final int WITH_SCOPE = 2; | |
| 21 | |
| 22 /** @domName JavaScriptCallFrame.caller */ | |
| 23 final JavaScriptCallFrame caller; | |
| 24 | |
| 25 /** @domName JavaScriptCallFrame.column */ | |
| 26 final int column; | |
| 27 | |
| 28 /** @domName JavaScriptCallFrame.functionName */ | |
| 29 final String functionName; | |
| 30 | |
| 31 /** @domName JavaScriptCallFrame.line */ | |
| 32 final int line; | |
| 33 | |
| 34 /** @domName JavaScriptCallFrame.scopeChain */ | |
| 35 final List scopeChain; | |
| 36 | |
| 37 /** @domName JavaScriptCallFrame.sourceID */ | |
| 38 final int sourceID; | |
| 39 | |
| 40 /** @domName JavaScriptCallFrame.thisObject */ | |
| 41 final Object thisObject; | |
| 42 | |
| 43 /** @domName JavaScriptCallFrame.type */ | |
| 44 final String type; | |
| 45 | |
| 46 /** @domName JavaScriptCallFrame.evaluate */ | |
| 47 void evaluate(String script); | |
| 48 | |
| 49 /** @domName JavaScriptCallFrame.scopeType */ | |
| 50 int scopeType(int scopeIndex); | |
| 51 } | |
| OLD | NEW |