Code coverage report for lib/parser/ast/literal.js

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (7 / 7)      Ignored: none     

All files » lib/parser/ast/ » literal.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 161   1 5 5     1     3       1  
var BaseExpression = require("./base");
 
function LiteralExpression(value) {
  this.value = value;
  BaseExpression.apply(this, arguments);
}
 
BaseExpression.extend(LiteralExpression, {
  type: "literal",
  toJavaScript: function() {
    return String(this.value);
  }
});
 
module.exports = LiteralExpression;