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

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