expression.js 190 B

12345678
  1. // legacy IE function
  2. // expression '(' raw ')'
  3. module.exports = function() {
  4. return this.createSingleNodeList(
  5. this.Raw(this.scanner.currentToken, 0, 0, false, false)
  6. );
  7. };