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

Side by Side Diff: editor/util/plugins/com.google.dart.java2dart/resources/java_engine.dart

Issue 348673002: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library java.engine; 1 library java.engine;
2 2
3 import 'interner.dart';
3 import 'java_core.dart'; 4 import 'java_core.dart';
4 5
5 /** 6 /**
6 * A predicate is a one-argument function that returns a boolean value. 7 * A predicate is a one-argument function that returns a boolean value.
7 */ 8 */
8 typedef bool Predicate<E>(E argument); 9 typedef bool Predicate<E>(E argument);
9 10
10 class StringUtilities { 11 class StringUtilities {
11 static const String EMPTY = ''; 12 static const String EMPTY = '';
12 static const List<String> EMPTY_ARRAY = const <String>[]; 13 static const List<String> EMPTY_ARRAY = const <String>[];
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 if (cause != null) { 325 if (cause != null) {
325 buffer.write('Caused by '); 326 buffer.write('Caused by ');
326 cause._writeOn(buffer); 327 cause._writeOn(buffer);
327 } 328 }
328 } else { 329 } else {
329 buffer.writeln(exception.toString()); 330 buffer.writeln(exception.toString());
330 buffer.writeln(stackTrace.toString()); 331 buffer.writeln(stackTrace.toString());
331 } 332 }
332 } 333 }
333 } 334 }
OLDNEW
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698