#summary Removal of empty parentheses in "new" expressions. = Introduction = This is a very simple optimization. It turns out that in Javascript, `new foo()` can simply be written `new foo` (as in C++). = Performance Impact = None.