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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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;
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
4 JavaScriptCallFrame caller; 14 JavaScriptCallFrame caller;
5 15
6 int column; 16 int column;
7 17
8 String functionName; 18 String functionName;
9 19
10 int line; 20 int line;
11 21
12 List scopeChain; 22 List scopeChain;
13 23
14 int sourceID; 24 int sourceID;
15 25
16 String type; 26 String type;
17 27
18 void evaluate(String script) native; 28 void evaluate(String script) native;
19 29
20 int scopeType(int scopeIndex) native; 30 int scopeType(int scopeIndex) native;
21 31
22 var dartObjectLocalStorage; 32 var dartObjectLocalStorage;
23 33
24 String get typeName() native; 34 String get typeName() native;
25 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Int8Array.dart ('k') | client/dom/generated/src/frog/MediaError.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698