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

Unified Diff: editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/PropertySemanticProcessorTest.java

Issue 192303002: Support for @DartName and @DartOptional annotations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/PropertySemanticProcessorTest.java
diff --git a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/PropertySemanticProcessorTest.java b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/PropertySemanticProcessorTest.java
index c272984708daa83ee9e077819e7e39a44a0c6a6a..f773df5c46d1796923656bae71b0bb29ed2f4ed3 100644
--- a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/PropertySemanticProcessorTest.java
+++ b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/PropertySemanticProcessorTest.java
@@ -281,7 +281,7 @@ public class PropertySemanticProcessorTest extends SemanticProcessorTest {
" }",
"}");
runProcessor();
- context.ensureUniqueClassMemberNames(unit);
+ context.ensureUniqueClassMemberNames();
assertFormattedSource(//
"class Test {",
" final int foo;",
@@ -511,7 +511,7 @@ public class PropertySemanticProcessorTest extends SemanticProcessorTest {
" }",
"}");
runProcessor();
- context.ensureUniqueClassMemberNames(unit);
+ context.ensureUniqueClassMemberNames();
assertFormattedSource(
"class Test {",
" int _foo = 0;",

Powered by Google App Engine
This is Rietveld 408576698