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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java

Issue 10916145: Parser changes to support new export directive (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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: compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
===================================================================
--- compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java (revision 11954)
+++ compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java (working copy)
@@ -953,7 +953,7 @@
assertErrors(errors, errEx(TypeErrorCode.NO_SUCH_TYPE, 7, 3, 10));
}
- public void test_newLibrarySyntax_export() throws Exception {
+ public void xtest_newLibrarySyntax_export() throws Exception {
appSource.setContent(
"A.dart",
makeCode(
@@ -968,7 +968,8 @@
makeCode(
"// filler filler filler filler filler filler filler filler filler filler filler",
"library test.B;",
- "import 'A.dart' as libA hide TypeAC & export;",
+ "import 'A.dart' as libA hide TypeAC;",
+ "export 'A.dart';",
"class TypeBA {}",
"class TypeBB {}",
"class TypeBC {}",

Powered by Google App Engine
This is Rietveld 408576698