Skip to content

Commit 3bde762

Browse files
scheglovcommit-bot@chromium.org
authored andcommitted
Fix for AstBinaryFlags.hasQuestion
R=brianwilkerson@google.com Change-Id: I3b971310aa62955b61089166d059a44eb02eee69 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/124901 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
1 parent 63c67a6 commit 3bde762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/analyzer/lib/src/summary2/ast_binary_flags.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ class AstBinaryFlags {
407407
}
408408

409409
static bool hasQuestion(int flags) {
410-
return (flags & _isStringInterpolationIdentifier) != 0;
410+
return (flags & _hasQuestion) != 0;
411411
}
412412

413413
static bool hasSeparatorColon(int flags) {

0 commit comments

Comments
 (0)