Isn't ``` javascript class Foo { static new() { console.log(123); } } Foo.new(); new Foo(); ``` ambiguous with regard to `Foo::new`, shouldn't it be something more like `new::Foo`?