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