| commit | 7a891ed7485df8847243141609d1ef997d9f53b8 | [log] [tgz] |
|---|---|---|
| author | ajohnsen@google.com <ajohnsen@google.com> | Fri Apr 12 09:34:52 2013 +0000 |
| committer | ajohnsen@google.com <ajohnsen@google.com> | Fri Apr 12 09:34:52 2013 +0000 |
| tree | 73e894f75268430271edfb311fe05c49c05b2f41 | |
| parent | 3b40e0f17fb36f0c614bb4cfbc9079717600499a [diff] |
Remove Collection, Collections and clean up List/Set/Queue implementations of retain/remove. BUG= Review URL: https://codereview.chromium.org//14173003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/yaml@21338 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/pkgs/yaml/lib/parser.dart b/pkgs/yaml/lib/parser.dart index c84f374..9621b13 100644 --- a/pkgs/yaml/lib/parser.dart +++ b/pkgs/yaml/lib/parser.dart
@@ -1119,7 +1119,7 @@ }); // 138 - Collection<_Node> ns_s_flowSeqEntries(int indent, int ctx) { + Iterable<_Node> ns_s_flowSeqEntries(int indent, int ctx) { var first = ns_flowSeqEntry(indent, ctx); if (!truth(first)) return new Queue<_Node>(); zeroOrOne(() => s_separate(indent, ctx));