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