Sha256: fdc4519993559cd231321f9e51eea9cd7d2c43e272adbb9c1e7c0a849912d471
Contents?: true
Size: 782 Bytes
Versions: 1
Compression:
Stored size: 782 Bytes
Contents
System.register("NullLiteral", [], function() { "use strict"; var __moduleName = "NullLiteral"; function require(path) { return $traceurRuntime.require("NullLiteral", path); } "use strict"; (function() { var Node = module.require("../Node").Node; function NullLiteral() { Node.call(this); this.type = "Literal"; this.value = null; this.raw = "null"; } NullLiteral.prototype = Object.create(Node); NullLiteral.prototype.codegen = function() { if (!Node.prototype.codegen.call(this)) { return; } return this; }; NullLiteral.prototype.hasCallExpression = function() { return false; }; exports.NullLiteral = NullLiteral; }()); return {}; }); System.get("NullLiteral" + '');
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/literals/NullLiteral.js |