| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
bool get isFinalOrShared => (declaration.isFinal && !declaration.isLate) ||I think current spec is effectively saying that:
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
bool get isFinalOrShared => (declaration.isFinal && !declaration.isLate) ||I think current spec is effectively saying that:
- Global variables must be both final and shared.
- Local captured variables must be final (not required to be marked as shared though).
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
static const capturesOnlyFinalNotLateVarsFlag = 1 << 3;DBC
Please update `pkg/dart2bytecode/docs/bytecode.md` accordingly.
bool _isShared;DBC
Is this still needed? If not, consider cleaning it up.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
static const capturesOnlyFinalNotLateVarsFlag = 1 << 3;DBC
Please update `pkg/dart2bytecode/docs/bytecode.md` accordingly.
Done
DBC
Is this still needed? If not, consider cleaning it up.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[vm/shared] Prohibit capturing of 'late final' variables by isolategroup-bound closures.
TEST=run_isolate_group_run_test
BUG=https://github.com/dart-lang/sdk/issues/62181
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |