flexxui/pscript

Problems when translating class

streetartist opened this issue · 1 comments

When transferring a class, the operation of generating a class instance is treated as a calling function, and a type check should be added to avoid this problem

You can't tell whether it's a class by the capitalized initials

a = aclass()

Translated into

a = aclass();

Duplicate of #61