Index: compiler/javatests/com/google/dart/compiler/parser/CommentTest.java |
diff --git a/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java b/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java |
index 67fd64908820bc00ac77f9dba8b8c7ac6814f245..cfefd14362bda35b3636f486c7632bf154122fb0 100644 |
--- a/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java |
+++ b/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java |
@@ -30,6 +30,7 @@ public class CommentTest extends CompilerTestCase { |
super(source, sourceCode, listener); |
} |
+ @Override |
protected DartScanner createScanner(String sourceCode) { |
return new CommentScanner(sourceCode); |
} |
@@ -65,7 +66,7 @@ public class CommentTest extends CompilerTestCase { |
private String source; |
private static String[] EXPECTED001 = {"/*\n * Beginning comment\n */", |
- "// line comment", "// another", "/**/", "//", |
+ "// line comment", "// another", "/**/", "//", "/*/*nested*/*/", |
}; |
private static String[] EXPECTED002 = {"/*\n*\n //comment\nX Y"}; |