Sha256: ed44a23e4ae52de72bf93c5fd03402ddb8b26ec180a17db4c40b69b8276e57d5
Contents?: true
Size: 970 Bytes
Versions: 3
Compression:
Stored size: 970 Bytes
Contents
$traceurRuntime.ModuleStore.getAnonymousModule(function() { "use strict"; var Node = module.require("../Node").Node; function PushStatement(left, right) { Node.call(this); this.type = "PushStatement"; this.left = left; this.left.parent = this; this.right = right; this.right.parent = this; } PushStatement.prototype = Object.create(Node); PushStatement.prototype.codegen = function() { if (!Node.prototype.codegen.call(this)) { return; } this.type = "ExpressionStatement"; this.expression = { "type": "CallExpression", "callee": { "type": "MemberExpression", "object": this.left.codegen(), "property": { "type": "Identifier", "name": "push" }, "computed": false }, "arguments": [this.right.codegen()] }; return this; }; exports.PushStatement = PushStatement; return {}; }); //# sourceMappingURL=PushStatement.map
Version data entries
3 entries across 3 versions & 1 rubygems