There was an error while loading. Please reload this page.
An Engine is an application which
engine = new Engine ... $root = engine.root $sys = engine.sys assert $sys.parent is $root SEND = engine.send SEND $root, 'spawn' .then (child) -> assert child.parent is $root assert child in $root.children $root.addProperty 'name', 'root' $root.addMethod 'set_root_name', CoffeeScript.compile, """ (newName) -> name = newName """