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

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

Issue 1315483006: Split scannerlib.dart into several libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update try tests Created 5 years, 3 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 '../compiler.dart' show 7 import '../compiler.dart' show
8 Compiler; 8 Compiler;
9 import '../constants/constant_constructors.dart'; 9 import '../constants/constant_constructors.dart';
10 import '../constants/constructors.dart'; 10 import '../constants/constructors.dart';
(...skipping 17 matching lines...) Expand all
28 ClassScope, 28 ClassScope,
29 LibraryScope, 29 LibraryScope,
30 Scope, 30 Scope,
31 TypeDeclarationScope; 31 TypeDeclarationScope;
32 import '../resolution/resolution.dart' show 32 import '../resolution/resolution.dart' show
33 AnalyzableElementX; 33 AnalyzableElementX;
34 import '../resolution/tree_elements.dart' show 34 import '../resolution/tree_elements.dart' show
35 TreeElements; 35 TreeElements;
36 import '../resolution/typedefs.dart' show 36 import '../resolution/typedefs.dart' show
37 TypedefCyclicVisitor; 37 TypedefCyclicVisitor;
38 import '../scanner/scannerlib.dart' show 38 import '../scanner/token.dart' show
39 EOF_TOKEN, 39 EOF_TOKEN,
40 ErrorToken, 40 ErrorToken,
41 Token; 41 Token;
42 import '../script.dart'; 42 import '../script.dart';
43 import '../tree/tree.dart'; 43 import '../tree/tree.dart';
44 import '../util/util.dart'; 44 import '../util/util.dart';
45 45
46 import 'common.dart'; 46 import 'common.dart';
47 import 'elements.dart'; 47 import 'elements.dart';
48 import 'visitor.dart' show 48 import 'visitor.dart' show
(...skipping 2860 matching lines...) Expand 10 before | Expand all | Expand 10 after
2909 AstElement get definingElement; 2909 AstElement get definingElement;
2910 2910
2911 bool get hasResolvedAst => definingElement.hasTreeElements; 2911 bool get hasResolvedAst => definingElement.hasTreeElements;
2912 2912
2913 ResolvedAst get resolvedAst { 2913 ResolvedAst get resolvedAst {
2914 return new ResolvedAst(declaration, 2914 return new ResolvedAst(declaration,
2915 definingElement.node, definingElement.treeElements); 2915 definingElement.node, definingElement.treeElements);
2916 } 2916 }
2917 2917
2918 } 2918 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/elements/elements.dart ('k') | pkg/compiler/lib/src/io/start_end_information.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698