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

Unified Diff: pkg/kernel/lib/ast.dart

Issue 2531873002: Add --verify-ir flag to dartk and test.py. (Closed)
Patch Set: Minor fixes Created 4 years, 1 month 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/kernel/bin/transform.dart ('k') | pkg/kernel/lib/checks.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/ast.dart
diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
index 40a305ffae302b36811a9f499b808849372595a7..426dd87733e350a6cad22dcf32631d08198329c5 100644
--- a/pkg/kernel/lib/ast.dart
+++ b/pkg/kernel/lib/ast.dart
@@ -3012,6 +3012,7 @@ class VariableDeclaration extends Statement {
static const int FlagFinal = 1 << 0; // Must match serialized bit positions.
static const int FlagConst = 1 << 1;
+ static const int FlagInScope = 1 << 2; // Temporary flag used by verifier.
bool get isFinal => flags & FlagFinal != 0;
bool get isConst => flags & FlagConst != 0;
« no previous file with comments | « pkg/kernel/bin/transform.dart ('k') | pkg/kernel/lib/checks.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698