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

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

Issue 1286143003: Move diagnostic_listener.dart and messages.dart to the diagnostics folder (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/compile_time_constants.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 closureToClassMapper; 5 library closureToClassMapper;
6 6
7 import 'common/tasks.dart' show 7 import 'common/tasks.dart' show
8 CompilerTask; 8 CompilerTask;
9 import 'compiler.dart' show 9 import 'compiler.dart' show
10 Compiler; 10 Compiler;
11 import 'constants/expressions.dart'; 11 import 'constants/expressions.dart';
12 import 'dart_types.dart'; 12 import 'dart_types.dart';
13 import 'diagnostic_listener.dart'; 13 import 'diagnostics/diagnostic_listener.dart';
14 import 'diagnostics/spannable.dart' show 14 import 'diagnostics/spannable.dart' show
15 SpannableAssertionFailure; 15 SpannableAssertionFailure;
16 import 'elements/elements.dart'; 16 import 'elements/elements.dart';
17 import 'elements/modelx.dart' show 17 import 'elements/modelx.dart' show
18 BaseFunctionElementX, 18 BaseFunctionElementX,
19 ClassElementX, 19 ClassElementX,
20 ElementX, 20 ElementX,
21 LocalFunctionElementX; 21 LocalFunctionElementX;
22 import 'elements/visitor.dart' show ElementVisitor; 22 import 'elements/visitor.dart' show ElementVisitor;
23 import 'js_backend/js_backend.dart' show JavaScriptBackend; 23 import 'js_backend/js_backend.dart' show JavaScriptBackend;
(...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 1119
1120 String get name => typeVariable.name; 1120 String get name => typeVariable.name;
1121 1121
1122 int get hashCode => typeVariable.hashCode; 1122 int get hashCode => typeVariable.hashCode;
1123 1123
1124 bool operator ==(other) { 1124 bool operator ==(other) {
1125 if (other is! TypeVariableLocal) return false; 1125 if (other is! TypeVariableLocal) return false;
1126 return typeVariable == other.typeVariable; 1126 return typeVariable == other.typeVariable;
1127 } 1127 }
1128 } 1128 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/compile_time_constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698