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