Sha256: 956da6ec2539af43a5124a96e4a697234a9e4076e0f08910c88f0c8cf5e2dd2b

Contents?: true

Size: 693 Bytes

Versions: 3

Compression:

Stored size: 693 Bytes

Contents

$traceurRuntime.ModuleStore.getAnonymousModule(function() {
  "use strict";
  var Node = module.require("./Node").Node;
  function ImportDefaultSpecifier(id) {
    Node.call(this);
    this.type = "ImportDefaultSpecifier";
    this.id = id;
    this.id.parent = this;
  }
  ImportDefaultSpecifier.prototype = Object.create(Node);
  ImportDefaultSpecifier.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.ImportDefaultSpecifier = ImportDefaultSpecifier;
  return {};
});

//# sourceMappingURL=ImportDefaultSpecifier.map

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spider-src-0.1.7 lib/spider-src/support/spider/lib/ast/ImportDefaultSpecifier.js
spider-src-0.1.6 lib/spider-src/support/spider/lib/ast/ImportDefaultSpecifier.js
spider-src-0.1.5 lib/spider-src/support/spider/lib/ast/ImportDefaultSpecifier.js