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

Unified Diff: pkg/analyzer/lib/src/summary/idl.dart

Issue 2963183002: Don't serialize local variables. (Closed)
Patch Set: Rebase after removing ExecutableElement.localVariables 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/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/lib/src/summary/summarize_ast.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/summary/idl.dart
diff --git a/pkg/analyzer/lib/src/summary/idl.dart b/pkg/analyzer/lib/src/summary/idl.dart
index 1f68ec5c105915319efc208d076cd05d187b1c29..c4d7b6d8282c0266fc6768098f0cb75fd69e1dc4 100644
--- a/pkg/analyzer/lib/src/summary/idl.dart
+++ b/pkg/analyzer/lib/src/summary/idl.dart
@@ -831,9 +831,7 @@ abstract class LinkedReference extends base.SummaryClass {
/**
* If [kind] is [ReferenceKind.function] (that is, the entity being referred
* to is a local function), the index of the function within
- * [UnlinkedExecutable.localFunctions]. If [kind] is
- * [ReferenceKind.variable], the index of the variable within
- * [UnlinkedExecutable.localVariables]. Otherwise zero.
+ * [UnlinkedExecutable.localFunctions]. Otherwise zero.
*/
@Id(6)
int get localIndex;
@@ -1802,6 +1800,7 @@ abstract class UnlinkedExecutable extends base.SummaryClass {
* The list of local variables.
*/
@informative
+ @deprecated
@Id(19)
List<UnlinkedVariable> get localVariables;
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/lib/src/summary/summarize_ast.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698