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

Unified Diff: pkg/kernel/lib/binary/ast_from_binary.dart

Issue 2953703002: Tweak public APIs and use them in patch_sdk, dart2js, and kernel-service (Closed)
Patch Set: cl review updates: cleanup in kernel deserialization Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/tool/perf.dart ('k') | pkg/kernel/lib/binary/limited_ast_to_binary.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/binary/ast_from_binary.dart
diff --git a/pkg/kernel/lib/binary/ast_from_binary.dart b/pkg/kernel/lib/binary/ast_from_binary.dart
index f0c34cd1dab49c9515f8e8d54d17baa8b22fc2a0..abc6099b41b2a1d2ca4760093240be0051b1a32c 100644
--- a/pkg/kernel/lib/binary/ast_from_binary.dart
+++ b/pkg/kernel/lib/binary/ast_from_binary.dart
@@ -159,16 +159,27 @@ class BinaryBuilder {
void _fillTreeNodeList(
List<TreeNode> list, TreeNode buildObject(), TreeNode parent) {
- list.length = readUInt();
- for (int i = 0; i < list.length; ++i) {
- list[i] = buildObject()..parent = parent;
+ var length = readUInt();
+ list.length = length;
+ for (int i = 0; i < length; ++i) {
+ TreeNode object = buildObject();
+ list[i] = object..parent = parent;
}
}
void _fillNonTreeNodeList(List<Node> list, Node buildObject()) {
- list.length = readUInt();
- for (int i = 0; i < list.length; ++i) {
- list[i] = buildObject();
+ var length = readUInt();
+ list.length = length;
+ for (int i = 0; i < length; ++i) {
+ Node object = buildObject();
+ list[i] = object;
+ }
+ }
+
+ void _skipNodeList(Node skipObject()) {
+ var length = readUInt();
+ for (int i = 0; i < length; ++i) {
+ skipObject();
}
}
@@ -356,7 +367,11 @@ class BinaryBuilder {
debugPath.add(library.name ?? library.importUri?.toString() ?? 'library');
- _fillTreeNodeList(library.annotations, readExpression, library);
+ if (shouldWriteData) {
+ _fillTreeNodeList(library.annotations, readExpression, library);
+ } else {
+ _skipNodeList(readExpression);
+ }
_readLibraryDependencies(library);
_mergeNamedNodeList(library.typedefs, readTypedef, library);
_mergeNamedNodeList(library.classes, readClass, library);
@@ -445,7 +460,11 @@ class BinaryBuilder {
readAndPushTypeParameterList(node.typeParameters, node);
var supertype = readSupertypeOption();
var mixedInType = readSupertypeOption();
- _fillNonTreeNodeList(node.implementedTypes, readSupertype);
+ if (shouldWriteData) {
+ _fillNonTreeNodeList(node.implementedTypes, readSupertype);
+ } else {
+ _skipNodeList(readSupertype);
+ }
_mergeNamedNodeList(node.fields, readField, node);
_mergeNamedNodeList(node.constructors, readConstructor, node);
_mergeNamedNodeList(node.procedures, readProcedure, node);
@@ -529,7 +548,11 @@ class BinaryBuilder {
var function = readFunctionNode();
pushVariableDeclarations(function.positionalParameters);
pushVariableDeclarations(function.namedParameters);
- _fillTreeNodeList(node.initializers, readInitializer, node);
+ if (shouldWriteData) {
+ _fillTreeNodeList(node.initializers, readInitializer, node);
+ } else {
+ _skipNodeList(readInitializer);
+ }
variableStack.length = 0;
var transformerFlags = getAndResetTransformerFlags();
debugPath.removeLast();
« no previous file with comments | « pkg/front_end/tool/perf.dart ('k') | pkg/kernel/lib/binary/limited_ast_to_binary.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698