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