Index: pkg/kernel/lib/ast.dart |
diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart |
index a27c198a9326d3d6d21fcbdd261217bed35c2d67..164843a82c03c203309e6947808b3a263c18308b 100644 |
--- a/pkg/kernel/lib/ast.dart |
+++ b/pkg/kernel/lib/ast.dart |
@@ -3458,6 +3458,7 @@ class VariableDeclaration extends Statement { |
String name; |
int flags = 0; |
DartType type; // Not null, defaults to dynamic. |
+ int tempOffset; |
Kevin Millikin (Google)
2017/04/05 08:59:57
Name should be something like binaryOffset.
Comme
|
/// For locals, this is the initial value. |
/// For parameters, this is the default value. |