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

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

Issue 1967073002: Check closure data for serialization (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 4 years, 7 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 BODY = const Key('body');
13 static const Key BOUND = const Key('bound'); 13 static const Key BOUND = const Key('bound');
14 static const Key CACHED_TYPE = const Key('cachedType'); 14 static const Key CACHED_TYPE = const Key('cachedType');
15 static const Key CALL_STRUCTURE = const Key('callStructure'); 15 static const Key CALL_STRUCTURE = const Key('callStructure');
16 static const Key CALL_TYPE = const Key('callType'); 16 static const Key CALL_TYPE = const Key('callType');
17 static const Key CANONICAL_URI = const Key('canonicalUri'); 17 static const Key CANONICAL_URI = const Key('canonicalUri');
18 static const Key CLASS = const Key('class'); 18 static const Key CLASS = const Key('class');
19 static const Key COMPILATION_UNIT = const Key('compilation-unit'); 19 static const Key COMPILATION_UNIT = const Key('compilation-unit');
20 static const Key COMPILATION_UNITS = const Key('compilation-units'); 20 static const Key COMPILATION_UNITS = const Key('compilation-units');
21 static const Key CONDITION = const Key('condition'); 21 static const Key CONDITION = const Key('condition');
22 static const Key CONSTANT = const Key('constant'); 22 static const Key CONSTANT = const Key('constant');
23 static const Key CONSTANTS = const Key('constants'); 23 static const Key CONSTANTS = const Key('constants');
24 static const Key CONSTRUCTOR = const Key('constructor'); 24 static const Key CONSTRUCTOR = const Key('constructor');
25 static const Key CONTAINS_TRY = const Key('containsTryStatement');
25 static const Key DATA = const Key('data'); 26 static const Key DATA = const Key('data');
26 static const Key DEFAULT = const Key('default'); 27 static const Key DEFAULT = const Key('default');
27 static const Key DEFAULTS = const Key('defaults'); 28 static const Key DEFAULTS = const Key('defaults');
28 static const Key DYNAMIC_USES = const Key('dynamic-uses'); 29 static const Key DYNAMIC_USES = const Key('dynamic-uses');
29 static const Key EFFECTIVE_TARGET = const Key('effectiveTarget'); 30 static const Key EFFECTIVE_TARGET = const Key('effectiveTarget');
30 static const Key EFFECTIVE_TARGET_TYPE = const Key('effectiveTargetType'); 31 static const Key EFFECTIVE_TARGET_TYPE = const Key('effectiveTargetType');
31 static const Key ELEMENT = const Key('element'); 32 static const Key ELEMENT = const Key('element');
32 static const Key ELEMENTS = const Key('elements'); 33 static const Key ELEMENTS = const Key('elements');
33 static const Key EXECUTABLE_CONTEXT = const Key('executable-context'); 34 static const Key EXECUTABLE_CONTEXT = const Key('executable-context');
34 static const Key EXPORTS = const Key('exports'); 35 static const Key EXPORTS = const Key('exports');
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 static const Key URI = const Key('uri'); 124 static const Key URI = const Key('uri');
124 static const Key VALUE = const Key('value'); 125 static const Key VALUE = const Key('value');
125 static const Key VALUES = const Key('values'); 126 static const Key VALUES = const Key('values');
126 127
127 final String name; 128 final String name;
128 129
129 const Key(this.name); 130 const Key(this.name);
130 131
131 String toString() => name; 132 String toString() => name;
132 } 133 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/serialization/equivalence.dart ('k') | pkg/compiler/lib/src/serialization/modelz.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698