`new foo.bar()` is not compiled correctly
Created by: jlongster
Without using any macros, sweet.js outputs the wrong code for this:
const db = new sqlite.Database("foo")
The generated output is:
const db_0 = new "foo";
Created by: jlongster
Without using any macros, sweet.js outputs the wrong code for this:
const db = new sqlite.Database("foo")
The generated output is:
const db_0 = new "foo";