Sha256: 041bfc1011262dbf0bba794b28af89c8afe2aac12712d925e7e844b2da18a341

Contents?: true

Size: 906 Bytes

Versions: 1

Compression:

Stored size: 906 Bytes

Contents

System.register("ImportDefaultSpecifier", [], function() {
  "use strict";
  var __moduleName = "ImportDefaultSpecifier";
  function require(path) {
    return $traceurRuntime.require("ImportDefaultSpecifier", path);
  }
  "use strict";
  (function() {
    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 {};
});
System.get("ImportDefaultSpecifier" + '');

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spider-src-0.1.6 lib/spider-src/support/spider/node_modules/spider-script/lib/ast/ImportDefaultSpecifier.js