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

Unified Diff: utils/pub/yaml/model.dart

Issue 11348257: Update YAML to latest language changes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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: utils/pub/yaml/model.dart
diff --git a/utils/pub/yaml/model.dart b/utils/pub/yaml/model.dart
index f709536fa79d0bfc2e536bbc2ee3efbdd66f3345..2ba1416b63145e8cd5936528d286a6858334a4e0 100644
--- a/utils/pub/yaml/model.dart
+++ b/utils/pub/yaml/model.dart
@@ -50,7 +50,7 @@ class _Tag {
}
/** The abstract class for YAML nodes. */
-class _Node {
+abstract class _Node {
/** Every YAML node has a tag that describes its type. */
_Tag tag;
@@ -66,7 +66,7 @@ class _Node {
int get hashCode => _hashCode([tag, anchor]);
- abstract visit(_Visitor v);
+ visit(_Visitor v);
}
/** A sequence node represents an ordered list of nodes. */
« 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