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

Unified Diff: client/dom/generated/src/frog/DocumentType.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/DocumentType.dart
diff --git a/client/dom/generated/src/frog/DocumentType.dart b/client/dom/generated/src/frog/DocumentType.dart
index 296d43f77f54b7a133a50da77edfd9af0615f711..d0fbb99b3ae1edbdd675362bbc77dbc620643896 100644
--- a/client/dom/generated/src/frog/DocumentType.dart
+++ b/client/dom/generated/src/frog/DocumentType.dart
@@ -1,15 +1,15 @@
class _DocumentTypeJs extends _NodeJs implements DocumentType native "*DocumentType" {
- _NamedNodeMapJs get entities() native "return this.entities;";
+ final _NamedNodeMapJs entities;
- String get internalSubset() native "return this.internalSubset;";
+ final String internalSubset;
- String get name() native "return this.name;";
+ final String name;
- _NamedNodeMapJs get notations() native "return this.notations;";
+ final _NamedNodeMapJs notations;
- String get publicId() native "return this.publicId;";
+ final String publicId;
- String get systemId() native "return this.systemId;";
+ final String systemId;
}

Powered by Google App Engine
This is Rietveld 408576698