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

Side by Side Diff: pkg/dart2js_incremental/lib/dart2js_incremental.dart

Issue 1803303002: Move all flags to CompilerOptions (first step to stop passing the compiler to (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 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 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_incremental; 5 library dart2js_incremental;
6 6
7 import 'dart:async' show 7 import 'dart:async' show
8 EventSink, 8 EventSink,
9 Future; 9 Future;
10 10
11 import 'dart:developer' show 11 import 'dart:developer' show
12 UserTag; 12 UserTag;
13 13
14 import 'package:compiler/src/apiimpl.dart' show 14 import 'package:compiler/src/apiimpl.dart' show
15 CompilerImpl; 15 CompilerImpl;
16 16
17 import 'package:compiler/compiler_new.dart' show 17 import 'package:compiler/compiler_new.dart' show
18 CompilerDiagnostics, 18 CompilerDiagnostics,
19 CompilerInput, 19 CompilerInput,
20 CompilerOutput, 20 CompilerOutput,
21 CompilerOptions,
21 Diagnostic; 22 Diagnostic;
22 23
23 import 'package:compiler/src/null_compiler_output.dart' show 24 import 'package:compiler/src/null_compiler_output.dart' show
24 NullCompilerOutput; 25 NullCompilerOutput;
25 26
26 import 'package:compiler/src/js_backend/js_backend.dart' show 27 import 'package:compiler/src/js_backend/js_backend.dart' show
27 JavaScriptBackend; 28 JavaScriptBackend;
28 29
29 import 'package:compiler/src/js_emitter/full_emitter/emitter.dart' 30 import 'package:compiler/src/js_emitter/full_emitter/emitter.dart'
30 as full show Emitter; 31 as full show Emitter;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 } 162 }
162 } 163 }
163 164
164 class IncrementalCompilationFailed { 165 class IncrementalCompilationFailed {
165 final String reason; 166 final String reason;
166 167
167 const IncrementalCompilationFailed(this.reason); 168 const IncrementalCompilationFailed(this.reason);
168 169
169 String toString() => "Can't incrementally compile program.\n\n$reason"; 170 String toString() => "Can't incrementally compile program.\n\n$reason";
170 } 171 }
OLDNEW
« no previous file with comments | « pkg/dart2js_incremental/lib/caching_compiler.dart ('k') | pkg/dart2js_incremental/lib/library_updater.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698