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

Unified Diff: client/dom/generated/src/frog/ScriptProfileNode.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/ScriptProfileNode.dart
diff --git a/client/dom/generated/src/frog/ScriptProfileNode.dart b/client/dom/generated/src/frog/ScriptProfileNode.dart
index 688cd75074709939868c2189e730570d59d89274..43564d20e597e401d03e8b958cc57e9ed84d60ed 100644
--- a/client/dom/generated/src/frog/ScriptProfileNode.dart
+++ b/client/dom/generated/src/frog/ScriptProfileNode.dart
@@ -1,21 +1,21 @@
class _ScriptProfileNodeJs extends _DOMTypeJs implements ScriptProfileNode native "*ScriptProfileNode" {
- int get callUID() native "return this.callUID;";
+ final int callUID;
- List get children() native "return this.children;";
+ final List children;
- String get functionName() native "return this.functionName;";
+ final String functionName;
- int get lineNumber() native "return this.lineNumber;";
+ final int lineNumber;
- int get numberOfCalls() native "return this.numberOfCalls;";
+ final int numberOfCalls;
- num get selfTime() native "return this.selfTime;";
+ final num selfTime;
- num get totalTime() native "return this.totalTime;";
+ final num totalTime;
- String get url() native "return this.url;";
+ final String url;
- bool get visible() native "return this.visible;";
+ final bool visible;
}

Powered by Google App Engine
This is Rietveld 408576698