loxcraft 0.1.1

A compiler, VM, language server, and online playground for the Lox programming language
Documentation
class Outer {
  method() {
    print this; // out: <object Outer>

    fun f() {
      print this; // out: <object Outer>

      class Inner {
        method() {
          print this; // out: <object Inner>
        }
      }

      Inner().method();
    }
    f();
  }
}

Outer().method();