| Index: editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/SyntaxTranslatorTest.java
|
| diff --git a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/SyntaxTranslatorTest.java b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/SyntaxTranslatorTest.java
|
| index c4a077334f65d62d078054ecd6251c2dd1aa1355..1a372c856518bebaaf025e21cc375796b224508c 100644
|
| --- a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/SyntaxTranslatorTest.java
|
| +++ b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/SyntaxTranslatorTest.java
|
| @@ -185,6 +185,22 @@ public class SyntaxTranslatorTest extends AbstractSemanticTest {
|
| "}");
|
| }
|
|
|
| + public void test_commentDoc_squaryBrackets() throws Exception {
|
| + parseJava(
|
| + "// filler filler filler filler filler filler filler filler filler filler",
|
| + "/**",
|
| + " * Some [ident] ignored.",
|
| + " */",
|
| + "public class A {",
|
| + "}");
|
| + assertDartSource(//
|
| + "/**",
|
| + " * Some [[ident]] ignored.",
|
| + " */",
|
| + "class A {",
|
| + "}");
|
| + }
|
| +
|
| public void test_constructor() throws Exception {
|
| parseJava(
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
|
|