kyleect / locks

A toy language branched from Lox to learn language implementation and tooling. Forked from loxcraft
https://kyleect.github.io/locks/#/docs
MIT License
0 stars 0 forks source link

`len` call on a method causes segfault #133

Closed kyleect closed 6 months ago

kyleect commented 6 months ago
class Class {
  fn test () {

  }
}

print len(Class().test);