mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
6 changed files with 26 additions and 3 deletions
@ -0,0 +1,9 @@ |
|||
module.exports = { |
|||
solo: true, |
|||
description: 'allow reserved identifiers via custom acorn options', |
|||
options: { |
|||
acorn: { |
|||
allowReserved: true |
|||
} |
|||
} |
|||
}; |
@ -0,0 +1,2 @@ |
|||
var x = function await () {} |
|||
assert.equal( x.name, 'await' ); |
Loading…
Reference in new issue