use :node;

var Node = module.require('../Node').Node;

fn NullLiteral()

extends Node {

this.type = 'Literal';
this.value = null;
this.raw = "null";

}

NullLiteral.prototype.codegen = () -> {

if !super.codegen() {
  return;
}

return this;

};

NullLiteral.prototype.hasCallExpression = () -> false;

exports.NullLiteral = NullLiteral;