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

Side by Side Diff: pkg/compiler/lib/src/elements/elements.dart

Issue 2606253002: Move dart_types to elements/resolution_types (Closed)
Patch Set: Created 3 years, 11 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/elements/common.dart ('k') | pkg/compiler/lib/src/elements/modelx.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 library elements; 5 library elements;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/resolution.dart' show Resolution; 8 import '../common/resolution.dart' show Resolution;
9 import '../compiler.dart' show Compiler; 9 import '../compiler.dart' show Compiler;
10 import '../constants/constructors.dart'; 10 import '../constants/constructors.dart';
11 import '../constants/expressions.dart'; 11 import '../constants/expressions.dart';
12 import '../core_types.dart' show CommonElements; 12 import '../core_types.dart' show CommonElements;
13 import '../dart_types.dart';
14 import '../ordered_typeset.dart' show OrderedTypeSet; 13 import '../ordered_typeset.dart' show OrderedTypeSet;
15 import '../resolution/scope.dart' show Scope; 14 import '../resolution/scope.dart' show Scope;
16 import '../resolution/tree_elements.dart' show TreeElements; 15 import '../resolution/tree_elements.dart' show TreeElements;
17 import '../script.dart'; 16 import '../script.dart';
18 import '../tokens/token.dart' 17 import '../tokens/token.dart'
19 show Token, isUserDefinableOperator, isMinusOperator; 18 show Token, isUserDefinableOperator, isMinusOperator;
20 import '../tree/tree.dart'; 19 import '../tree/tree.dart';
21 import '../util/characters.dart' show $_; 20 import '../util/characters.dart' show $_;
22 import '../util/util.dart'; 21 import '../util/util.dart';
23 import '../world.dart' show ClosedWorld; 22 import '../world.dart' show ClosedWorld;
24 import 'entities.dart'; 23 import 'entities.dart';
24 import 'resolution_types.dart';
25 import 'visitor.dart' show ElementVisitor; 25 import 'visitor.dart' show ElementVisitor;
26 26
27 part 'names.dart'; 27 part 'names.dart';
28 28
29 const int STATE_NOT_STARTED = 0; 29 const int STATE_NOT_STARTED = 0;
30 const int STATE_STARTED = 1; 30 const int STATE_STARTED = 1;
31 const int STATE_DONE = 2; 31 const int STATE_DONE = 2;
32 32
33 class ElementCategory { 33 class ElementCategory {
34 /** 34 /**
(...skipping 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after
1934 /// by a field. 1934 /// by a field.
1935 bool get isDeclaredByField; 1935 bool get isDeclaredByField;
1936 1936
1937 /// Returns `true` if this member is abstract. 1937 /// Returns `true` if this member is abstract.
1938 bool get isAbstract; 1938 bool get isAbstract;
1939 1939
1940 /// If abstract, [implementation] points to the overridden concrete member, 1940 /// If abstract, [implementation] points to the overridden concrete member,
1941 /// if any. Otherwise [implementation] points to the member itself. 1941 /// if any. Otherwise [implementation] points to the member itself.
1942 Member get implementation; 1942 Member get implementation;
1943 } 1943 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/elements/common.dart ('k') | pkg/compiler/lib/src/elements/modelx.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698