Sha256: 88d3a0e7a41663d0747825f40183aeecddfd107f05c1cef77e9675fef7955703
Contents?: true
Size: 662 Bytes
Versions: 3
Compression:
Stored size: 662 Bytes
Contents
$traceurRuntime.ModuleStore.getAnonymousModule(function() { "use strict"; var Node = module.require("../Node").Node; function ExpressionStatement(expression) { Node.call(this); this.type = "ExpressionStatement"; this.expression = expression; this.expression.parent = this; } ExpressionStatement.prototype = Object.create(Node); ExpressionStatement.prototype.codegen = function() { if (!Node.prototype.codegen.call(this)) { return; } this.expression = this.expression.codegen(); return this; }; exports.ExpressionStatement = ExpressionStatement; return {}; }); //# sourceMappingURL=ExpressionStatement.map
Version data entries
3 entries across 3 versions & 1 rubygems