Sha256: 0eb4c52b831e8024d158f009ddea964f8218b9154066350b8dcebf2bbbb0cba1
Contents?: true
Size: 600 Bytes
Versions: 3
Compression:
Stored size: 600 Bytes
Contents
$traceurRuntime.ModuleStore.getAnonymousModule(function() { "use strict"; 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 {}; }); //# sourceMappingURL=NullLiteral.map
Version data entries
3 entries across 3 versions & 1 rubygems