Fix bug in parsing of super expression (#1364)

This commit is contained in:
Islon Scherer
2025-12-12 18:02:48 +01:00
committed by GitHub
parent cd9cfaae8f
commit 41cf485ffb
3 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
local baz = new Dynamic {}
local foo = new Dynamic {
bar = 1
}
qux {
(foo) {
...super.bar
(baz) {
qux = 1
}
}
}

View File

@@ -0,0 +1,8 @@
qux {
new {
bar = 1
new {
qux = 1
}
}
}