Code coverage report for lib/parser/ast/group.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/ » group.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 GroupExpression(expression) {
  this.expression = expression;
  BaseExpression.apply(this, arguments);
}
 
BaseExpression.extend(GroupExpression, {
  type: "call",
  toJavaScript: function() {
    return "(" + this.expression.toJavaScript() + ")";
  }
});
 
module.exports = GroupExpression;