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

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

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