Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: client/dom/generated/src/frog/JavaScriptCallFrame.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class JavaScriptCallFrame native "*JavaScriptCallFrame" { 2 class JavaScriptCallFrame native "*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 JavaScriptCallFrame caller; 14 JavaScriptCallFrame get caller() native "return this.caller;";
15 15
16 int column; 16 int get column() native "return this.column;";
17 17
18 String functionName; 18 String get functionName() native "return this.functionName;";
19 19
20 int line; 20 int get line() native "return this.line;";
21 21
22 List scopeChain; 22 List get scopeChain() native "return this.scopeChain;";
23 23
24 int sourceID; 24 int get sourceID() native "return this.sourceID;";
25 25
26 String type; 26 String get type() native "return this.type;";
27 27
28 void evaluate(String script) native; 28 void evaluate(String script) native;
29 29
30 int scopeType(int scopeIndex) native; 30 int scopeType(int scopeIndex) native;
31 31
32 var dartObjectLocalStorage; 32 var dartObjectLocalStorage;
33 33
34 String get typeName() native; 34 String get typeName() native;
35 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/JavaScriptAudioNode.dart ('k') | client/dom/generated/src/frog/KeyboardEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698