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

Side by Side Diff: pkg/compiler/lib/src/serialization/keys.dart

Issue 1892093003: Support deserialized compilation of the empty program. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments Created 4 years, 8 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 library dart2js.serialization.keys; 5 library dart2js.serialization.keys;
6 6
7 /// Keys used for serialization. 7 /// Keys used for serialization.
8 class Key { 8 class Key {
9 static const Key ALIAS = const Key('alias'); 9 static const Key ALIAS = const Key('alias');
10 static const Key ARGUMENTS = const Key('arguments'); 10 static const Key ARGUMENTS = const Key('arguments');
11 static const Key ASYNC_MARKER = const Key('asyncMarker'); 11 static const Key ASYNC_MARKER = const Key('asyncMarker');
12 static const Key BODY = const Key('body');
12 static const Key BOUND = const Key('bound'); 13 static const Key BOUND = const Key('bound');
13 static const Key CACHED_TYPE = const Key('cachedType'); 14 static const Key CACHED_TYPE = const Key('cachedType');
14 static const Key CALL_STRUCTURE = const Key('callStructure'); 15 static const Key CALL_STRUCTURE = const Key('callStructure');
15 static const Key CALL_TYPE = const Key('callType'); 16 static const Key CALL_TYPE = const Key('callType');
16 static const Key CANONICAL_URI = const Key('canonicalUri'); 17 static const Key CANONICAL_URI = const Key('canonicalUri');
17 static const Key CLASS = const Key('class'); 18 static const Key CLASS = const Key('class');
18 static const Key COMPILATION_UNIT = const Key('compilation-unit'); 19 static const Key COMPILATION_UNIT = const Key('compilation-unit');
19 static const Key COMPILATION_UNITS = const Key('compilation-units'); 20 static const Key COMPILATION_UNITS = const Key('compilation-units');
20 static const Key CONDITION = const Key('condition'); 21 static const Key CONDITION = const Key('condition');
21 static const Key CONSTANT = const Key('constant'); 22 static const Key CONSTANT = const Key('constant');
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 static const Key URI = const Key('uri'); 117 static const Key URI = const Key('uri');
117 static const Key VALUE = const Key('value'); 118 static const Key VALUE = const Key('value');
118 static const Key VALUES = const Key('values'); 119 static const Key VALUES = const Key('values');
119 120
120 final String name; 121 final String name;
121 122
122 const Key(this.name); 123 const Key(this.name);
123 124
124 String toString() => name; 125 String toString() => name;
125 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698