Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: class instance scope wasn't getting set up from call inside of c…
…lass function demo: ``` class Funny { $h = 1; func A() { B() } func B() { print $h } } #Funny:new().A() ``` Would crash because B is executed without a ClassFunctionScope
- Loading branch information