[Fix] 修复struct内部函数无法访问内部成员的问题

[Feat] 拓展构建
This commit is contained in:
2025-12-23 01:37:46 +08:00
parent 6226059adc
commit 660cca2579
6 changed files with 83 additions and 71 deletions

View File

@@ -1,10 +1,14 @@
struct test
{
bar:String = "1233";
func foo()
{
__fstdout_println("666");
__fstdout_println(bar);
}
}
var x := test{};
x.foo();
x.bar = "555";
x.foo();