Files
codeql/javascript/extractor/tests/mozilla/input/new-with-trailing-arg.js
2018-11-07 07:48:25 +00:00

6 lines
96 B
JavaScript

// `new` with initializer
new A() { foo: "bar" }
// `new` followed by an empty block
new A()
{}