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

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

Issue 2979463002: Revert "Tweak public APIs and use them in patch_sdk, dart2js, and kernel-service." (Closed)
Patch Set: 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 1be6b2aba8f0ad8c867250249becafff6c572864..35423709ee242fbfd4ff3e4bafb4de7139905fdc 100644
--- a/pkg/kernel/lib/binary/ast_from_binary.dart
+++ b/pkg/kernel/lib/binary/ast_from_binary.dart
@@ -159,27 +159,16 @@ class BinaryBuilder {
void _fillTreeNodeList(
List<TreeNode> list, TreeNode buildObject(), TreeNode parent) {
- var length = readUInt();
- list.length = length;
- for (int i = 0; i < length; ++i) {
- TreeNode object = buildObject();
- list[i] = object..parent = parent;
+ list.length = readUInt();
+ for (int i = 0; i < list.length; ++i) {
+ list[i] = buildObject()..parent = parent;
}
}
void _fillNonTreeNodeList(List<Node> list, Node 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();
+ list.length = readUInt();
+ for (int i = 0; i < list.length; ++i) {
+ list[i] = buildObject();
}
}
@@ -381,11 +370,7 @@ class BinaryBuilder {
debugPath.add(library.name ?? library.importUri?.toString() ?? 'library');
- if (shouldWriteData) {
- _fillTreeNodeList(library.annotations, readExpression, library);
- } else {
- _skipNodeList(readExpression);
- }
+ _fillTreeNodeList(library.annotations, readExpression, library);
_readLibraryDependencies(library);
_mergeNamedNodeList(library.typedefs, readTypedef, library);
_mergeNamedNodeList(library.classes, readClass, library);
@@ -475,11 +460,7 @@ class BinaryBuilder {
readAndPushTypeParameterList(node.typeParameters, node);
var supertype = readSupertypeOption();
var mixedInType = readSupertypeOption();
- if (shouldWriteData) {
- _fillNonTreeNodeList(node.implementedTypes, readSupertype);
- } else {
- _skipNodeList(readSupertype);
- }
+ _fillNonTreeNodeList(node.implementedTypes, readSupertype);
_mergeNamedNodeList(node.fields, readField, node);
_mergeNamedNodeList(node.constructors, readConstructor, node);
_mergeNamedNodeList(node.procedures, readProcedure, node);
@@ -563,11 +544,7 @@ class BinaryBuilder {
var function = readFunctionNode();
pushVariableDeclarations(function.positionalParameters);
pushVariableDeclarations(function.namedParameters);
- if (shouldWriteData) {
- _fillTreeNodeList(node.initializers, readInitializer, node);
- } else {
- _skipNodeList(readInitializer);
- }
+ _fillTreeNodeList(node.initializers, readInitializer, node);
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