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

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

Issue 189803004: Translate private Java members to private Dart members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks 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/MathSemanticProcessorTest.java
diff --git a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/MathSemanticProcessorTest.java b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/MathSemanticProcessorTest.java
index 771fe3d6ded983b5b41babe535e9854f3099a814..d245834ba253cde13950a9644d7a1cb50f130e18 100644
--- a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/MathSemanticProcessorTest.java
+++ b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/MathSemanticProcessorTest.java
@@ -22,16 +22,16 @@ public class MathSemanticProcessorTest extends SemanticProcessorTest {
"// filler filler filler filler filler filler filler filler filler filler",
"package test;",
"public class Test {",
- " int asbInt(int p) {",
+ " public int asbInt(int p) {",
" return Math.abs(p);",
" }",
- " int asbLong(long p) {",
+ " public int asbLong(long p) {",
" return Math.abs(p);",
" }",
- " int asbFloat(float p) {",
+ " public int asbFloat(float p) {",
" return Math.abs(p);",
" }",
- " int asbDouble(double p) {",
+ " public int asbDouble(double p) {",
" return Math.abs(p);",
" }",
"}");

Powered by Google App Engine
This is Rietveld 408576698