<script> Constants:
00: "Base"
01: "Derived"
02: Fn(init new())
03: Fn()
04: Fn(foo)
<script> Code:
00 (ln 1): Constant(0: "Base")
01 (ln 1): Load(Module, Class("Object"))
02 (ln 1): Class(0 fields)
03 (ln 1): Store(Module)
04 (ln 1): Pop
05 (ln 3): Constant(1: "Derived")
06 (ln 3): Load(Module, Null)
07 (ln 3): Class(0 fields)
08 (ln 3): Store(Module)
09 (ln 3): Pop
10 (ln 4): Closure(2, [])
11 (ln 4): Load(Module, Null)
12 (ln 4): Method(instance, init new())
13 (ln 4): Closure(3, [])
14 (ln 4): Load(Module, Null)
15 (ln 4): Method(static, new())
16 (ln 5): Closure(4, [])
17 (ln 5): Load(Module, Null)
18 (ln 5): Method(instance, foo)
19 (ln 8): Load(Module, Null)
20 (ln 8): Call(new())
21 (ln 8): Call(foo)
22 (ln 8): Pop
23 (ln 9): EndModule
24 (ln 9): Return
25 (ln 9): End
init new() Code:
00 (ln 4): Load(Local, 0)
01 (ln 4): Return
02 (ln 4): End
 Code:
00 (ln 4): Construct
01 (ln 4): Call(init new())
02 (ln 4): Return
03 (ln 4): End
foo Constants:
00: 1
01: Null
foo Code:
00 (ln 5): Load(Local, 0)
01 (ln 5): Constant(0: 1)
02 (ln 5): CallSuper(doesNotExist(_))
03 (ln 5): Return
04 (ln 5): End
