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

Unified Diff: dart/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonHintCodeTest.java

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonHintCodeTest.java
===================================================================
--- dart/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonHintCodeTest.java (revision 29808)
+++ dart/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonHintCodeTest.java (working copy)
@@ -259,7 +259,6 @@
public void test_proxy_annotation_prefixed() throws Exception {
Source source = addSource(createSource(//
"library L;",
- "import 'meta.dart';",
"@proxy",
"class A {}",
"f(var a) {",
@@ -271,10 +270,6 @@
" a++;",
" ++a;",
"}"));
- addSource("/meta.dart", createSource(//
- "library meta;",
- "const proxy = const _Proxy();",
- "class _Proxy { const _Proxy(); }"));
resolve(source);
assertNoErrors(source);
}
@@ -282,7 +277,6 @@
public void test_proxy_annotation_prefixed2() throws Exception {
Source source = addSource(createSource(//
"library L;",
- "import 'meta.dart';",
"@proxy",
"class A {}",
"class B {",
@@ -296,10 +290,6 @@
" ++a;",
" }",
"}"));
- addSource("/meta.dart", createSource(//
- "library meta;",
- "const proxy = const _Proxy();",
- "class _Proxy { const _Proxy(); }"));
resolve(source);
assertNoErrors(source);
}
@@ -307,7 +297,6 @@
public void test_proxy_annotation_prefixed3() throws Exception {
Source source = addSource(createSource(//
"library L;",
- "import 'meta.dart';",
"class B {",
" f(var a) {",
" a = new A();",
@@ -321,10 +310,6 @@
"}",
"@proxy",
"class A {}"));
- addSource("/meta.dart", createSource(//
- "library meta;",
- "const proxy = const _Proxy();",
- "class _Proxy { const _Proxy(); }"));
resolve(source);
assertNoErrors(source);
}

Powered by Google App Engine
This is Rietveld 408576698