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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java

Issue 10987076: Issue 5447. Wern when concrete class has unimplemented members (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/parser/SyntaxTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
index 2bc7035e715305843a0bd8caa7bb1758950185e3..e90328846330fb6dbdb75b77bed091385f8bac08 100644
--- a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
+++ b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
@@ -59,7 +59,7 @@ public class SyntaxTest extends AbstractParserTest {
"import;"),
ParserErrorCode.EXPECTED_TOKEN, 2, 7);
DartImportDirective dir = (DartImportDirective) unit.getDirectives().get(1);
- System.out.println(dir.toSource());
+ assertEquals("import ;\n", dir.toSource());
}
public void test_getter() {

Powered by Google App Engine
This is Rietveld 408576698