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

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

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