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

Side by Side Diff: client/html/generated/html/frog/JavaScriptCallFrame.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _JavaScriptCallFrameImpl implements JavaScriptCallFrame native "*JavaScrip tCallFrame" {
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 _JavaScriptCallFrameImpl 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698