static will put functions into function object instead of prototype: ```qml class Foo { static function bar() { log('hey') } } Foo.bar() ```