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

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

Issue 2930293002: Parameterize and move JumpTarget/LabelDefition to elements/jumps.dart (Closed)
Patch Set: Fix Created 3 years, 6 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/loop_handler.dart ('k') | no next file » | 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 import '../closure.dart'; 5 import '../closure.dart';
6 import '../common.dart'; 6 import '../common.dart';
7 import '../common_elements.dart' show CommonElements; 7 import '../common_elements.dart' show CommonElements;
8 import '../compiler.dart' show Compiler; 8 import '../compiler.dart' show Compiler;
9 import '../constants/constant_system.dart'; 9 import '../constants/constant_system.dart';
10 import '../constants/values.dart'; 10 import '../constants/values.dart';
11 import '../elements/elements.dart' show JumpTarget, LabelDefinition;
12 import '../elements/entities.dart'; 11 import '../elements/entities.dart';
12 import '../elements/jumps.dart';
13 import '../elements/types.dart'; 13 import '../elements/types.dart';
14 import '../io/source_information.dart'; 14 import '../io/source_information.dart';
15 import '../js/js.dart' as js; 15 import '../js/js.dart' as js;
16 import '../js_backend/js_backend.dart'; 16 import '../js_backend/js_backend.dart';
17 import '../native/native.dart' as native; 17 import '../native/native.dart' as native;
18 import '../types/constants.dart' show computeTypeMask; 18 import '../types/constants.dart' show computeTypeMask;
19 import '../types/types.dart'; 19 import '../types/types.dart';
20 import '../universe/selector.dart' show Selector; 20 import '../universe/selector.dart' show Selector;
21 import '../universe/side_effects.dart' show SideEffects; 21 import '../universe/side_effects.dart' show SideEffects;
22 import '../util/util.dart'; 22 import '../util/util.dart';
(...skipping 3521 matching lines...) Expand 10 before | Expand all | Expand 10 after
3544 // ignore: MISSING_RETURN 3544 // ignore: MISSING_RETURN
3545 String get kindAsString { 3545 String get kindAsString {
3546 switch (kind) { 3546 switch (kind) {
3547 case TypeInfoExpressionKind.COMPLETE: 3547 case TypeInfoExpressionKind.COMPLETE:
3548 return 'COMPLETE'; 3548 return 'COMPLETE';
3549 case TypeInfoExpressionKind.INSTANCE: 3549 case TypeInfoExpressionKind.INSTANCE:
3550 return 'INSTANCE'; 3550 return 'INSTANCE';
3551 } 3551 }
3552 } 3552 }
3553 } 3553 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/loop_handler.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698