| 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 a297cd80faee93aff5dd055bb1db372fcca0bf12..f08fb708613bb53a0fa3103715776cda7cf8b277 100644
|
| --- a/client/dom/generated/src/frog/DocumentType.dart
|
| +++ b/client/dom/generated/src/frog/DocumentType.dart
|
| @@ -1,15 +1,15 @@
|
|
|
| class DocumentType extends Node native "*DocumentType" {
|
|
|
| - NamedNodeMap entities;
|
| + NamedNodeMap get entities() native "return this.entities;";
|
|
|
| - String internalSubset;
|
| + String get internalSubset() native "return this.internalSubset;";
|
|
|
| - String name;
|
| + String get name() native "return this.name;";
|
|
|
| - NamedNodeMap notations;
|
| + NamedNodeMap get notations() native "return this.notations;";
|
|
|
| - String publicId;
|
| + String get publicId() native "return this.publicId;";
|
|
|
| - String systemId;
|
| + String get systemId() native "return this.systemId;";
|
| }
|
|
|