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

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

Issue 2860753005: Make elements/names.dart its own library (Closed)
Patch Set: Created 3 years, 7 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 'package:kernel/ast.dart' as ir; 5 import 'package:kernel/ast.dart' as ir;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/names.dart'; 8 import '../common/names.dart';
9 import '../compiler.dart'; 9 import '../compiler.dart';
10 import '../constants/expressions.dart'; 10 import '../constants/expressions.dart';
11 import '../constants/values.dart'; 11 import '../constants/values.dart';
12 import '../common_elements.dart'; 12 import '../common_elements.dart';
13 import '../elements/elements.dart'; 13 import '../elements/elements.dart';
14 import '../elements/entities.dart'; 14 import '../elements/entities.dart';
15 import '../elements/names.dart';
15 import '../js_backend/annotations.dart'; 16 import '../js_backend/annotations.dart';
16 import '../js_backend/js_backend.dart'; 17 import '../js_backend/js_backend.dart';
17 import '../native/behavior.dart' as native; 18 import '../native/behavior.dart' as native;
18 import '../resolution/tree_elements.dart'; 19 import '../resolution/tree_elements.dart';
19 import '../tree/nodes.dart' as ast; 20 import '../tree/nodes.dart' as ast;
20 import '../types/constants.dart'; 21 import '../types/constants.dart';
21 import '../types/types.dart'; 22 import '../types/types.dart';
22 import '../universe/call_structure.dart'; 23 import '../universe/call_structure.dart';
23 import '../universe/selector.dart'; 24 import '../universe/selector.dart';
24 import '../universe/side_effects.dart'; 25 import '../universe/side_effects.dart';
(...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 /** 1087 /**
1087 * Records that the captured variable [local] is read. 1088 * Records that the captured variable [local] is read.
1088 */ 1089 */
1089 void recordCapturedLocalRead(Local local) {} 1090 void recordCapturedLocalRead(Local local) {}
1090 1091
1091 /** 1092 /**
1092 * Records that the variable [local] is being updated. 1093 * Records that the variable [local] is being updated.
1093 */ 1094 */
1094 void recordLocalUpdate(Local local, TypeInformation type) {} 1095 void recordLocalUpdate(Local local, TypeInformation type) {}
1095 } 1096 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/inferrer/builder.dart ('k') | pkg/compiler/lib/src/js_backend/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698