Sha256: 49c3d0135f22541caab49e66c38cd9e61670bf90825f830dfa4581e14c5e27f4

Contents?: true

Size: 769 Bytes

Versions: 1

Compression:

Stored size: 769 Bytes

Contents

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

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/expressions/ThisExpression.js