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