Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 7ebc820

Browse files
jensjohacommit-bot@chromium.org
authored andcommitted
[CFE] Also guard _extensions for LazyScope
Change-Id: Iaf55ad1602d6c6f70cc56899114e668de199c471 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/124982 Reviewed-by: Johnni Winther <johnniwinther@google.com> Commit-Queue: Jens Johansen <jensj@google.com>
1 parent a196d68 commit 7ebc820

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkg/front_end/lib/src/fasta/scope.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,12 @@ abstract class LazyScope extends Scope {
467467
ensureScope();
468468
return super._setters;
469469
}
470+
471+
@override
472+
Set<ExtensionBuilder> get _extensions {
473+
ensureScope();
474+
return super._extensions;
475+
}
470476
}
471477

472478
class ScopeBuilder {

0 commit comments

Comments
 (0)