qmlcore icon indicating copy to clipboard operation
qmlcore copied to clipboard

static function declaration

Open whoozle opened this issue 6 years ago • 0 comments

static will put functions into function object instead of prototype:

class Foo {
  static function bar() { log('hey') } 
}

Foo.bar()

whoozle avatar Jan 24 '18 11:01 whoozle