1var codegen = require(".."); 2 3// new require("benchmark").Suite().add("add", function() { 4 5var add = codegen(["a", "b"], "add") 6 ("// awesome comment") 7 ("return a + b - c + %d", 1) 8 ({ c: 1 }); 9 10if (add(1, 2) !== 3) 11 throw Error("failed"); 12 13// }).on("cycle", function(event) { process.stdout.write(String(event.target) + "\n"); }).run(); 14 15