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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart

Issue 243263004: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart
diff --git a/editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart b/editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart
index a075ca859f636de9da7e15de2aca1514a8e08a2b..3ee1055d1f471bf5c003adfe16a9e5dd9c14b663 100644
--- a/editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart
+++ b/editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart
@@ -220,6 +220,9 @@ class StringUtils {
}
return sb.toString();
}
+ static String join(Iterable iter, [String separator = " "]) {
+ return iter.join(separator);
+ }
}
class Math {
@@ -257,7 +260,7 @@ class IllegalStateException extends JavaException {
}
class UnsupportedOperationException extends JavaException {
- String toString() => "UnsupportedOperationException";
+ UnsupportedOperationException([message = ""]) : super(message);
}
class NoSuchElementException extends JavaException {

Powered by Google App Engine
This is Rietveld 408576698