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

Side by Side Diff: pkg/compiler/lib/src/ssa/nodes.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
« no previous file with comments | « pkg/compiler/lib/src/ssa/locals_handler.dart ('k') | pkg/compiler/lib/src/ssa/optimize.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) 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/backend_api.dart' show BackendClasses; 7 import '../common/backend_api.dart' show BackendClasses;
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' 11 import '../elements/elements.dart'
12 show Entity, JumpTarget, LabelDefinition, Local; 12 show JumpTarget, LabelDefinition;
13 import '../elements/entities.dart'; 13 import '../elements/entities.dart';
14 import '../elements/types.dart'; 14 import '../elements/types.dart';
15 import '../io/source_information.dart'; 15 import '../io/source_information.dart';
16 import '../js/js.dart' as js; 16 import '../js/js.dart' as js;
17 import '../js_backend/js_backend.dart'; 17 import '../js_backend/js_backend.dart';
18 import '../native/native.dart' as native; 18 import '../native/native.dart' as native;
19 import '../tree/dartstring.dart' as ast; 19 import '../tree/dartstring.dart' as ast;
20 import '../types/constants.dart' show computeTypeMask; 20 import '../types/constants.dart' show computeTypeMask;
21 import '../types/types.dart'; 21 import '../types/types.dart';
22 import '../universe/selector.dart' show Selector; 22 import '../universe/selector.dart' show Selector;
(...skipping 3448 matching lines...) Expand 10 before | Expand all | Expand 10 after
3471 class HDynamicType extends HRuntimeType { 3471 class HDynamicType extends HRuntimeType {
3472 HDynamicType(DynamicType dartType, TypeMask instructionType) 3472 HDynamicType(DynamicType dartType, TypeMask instructionType)
3473 : super(const <HInstruction>[], dartType, instructionType); 3473 : super(const <HInstruction>[], dartType, instructionType);
3474 3474
3475 accept(HVisitor visitor) => visitor.visitDynamicType(this); 3475 accept(HVisitor visitor) => visitor.visitDynamicType(this);
3476 3476
3477 int typeCode() => HInstruction.DYNAMIC_TYPE_TYPECODE; 3477 int typeCode() => HInstruction.DYNAMIC_TYPE_TYPECODE;
3478 3478
3479 bool typeEquals(HInstruction other) => other is HDynamicType; 3479 bool typeEquals(HInstruction other) => other is HDynamicType;
3480 } 3480 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/locals_handler.dart ('k') | pkg/compiler/lib/src/ssa/optimize.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698