Commit 573d51f
Fix test_dock.gd parse: annotate Variant-typed locals
`_dock` is typed as `Node` in this suite, so property chains through
`_dock._dev_restart_btn.disabled` / `.tooltip_text` resolve to Variant
and `:=` can't infer. CI Linux/macOS/Windows Godot tests all failed to
load the suite as a result. Replace `:=` with explicit `: bool` /
`: String` annotations on the four locals the parser flagged plus the
nearby int local for consistency.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 0014af6 commit 573d51f
1 file changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1015 | 1015 | | |
1016 | 1016 | | |
1017 | 1017 | | |
1018 | | - | |
| 1018 | + | |
1019 | 1019 | | |
1020 | 1020 | | |
1021 | 1021 | | |
| |||
1037 | 1037 | | |
1038 | 1038 | | |
1039 | 1039 | | |
1040 | | - | |
1041 | | - | |
| 1040 | + | |
| 1041 | + | |
1042 | 1042 | | |
1043 | 1043 | | |
1044 | 1044 | | |
| |||
1056 | 1056 | | |
1057 | 1057 | | |
1058 | 1058 | | |
1059 | | - | |
1060 | | - | |
| 1059 | + | |
| 1060 | + | |
1061 | 1061 | | |
1062 | 1062 | | |
1063 | 1063 | | |
| |||
0 commit comments