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

Unified Diff: dart/compiler/javatests/com/google/dart/compiler/CodeCompletionParseTest.java

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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: dart/compiler/javatests/com/google/dart/compiler/CodeCompletionParseTest.java
diff --git a/dart/compiler/javatests/com/google/dart/compiler/CodeCompletionParseTest.java b/dart/compiler/javatests/com/google/dart/compiler/CodeCompletionParseTest.java
index 6776675eb3a24bbec8b5e388dc41e585a8a9e8d3..33f58d710ed9214168b40ade6cee15eac139b21d 100644
--- a/dart/compiler/javatests/com/google/dart/compiler/CodeCompletionParseTest.java
+++ b/dart/compiler/javatests/com/google/dart/compiler/CodeCompletionParseTest.java
@@ -13,7 +13,7 @@ import com.google.dart.compiler.ast.LibraryUnit;
public class CodeCompletionParseTest extends CompilerTestCase {
public void test1() throws Exception {
- AnalyzeLibraryResult result = analyzeLibrary(makeCode(
+ AnalyzeLibraryResult result = analyzeLibrary("foo", makeCode(
"class CellLocation {",
" int _field1;",
" String _field2;",
@@ -29,7 +29,7 @@ public class CodeCompletionParseTest extends CompilerTestCase {
}
public void test2() throws Exception {
- AnalyzeLibraryResult result = analyzeLibrary(makeCode(
+ AnalyzeLibraryResult result = analyzeLibrary("foo", makeCode(
"doFoo() {",
" new ", // cursor
"}"));
@@ -38,7 +38,7 @@ public class CodeCompletionParseTest extends CompilerTestCase {
}
public void test3() throws Exception {
- AnalyzeLibraryResult result = analyzeLibrary(makeCode(
+ AnalyzeLibraryResult result = analyzeLibrary("foo", makeCode(
"class Foo {",
" static final Bar b = const ", // cursor
"}",
@@ -51,7 +51,7 @@ public class CodeCompletionParseTest extends CompilerTestCase {
}
public void test4() throws Exception {
- AnalyzeLibraryResult result = analyzeLibrary(makeCode(
+ AnalyzeLibraryResult result = analyzeLibrary("foo", makeCode(
"foo() {",
" int SEED;",
" for (int i = 0; i < S)", // cursor before )
@@ -61,7 +61,7 @@ public class CodeCompletionParseTest extends CompilerTestCase {
}
public void test5() throws Exception {
- AnalyzeLibraryResult result = analyzeLibrary(makeCode(
+ AnalyzeLibraryResult result = analyzeLibrary("foo", makeCode(
"ckass Sunflower {",
" static final int SEED_RADIUS = 2;",
" static final int SCALE_FACTOR = 4;",
@@ -73,7 +73,7 @@ public class CodeCompletionParseTest extends CompilerTestCase {
}
public void test6() throws Exception {
- AnalyzeLibraryResult result = analyzeLibrary(makeCode(
+ AnalyzeLibraryResult result = analyzeLibrary("foo", makeCode(
"class Sunflower {",
" static final int SEED_RADIUS = 2;",
" static final int SCALE_FACTOR = 4;",

Powered by Google App Engine
This is Rietveld 408576698