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

Side by Side Diff: pkg/compiler/lib/src/serialization/modelz.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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 /// Implementation of the element model used for deserialiation. 5 /// Implementation of the element model used for deserialiation.
6 /// 6 ///
7 /// These classes are created by [ElementDeserializer] triggered by the 7 /// These classes are created by [ElementDeserializer] triggered by the
8 /// [Deserializer]. 8 /// [Deserializer].
9 9
10 library dart2js.serialization.modelz; 10 library dart2js.serialization.modelz;
11 11
12 import 'serialization.dart'; 12 import 'serialization.dart';
13 import 'keys.dart'; 13 import 'keys.dart';
14 import '../constants/constructors.dart';
14 import '../constants/expressions.dart'; 15 import '../constants/expressions.dart';
15 import '../dart2jslib.dart' 16 import '../dart2jslib.dart'
16 show Backend, 17 show Backend,
17 Compiler, 18 Compiler,
18 DiagnosticListener, 19 DiagnosticListener,
19 Script, 20 Script,
20 SourceSpan; 21 SourceSpan;
21 import '../dart_types.dart'; 22 import '../dart_types.dart';
22 import '../elements/elements.dart'; 23 import '../elements/elements.dart';
23 import '../elements/modelx.dart' show FunctionSignatureX; 24 import '../elements/modelx.dart' show FunctionSignatureX;
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 1441
1441 @override 1442 @override
1442 accept(ElementVisitor visitor, arg) { 1443 accept(ElementVisitor visitor, arg) {
1443 return visitor.visitFieldParameterElement(this, arg); 1444 return visitor.visitFieldParameterElement(this, arg);
1444 } 1445 }
1445 1446
1446 @override 1447 @override
1447 ElementKind get kind => ElementKind.INITIALIZING_FORMAL; 1448 ElementKind get kind => ElementKind.INITIALIZING_FORMAL;
1448 1449
1449 } 1450 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/serialization/element_serialization.dart ('k') | pkg/compiler/lib/src/use_unused_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698