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

Side by Side Diff: pkg/compiler/lib/src/ssa/loop_handler.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/kernel_ast_adapter.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 'package:kernel/ast.dart' as ir; 5 import 'package:kernel/ast.dart' as ir;
6 6
7 import '../closure.dart'; 7 import '../closure.dart';
8 import '../elements/elements.dart' show JumpTarget, LabelDefinition; 8 import '../elements/jumps.dart';
9 import '../io/source_information.dart'; 9 import '../io/source_information.dart';
10 import '../tree/tree.dart' as ast; 10 import '../tree/tree.dart' as ast;
11 11
12 import 'builder.dart'; 12 import 'builder.dart';
13 import 'builder_kernel.dart'; 13 import 'builder_kernel.dart';
14 import 'graph_builder.dart'; 14 import 'graph_builder.dart';
15 import 'jump_handler.dart'; 15 import 'jump_handler.dart';
16 import 'kernel_ast_adapter.dart'; 16 import 'kernel_ast_adapter.dart';
17 import 'locals_handler.dart'; 17 import 'locals_handler.dart';
18 import 'nodes.dart'; 18 import 'nodes.dart';
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 HLoopBlockInformation.DO_WHILE_LOOP; 400 HLoopBlockInformation.DO_WHILE_LOOP;
401 401
402 @override 402 @override
403 int visitForInStatement(ir.ForInStatement node) => 403 int visitForInStatement(ir.ForInStatement node) =>
404 HLoopBlockInformation.FOR_IN_LOOP; 404 HLoopBlockInformation.FOR_IN_LOOP;
405 405
406 @override 406 @override
407 int visitSwitchStatement(ir.SwitchStatement node) => 407 int visitSwitchStatement(ir.SwitchStatement node) =>
408 HLoopBlockInformation.SWITCH_CONTINUE_LOOP; 408 HLoopBlockInformation.SWITCH_CONTINUE_LOOP;
409 } 409 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/kernel_ast_adapter.dart ('k') | pkg/compiler/lib/src/ssa/nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698