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

Side by Side Diff: pkg/compiler/lib/src/inferrer/inferrer_engine.dart

Issue 2667473003: Move Entity and Local to entities.dart (Closed)
Patch Set: Created 3 years, 10 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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 '../common.dart'; 5 import '../common.dart';
6 import '../common/names.dart'; 6 import '../common/names.dart';
7 import '../compiler.dart'; 7 import '../compiler.dart';
8 import '../constants/expressions.dart'; 8 import '../constants/expressions.dart';
9 import '../constants/values.dart'; 9 import '../constants/values.dart';
10 import '../core_types.dart'; 10 import '../core_types.dart';
11 import '../elements/elements.dart'; 11 import '../elements/elements.dart';
12 import '../elements/entities.dart';
12 import '../js_backend/js_backend.dart'; 13 import '../js_backend/js_backend.dart';
13 import '../native/behavior.dart' as native; 14 import '../native/behavior.dart' as native;
14 import '../resolution/tree_elements.dart'; 15 import '../resolution/tree_elements.dart';
15 import '../tree/nodes.dart' as ast; 16 import '../tree/nodes.dart' as ast;
16 import '../types/constants.dart'; 17 import '../types/constants.dart';
17 import '../types/types.dart'; 18 import '../types/types.dart';
18 import '../universe/call_structure.dart'; 19 import '../universe/call_structure.dart';
19 import '../universe/selector.dart'; 20 import '../universe/selector.dart';
20 import '../universe/side_effects.dart'; 21 import '../universe/side_effects.dart';
21 import '../util/util.dart'; 22 import '../util/util.dart';
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 /** 1043 /**
1043 * Records that the captured variable [local] is read. 1044 * Records that the captured variable [local] is read.
1044 */ 1045 */
1045 void recordCapturedLocalRead(Local local) {} 1046 void recordCapturedLocalRead(Local local) {}
1046 1047
1047 /** 1048 /**
1048 * Records that the variable [local] is being updated. 1049 * Records that the variable [local] is being updated.
1049 */ 1050 */
1050 void recordLocalUpdate(Local local, TypeInformation type) {} 1051 void recordLocalUpdate(Local local, TypeInformation type) {}
1051 } 1052 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/inferrer/builder.dart ('k') | pkg/compiler/lib/src/inferrer/locals_handler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698