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

Side by Side Diff: pkg/analyzer/lib/src/generated/java_engine.dart

Issue 1513643009: Clean up package imports and library names (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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
OLDNEW
1 library java.engine; 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
2 4
3 import 'interner.dart'; 5 library analyzer.src.generated.java_engine;
4 import 'java_core.dart'; 6
7 import 'package:analyzer/src/generated/interner.dart';
8 import 'package:analyzer/src/generated/java_core.dart';
5 9
6 /** 10 /**
7 * A predicate is a one-argument function that returns a boolean value. 11 * A predicate is a one-argument function that returns a boolean value.
8 */ 12 */
9 typedef bool Predicate<E>(E argument); 13 typedef bool Predicate<E>(E argument);
10 14
11 /** 15 /**
12 * Instances of the class `AnalysisException` represent an exception that 16 * Instances of the class `AnalysisException` represent an exception that
13 * occurred during the analysis of one or more sources. 17 * occurred during the analysis of one or more sources.
14 */ 18 */
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 } 369 }
366 } 370 }
367 371
368 class UUID { 372 class UUID {
369 static int __nextId = 0; 373 static int __nextId = 0;
370 final String id; 374 final String id;
371 UUID(this.id); 375 UUID(this.id);
372 String toString() => id; 376 String toString() => id;
373 static UUID randomUUID() => new UUID((__nextId).toString()); 377 static UUID randomUUID() => new UUID((__nextId).toString());
374 } 378 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/java_core.dart ('k') | pkg/analyzer/lib/src/generated/java_engine_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698