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

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

Issue 1278503004: Revert "Move dart2jslib parts into separate libraries." (Closed) Base URL: git@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
« no previous file with comments | « pkg/compiler/lib/src/elements/elements.dart ('k') | pkg/compiler/lib/src/enqueue.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) 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'; 9 import '../constants/constant_constructors.dart';
10 import '../constants/constructors.dart'; 10 import '../constants/constructors.dart';
11 import '../constants/expressions.dart'; 11 import '../constants/expressions.dart';
12 import '../diagnostic_listener.dart';
13 import '../helpers/helpers.dart'; 12 import '../helpers/helpers.dart';
14 import '../messages.dart';
15 import '../script.dart';
16 import '../tree/tree.dart'; 13 import '../tree/tree.dart';
17 import '../util/util.dart'; 14 import '../util/util.dart';
18 import '../resolution/resolution.dart'; 15 import '../resolution/resolution.dart';
19 import '../resolution/class_members.dart' show ClassMemberMixin; 16 import '../resolution/class_members.dart' show ClassMemberMixin;
20 17
21 import '../dart2jslib.dart' show 18 import '../dart2jslib.dart' show
22 Backend, 19 Backend,
23 Compiler, 20 Compiler,
24 Constant, 21 Constant,
25 DartType, 22 DartType,
(...skipping 2880 matching lines...) Expand 10 before | Expand all | Expand 10 after
2906 AstElement get definingElement; 2903 AstElement get definingElement;
2907 2904
2908 bool get hasResolvedAst => definingElement.hasTreeElements; 2905 bool get hasResolvedAst => definingElement.hasTreeElements;
2909 2906
2910 ResolvedAst get resolvedAst { 2907 ResolvedAst get resolvedAst {
2911 return new ResolvedAst(declaration, 2908 return new ResolvedAst(declaration,
2912 definingElement.node, definingElement.treeElements); 2909 definingElement.node, definingElement.treeElements);
2913 } 2910 }
2914 2911
2915 } 2912 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/elements/elements.dart ('k') | pkg/compiler/lib/src/enqueue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698