pogo
Version:
A readable, DSL friendly programming language that compiles to JavaScript
20 lines • 571 B
JavaScript
(function() {
var self = this;
module.exports = function(terms) {
var self = this;
return terms.term({
constructor: function() {
var self = this;
return self.isContinue = true;
},
generateStatement: function(scope) {
var self = this;
return self.code("continue;");
},
rewriteResultTermInto: function(returnTerm) {
var self = this;
return self;
}
});
};
}).call(this);