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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/dart2jslib.dart

Issue 350693007: Load patches via callback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix caching_compiler Created 6 years, 5 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library dart2js; 5 library dart2js;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection' show Queue; 8 import 'dart:collection' show Queue;
9 9
10 import 'dart:profiler' show 10 import 'dart:profiler' show
11 UserTag; 11 UserTag;
12 12
13 import 'closure.dart' as closureMapping; 13 import 'closure.dart' as closureMapping;
14 import 'dart_backend/dart_backend.dart' as dart_backend; 14 import 'dart_backend/dart_backend.dart' as dart_backend;
15 import 'dart_types.dart'; 15 import 'dart_types.dart';
16 import 'elements/elements.dart'; 16 import 'elements/elements.dart';
17 import 'elements/modelx.dart' 17 import 'elements/modelx.dart'
18 show ErroneousElementX, 18 show ErroneousElementX,
19 ClassElementX, 19 ClassElementX,
20 CompilationUnitElementX, 20 CompilationUnitElementX,
21 LibraryElementX, 21 LibraryElementX,
22 PrefixElementX, 22 PrefixElementX,
23 VoidElementX, 23 VoidElementX,
24 AnalyzableElement, 24 AnalyzableElement,
25 DeferredLoaderGetterElementX; 25 DeferredLoaderGetterElementX;
26 import 'helpers/helpers.dart'; 26 import 'helpers/helpers.dart';
27 import 'js_backend/js_backend.dart' as js_backend; 27 import 'js_backend/js_backend.dart' as js_backend;
28 import 'library_loader.dart'
29 show LibraryLoader,
30 LibraryLoaderTask;
28 import 'native_handler.dart' as native; 31 import 'native_handler.dart' as native;
29 import 'scanner/scannerlib.dart'; 32 import 'scanner/scannerlib.dart';
30 import 'ssa/ssa.dart'; 33 import 'ssa/ssa.dart';
31 import 'tree/tree.dart'; 34 import 'tree/tree.dart';
32 import 'ir/ir_builder.dart' show IrBuilderTask; 35 import 'ir/ir_builder.dart' show IrBuilderTask;
33 import 'universe/universe.dart'; 36 import 'universe/universe.dart';
34 import 'util/util.dart'; 37 import 'util/util.dart';
35 import 'util/characters.dart' show $_; 38 import 'util/characters.dart' show $_;
36 import '../compiler.dart' as api; 39 import '../compiler.dart' as api;
37 import 'patch_parser.dart'; 40 import 'patch_parser.dart';
(...skipping 22 matching lines...) Expand all
60 export 'helpers/helpers.dart'; 63 export 'helpers/helpers.dart';
61 64
62 part 'code_buffer.dart'; 65 part 'code_buffer.dart';
63 part 'compile_time_constants.dart'; 66 part 'compile_time_constants.dart';
64 part 'compiler.dart'; 67 part 'compiler.dart';
65 part 'constants.dart'; 68 part 'constants.dart';
66 part 'constant_system.dart'; 69 part 'constant_system.dart';
67 part 'constant_system_dart.dart'; 70 part 'constant_system_dart.dart';
68 part 'diagnostic_listener.dart'; 71 part 'diagnostic_listener.dart';
69 part 'enqueue.dart'; 72 part 'enqueue.dart';
70 part 'library_loader.dart';
71 part 'resolved_visitor.dart'; 73 part 'resolved_visitor.dart';
72 part 'script.dart'; 74 part 'script.dart';
73 part 'tree_validator.dart'; 75 part 'tree_validator.dart';
74 part 'typechecker.dart'; 76 part 'typechecker.dart';
75 part 'warnings.dart'; 77 part 'warnings.dart';
76 part 'world.dart'; 78 part 'world.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698