libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
1
2
3
4
5
6
7
8
class Base {}

class Derived is Base {
  construct new() {}
  foo { super.doesNotExist(1) } // expect runtime error: Base does not implement 'doesNotExist(_)'.
}

Derived.new().foo