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

Unified Diff: sky/specs/elements.md

Issue 945533002: Specs: remove vestiges of 'with ChildNode' (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/specs/elements.md
diff --git a/sky/specs/elements.md b/sky/specs/elements.md
index 8e53d45d809ec0f77efdbb7859cc1bceb7e6c448..d11c76d37b3573ff39bef3951ebc98479a0a5f3e 100644
--- a/sky/specs/elements.md
+++ b/sky/specs/elements.md
@@ -197,7 +197,7 @@ class tagname extends AutomaticMetadata {
}
}
-abstract class Element extends ParentNode with Node {
+abstract class Element extends ParentNode {
external Element({Map<String, String> attributes: null,
List children: null,
Module hostModule: null}); // O(M+N), M = number of attributes, N = number of children nodes plus all their descendants
@@ -240,7 +240,7 @@ abstract class Element extends ParentNode with Node {
}
}
-class Text extends Node with Node {
+class Text extends Node {
external Text([String value = '']); // O(1)
external String get value; // O(1)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698