mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
3 changed files with 15 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||||
|
module.exports = { |
||||
|
description: 'consistent renaming test f' |
||||
|
}; |
@ -0,0 +1,3 @@ |
|||||
|
export default function foo() { |
||||
|
return 'consistent'; |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
import bar from './bar'; |
||||
|
|
||||
|
export default function foo () {} |
||||
|
|
||||
|
foo.prototype.a = function ( foo ) { |
||||
|
return bar(); |
||||
|
}; |
||||
|
|
||||
|
assert.equal( new foo().a(), 'consistent' ); |
Loading…
Reference in new issue