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

Unified Diff: pkg/compiler/lib/src/closure.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/closure.dart
diff --git a/pkg/compiler/lib/src/closure.dart b/pkg/compiler/lib/src/closure.dart
index 0e9f37fb99a530a3ecf31c35bf1141359fbc6cf2..c58d19d59d2808a8b312cabc4da1ccb0fee14058 100644
--- a/pkg/compiler/lib/src/closure.dart
+++ b/pkg/compiler/lib/src/closure.dart
@@ -36,37 +36,42 @@ class ClosureTask extends CompilerTask {
if (resolvedAst.kind != ResolvedAstKind.PARSED) {
return new ClosureClassMap(null, null, null, new ThisLocal(element));
}
- Node node = resolvedAst.node;
- TreeElements elements = resolvedAst.elements;
-
- ClosureClassMap cached = closureMappingCache[node];
- if (cached != null) return cached;
-
- ClosureTranslator translator =
- new ClosureTranslator(compiler, elements, closureMappingCache);
-
- // The translator will store the computed closure-mappings inside the
- // cache. One for given node and one for each nested closure.
- if (node is FunctionExpression) {
- translator.translateFunction(element, node);
- } else if (element.isSynthesized) {
- reporter.internalError(
- element, "Unexpected synthesized element: $element");
- return new ClosureClassMap(null, null, null, new ThisLocal(element));
- } else {
- assert(element.isField);
- Node initializer = resolvedAst.body;
- if (initializer != null) {
- // The lazy initializer of a static.
- translator.translateLazyInitializer(element, node, initializer);
+ return reporter.withCurrentElement(element.implementation, () {
+ Node node = resolvedAst.node;
+ TreeElements elements = resolvedAst.elements;
+
+ ClosureClassMap cached = closureMappingCache[node];
+ if (cached != null) return cached;
+
+ ClosureTranslator translator =
+ new ClosureTranslator(compiler, elements, closureMappingCache);
+
+ // The translator will store the computed closure-mappings inside the
+ // cache. One for given node and one for each nested closure.
+ if (node is FunctionExpression) {
+ translator.translateFunction(element, node);
+ } else if (element.isSynthesized) {
+ reporter.internalError(
+ element, "Unexpected synthesized element: $element");
+ return new ClosureClassMap(null, null, null, new ThisLocal(element));
} else {
- assert(element.isInstanceMember);
- closureMappingCache[node] =
- new ClosureClassMap(null, null, null, new ThisLocal(element));
+ assert(invariant(element, element.isField,
+ message: "Expected $element to be a field."));
+ Node initializer = resolvedAst.body;
+ if (initializer != null) {
+ // The lazy initializer of a static.
+ translator.translateLazyInitializer(element, node, initializer);
+ } else {
+ assert(invariant(element, element.isInstanceMember,
+ message: "Expected $element (${element
+ .runtimeType}) to be an instance field."));
+ closureMappingCache[node] =
+ new ClosureClassMap(null, null, null, new ThisLocal(element));
+ }
}
- }
- assert(closureMappingCache[node] != null);
- return closureMappingCache[node];
+ assert(closureMappingCache[node] != null);
+ return closureMappingCache[node];
+ });
});
}
@@ -96,6 +101,7 @@ class ClosureTask extends CompilerTask {
/// Common interface for [BoxFieldElement] and [ClosureFieldElement] as
/// non-elements.
+// TODO(johnniwinther): Remove `implements Element`.
abstract class CapturedVariable implements Element {}
// TODO(ahe): These classes continuously cause problems. We need to
@@ -243,6 +249,8 @@ class BoxLocal extends Local {
final ExecutableElement executableContext;
BoxLocal(this.name, this.executableContext);
+
+ String toString() => 'BoxLocal($name)';
}
// TODO(ngeoffray, ahe): These classes continuously cause problems. We need to
@@ -433,7 +441,7 @@ class ClosureClassMap {
///
/// Also parameters to a `sync*` generator must be boxed, because of the way
/// we rewrite sync* functions. See also comments in [useLocal].
- /// TODO(johnniwinter): Add variables to this only if the variable is mutated.
+ // TODO(johnniwinther): Add variables to this only if the variable is mutated.
final Set<Local> variablesUsedInTryOrGenerator = new Set<Local>();
ClosureClassMap(this.closureElement, this.closureClassElement,
« no previous file with comments | « no previous file | pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698