[Fix] 修复无法调用类函数的问题

[Feat] Context merge功能
[Feat] VSCode 拓展现已更为 fig-vscode.
This commit is contained in:
2025-12-23 01:15:35 +08:00
parent 50a4705551
commit 6226059adc
28 changed files with 3682 additions and 264 deletions

View File

@@ -1,3 +1,10 @@
var x := 3.141;
struct test
{
func foo()
{
__fstdout_println("666");
}
}
__fstdout_println(x);
var x := test{};
x.foo();