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

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

Issue 1282463002: Reorganize constants/* libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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.modelx; 5 library elements.modelx;
6 6
7 import 'common.dart'; 7 import 'common.dart';
8 import 'elements.dart'; 8 import 'elements.dart';
9 import '../constants/constant_constructors.dart';
10 import '../constants/constructors.dart';
9 import '../constants/expressions.dart'; 11 import '../constants/expressions.dart';
10 import '../constants/constant_constructors.dart';
11 import '../helpers/helpers.dart'; 12 import '../helpers/helpers.dart';
12 import '../tree/tree.dart'; 13 import '../tree/tree.dart';
13 import '../util/util.dart'; 14 import '../util/util.dart';
14 import '../resolution/resolution.dart'; 15 import '../resolution/resolution.dart';
15 import '../resolution/class_members.dart' show ClassMemberMixin; 16 import '../resolution/class_members.dart' show ClassMemberMixin;
16 17
17 import '../dart2jslib.dart' show 18 import '../dart2jslib.dart' show
18 Backend, 19 Backend,
19 Compiler, 20 Compiler,
20 Constant, 21 Constant,
(...skipping 2881 matching lines...) Expand 10 before | Expand all | Expand 10 after
2902 AstElement get definingElement; 2903 AstElement get definingElement;
2903 2904
2904 bool get hasResolvedAst => definingElement.hasTreeElements; 2905 bool get hasResolvedAst => definingElement.hasTreeElements;
2905 2906
2906 ResolvedAst get resolvedAst { 2907 ResolvedAst get resolvedAst {
2907 return new ResolvedAst(declaration, 2908 return new ResolvedAst(declaration,
2908 definingElement.node, definingElement.treeElements); 2909 definingElement.node, definingElement.treeElements);
2909 } 2910 }
2910 2911
2911 } 2912 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/elements/elements.dart ('k') | pkg/compiler/lib/src/resolution/resolution.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698