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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/completion/CompletionEngineTest.java

Issue 11615031: Tweak to support 'dart.core' as core library name. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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
« no previous file with comments | « compiler/java/com/google/dart/compiler/DartCompiler.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;",
« no previous file with comments | « compiler/java/com/google/dart/compiler/DartCompiler.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698