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

Side by Side Diff: pkg/compiler/lib/src/js_emitter/js_emitter.dart

Issue 1383483006: Extract DiagnosticReporter implementation from Compiler. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fixes after rebase. Created 5 years, 2 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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.js_emitter; 5 library dart2js.js_emitter;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 8
9 import '../common/names.dart' show 9 import '../common/names.dart' show
10 Identifiers; 10 Identifiers;
11 11
12 import '../constants/values.dart'; 12 import '../constants/values.dart';
13 13
14 import '../closure.dart' show 14 import '../closure.dart' show
15 ClosureClassElement, 15 ClosureClassElement,
16 ClosureClassMap, 16 ClosureClassMap,
17 ClosureFieldElement, 17 ClosureFieldElement,
18 CapturedVariable; 18 CapturedVariable;
19 19
20 import '../dart_types.dart' show 20 import '../dart_types.dart' show
21 TypedefType; 21 TypedefType;
22 22
23 import '../diagnostics/diagnostic_listener.dart' show
24 DiagnosticReporter;
25
23 import '../diagnostics/spannable.dart' show 26 import '../diagnostics/spannable.dart' show
24 NO_LOCATION_SPANNABLE; 27 NO_LOCATION_SPANNABLE;
25 28
26 import '../elements/elements.dart' show 29 import '../elements/elements.dart' show
27 ConstructorBodyElement, 30 ConstructorBodyElement,
28 ElementKind, 31 ElementKind,
29 FieldElement, 32 FieldElement,
30 ParameterElement, 33 ParameterElement,
31 TypeVariableElement, 34 TypeVariableElement,
32 MethodElement, 35 MethodElement,
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 part 'code_emitter_task.dart'; 81 part 'code_emitter_task.dart';
79 part 'helpers.dart'; 82 part 'helpers.dart';
80 part 'interceptor_stub_generator.dart'; 83 part 'interceptor_stub_generator.dart';
81 part 'main_call_stub_generator.dart'; 84 part 'main_call_stub_generator.dart';
82 part 'metadata_collector.dart'; 85 part 'metadata_collector.dart';
83 part 'native_emitter.dart'; 86 part 'native_emitter.dart';
84 part 'native_generator.dart'; 87 part 'native_generator.dart';
85 part 'parameter_stub_generator.dart'; 88 part 'parameter_stub_generator.dart';
86 part 'runtime_type_generator.dart'; 89 part 'runtime_type_generator.dart';
87 part 'type_test_registry.dart'; 90 part 'type_test_registry.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart ('k') | pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698