Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/completion/CompletionEngineTest.java |
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/completion/CompletionEngineTest.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/completion/CompletionEngineTest.java |
index 3f8938d254542a20ddae3298c92b693b623bd6db..2440e946b56567b902c01fadc8b90420e72794e0 100644 |
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/completion/CompletionEngineTest.java |
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/completion/CompletionEngineTest.java |
@@ -36,6 +36,19 @@ public class CompletionEngineTest extends TestCase { |
private static boolean analysisCleared = false; |
+ // FIXME http://code.google.com/p/dart/issues/detail?id=7483 |
+ public void _testCommentSnippets060() throws Exception { |
+ String source = Joiner.on("\n").join( |
+ "interface MM extends Map{}", |
+ "class Z {", |
+ " MM x;", |
+ " f() {", |
+ " x!1", |
+ " }", |
+ "}"); |
+ test(source, "1+x", "1+x[]"); |
+ } |
+ |
public void testCommentSnippets001() throws Exception { |
test( |
"class X {static final num MAX = 0;num yc,xc;mth() {xc = yc = MA!1X;x!2c.abs();num f = M!3AX;}}", |
@@ -402,18 +415,6 @@ public class CompletionEngineTest extends TestCase { |
test("f(){((int x) => x+4).!1call(1);}", "1-call"); |
} |
- public void testCommentSnippets060() throws Exception { |
- String source = Joiner.on("\n").join( |
- "interface MM extends Map{}", |
- "class Z {", |
- " MM x;", |
- " f() {", |
- " x!1", |
- " }", |
- "}"); |
- test(source, "1+x", "1+x[]"); |
- } |
- |
public void testCommentSnippets061() throws Exception { |
test( |
"class A{m(){!1f(3);!2}}n(){!3f(3);!4}f(x)=>x*3;", |