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

Unified Diff: frog/tests/leg/src/ResolverTest.dart

Issue 9284022: Operators. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' 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
« no previous file with comments | « frog/leg/ssa/builder.dart ('k') | frog/tests/leg_only/src/CompoundOperatorIndexTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/tests/leg/src/ResolverTest.dart
===================================================================
--- frog/tests/leg/src/ResolverTest.dart (revision 3645)
+++ frog/tests/leg/src/ResolverTest.dart (working copy)
@@ -517,7 +517,7 @@
A.a() : this.b(0);
A.b(int i);
}""";
- resolveConstructor(script, "A a = new A.a();", "A", "A.a", 1,
+ resolveConstructor(script, "A a = new A.a();", "A", @"A$a", 1,
[], []);
script = """class A {
@@ -525,7 +525,7 @@
A.a() : i = 42, this(0);
A(int i);
}""";
- resolveConstructor(script, "A a = new A.a();", "A", "A.a", 2,
+ resolveConstructor(script, "A a = new A.a();", "A", @"A$a", 2,
[], [MessageKind.REDIRECTING_CTOR_HAS_INITIALIZER]);
script = """class A {
« no previous file with comments | « frog/leg/ssa/builder.dart ('k') | frog/tests/leg_only/src/CompoundOperatorIndexTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698