mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
6 changed files with 35 additions and 6 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'includes reassignments that are ignored on an initial pass' |
|||
}; |
@ -0,0 +1,9 @@ |
|||
var answer, getAnswer; |
|||
|
|||
getAnswer = function () { |
|||
return 42; |
|||
}; |
|||
|
|||
answer = getAnswer(); |
|||
|
|||
export default answer; |
@ -0,0 +1,3 @@ |
|||
import answer from './foo.js'; |
|||
|
|||
assert.equal( answer, 42 ); |
Loading…
Reference in new issue