pogo
Version:
A readable, DSL friendly programming language that compiles to JavaScript
13 lines • 391 B
JavaScript
(function() {
var self = this;
module.exports = function(terms) {
var self = this;
var asyncResult;
return asyncResult = function() {
var resultVariable;
resultVariable = terms.generatedVariable([ "async", "result" ]);
resultVariable.isAsyncResult = true;
return resultVariable;
};
};
}).call(this);