The code in this function:
function t() {
var csvPath = '/tmp/contacts.csv';
parser = new ContactDocParser(csvPath, cont());
}
gets compiled to
function t() {
var csvPath = '/tmp/contacts.csv';
parser = new ContactDocParser(csvPath, cont());
}
/* Generated by Continuation.js v0.1.4 */
It just ignores it.
When I remove the new statement, it does replace the cont()