8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
|
|
// legacy IE function
|
||
|
|
// expression '(' raw ')'
|
||
|
|
module.exports = function() {
|
||
|
|
return this.createSingleNodeList(
|
||
|
|
this.Raw(this.scanner.currentToken, 0, 0, false, false)
|
||
|
|
);
|
||
|
|
};
|