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

Side by Side Diff: pkg/compiler/lib/src/ssa/locals_handler.dart

Issue 2606253002: Move dart_types to elements/resolution_types (Closed)
Patch Set: Created 3 years, 11 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/ssa/kernel_impact.dart ('k') | pkg/compiler/lib/src/ssa/nodes.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 import '../closure.dart'; 5 import '../closure.dart';
6 import '../common.dart'; 6 import '../common.dart';
7 import '../compiler.dart' show Compiler; 7 import '../compiler.dart' show Compiler;
8 import '../dart_types.dart'; 8 import '../elements/resolution_types.dart';
9 import '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../io/source_information.dart'; 10 import '../io/source_information.dart';
11 import '../js/js.dart' as js; 11 import '../js/js.dart' as js;
12 import '../js_backend/js_backend.dart'; 12 import '../js_backend/js_backend.dart';
13 import '../native/native.dart' as native; 13 import '../native/native.dart' as native;
14 import '../tree/tree.dart' as ast; 14 import '../tree/tree.dart' as ast;
15 import '../types/types.dart'; 15 import '../types/types.dart';
16 import '../world.dart' show ClosedWorld; 16 import '../world.dart' show ClosedWorld;
17 17
18 import 'graph_builder.dart'; 18 import 'graph_builder.dart';
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 final ExecutableElement executableContext; 663 final ExecutableElement executableContext;
664 664
665 // Avoid slow Object.hashCode. 665 // Avoid slow Object.hashCode.
666 final int hashCode = _nextHashCode = (_nextHashCode + 1).toUnsigned(30); 666 final int hashCode = _nextHashCode = (_nextHashCode + 1).toUnsigned(30);
667 static int _nextHashCode = 0; 667 static int _nextHashCode = 0;
668 668
669 SyntheticLocal(this.name, this.executableContext); 669 SyntheticLocal(this.name, this.executableContext);
670 670
671 toString() => 'SyntheticLocal($name)'; 671 toString() => 'SyntheticLocal($name)';
672 } 672 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/kernel_impact.dart ('k') | pkg/compiler/lib/src/ssa/nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698