mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-13 06:36:17 +00:00
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
var codegen = require("..");
|
|
|
|
// new require("benchmark").Suite().add("add", function() {
|
|
|
|
var add = codegen(["a", "b"], "add")
|
|
("// awesome comment")
|
|
("return a + b - c + %d", 1)
|
|
({ c: 1 });
|
|
|
|
if (add(1, 2) !== 3)
|
|
throw Error("failed");
|
|
|
|
// }).on("cycle", function(event) { process.stdout.write(String(event.target) + "\n"); }).run();
|