Sha256: 8b766dca625de5ef85e48164cef2fc75e988e176f9bd54638d1429bf96416bdb

Contents?: true

Size: 634 Bytes

Versions: 3

Compression:

Stored size: 634 Bytes

Contents

$traceurRuntime.ModuleStore.getAnonymousModule(function() {
  "use strict";
  var Node = module.require("../Node").Node;
  function BooleanLiteral(text) {
    Node.call(this);
    this.type = "Literal";
    this.value = text === "true";
    this.raw = text;
  }
  BooleanLiteral.prototype = Object.create(Node);
  BooleanLiteral.prototype.codegen = function() {
    if (!Node.prototype.codegen.call(this)) {
      return;
    }
    return this;
  };
  BooleanLiteral.prototype.hasCallExpression = function() {
    return false;
  };
  exports.BooleanLiteral = BooleanLiteral;
  return {};
});

//# sourceMappingURL=BooleanLiteral.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/literals/BooleanLiteral.js
spider-src-0.1.6 lib/spider-src/support/spider/lib/ast/literals/BooleanLiteral.js
spider-src-0.1.5 lib/spider-src/support/spider/lib/ast/literals/BooleanLiteral.js