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

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

Issue 10069006: Fix flaxy test issue for analysis parser found in r6414 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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
« no previous file with comments | « compiler/java/com/google/dart/compiler/parser/DartParser.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 a6c1670e4efbc5bf2982cecd0329ef7abffd5127..65de5481e75d51b72549aec51f6e60c1b64b2720 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
@@ -1,11 +1,11 @@
/*
* Copyright (c) 2012, the Dart project authors.
- *
+ *
* Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
- *
+ *
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
@@ -199,10 +199,9 @@ public class CompletionEngineTest extends TestCase {
test("t3() {var x=new List!1}", "1+List");
}
- // TODO(zundel): investigate intermittent parse error
-// public void testCommentSnippets037() throws Exception {
-// test("t3() {var x=new List.!1}", "1+from");
-// }
+ public void testCommentSnippets037() throws Exception {
+ test("t3() {var x=new List.!1}", "1+from");
+ }
public void testCommentSnippets038() throws Exception {
test("int xa; String s = '$x!1'", "1+xa");
@@ -337,7 +336,7 @@ public class CompletionEngineTest extends TestCase {
* character prefix. The first character of the prefix corresponds to an X in the
* <code>originalSource</code>. The second character is either a '+' or a '-' indicating whether
* the string is a positive or negative result.
- *
+ *
* @param originalSource The source for a completion test that contains completion points
* @param validationStrings The positive and negative predictions
*/
« no previous file with comments | « compiler/java/com/google/dart/compiler/parser/DartParser.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698