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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/ResolverCompilerTest.java

Issue 10447118: Fix for issue 3220 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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
Index: compiler/javatests/com/google/dart/compiler/resolver/ResolverCompilerTest.java
===================================================================
--- compiler/javatests/com/google/dart/compiler/resolver/ResolverCompilerTest.java (revision 8158)
+++ compiler/javatests/com/google/dart/compiler/resolver/ResolverCompilerTest.java (working copy)
@@ -284,7 +284,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
"}",
"class F implements I {",
"}",
@@ -309,7 +309,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
"}",
"class F implements I {",
"}",
@@ -334,7 +334,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
"}",
"class F implements I {",
" F();",
@@ -358,7 +358,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I(int x);",
"}",
"class F implements I {",
@@ -394,7 +394,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I(int x);",
"}",
"class F implements I {",
@@ -433,7 +433,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I.foo(int x);",
"}",
"class F implements I {",
@@ -475,7 +475,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I(int x);",
" I.foo(int x);",
"}",
@@ -540,7 +540,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I(int x);",
" I.foo(int x);",
"}",
@@ -591,7 +591,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I.foo(int x);",
"}",
"class F {",
@@ -634,7 +634,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I.foo(int x);",
"}",
"class F implements I {",
@@ -683,7 +683,7 @@
AnalyzeLibraryResult libraryResult = analyzeLibrary(
"Test.dart",
Joiner.on("\n").join(
- "interface I factory F {",
+ "interface I default F {",
" I.foo(int a, [int b, int c]);",
" I.bar(int a, [int b, int c]);",
" I.baz(int a, [int b]);",

Powered by Google App Engine
This is Rietveld 408576698