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

Unified Diff: client/dom/generated/src/interface/JavaScriptCallFrame.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/interface/JavaScriptCallFrame.dart
diff --git a/client/dom/generated/src/interface/JavaScriptCallFrame.dart b/client/dom/generated/src/interface/JavaScriptCallFrame.dart
index 7aca199f23d1900bf5ecc4c145e742d3eeb0f95f..64716838659b778853138f272d385efe344fadff 100644
--- a/client/dom/generated/src/interface/JavaScriptCallFrame.dart
+++ b/client/dom/generated/src/interface/JavaScriptCallFrame.dart
@@ -16,21 +16,21 @@ interface JavaScriptCallFrame {
static final int WITH_SCOPE = 2;
- JavaScriptCallFrame get caller();
+ final JavaScriptCallFrame caller;
- int get column();
+ final int column;
- String get functionName();
+ final String functionName;
- int get line();
+ final int line;
- List get scopeChain();
+ final List scopeChain;
- int get sourceID();
+ final int sourceID;
- Object get thisObject();
+ final Object thisObject;
- String get type();
+ final String type;
void evaluate(String script);

Powered by Google App Engine
This is Rietveld 408576698