Github Issue: rollup/rollup#372
Example Output: https://gist.github.com/shannonmoeller/280dda1f47e222c1ee88e5613bd01897
Github Issue: rollup/rollup#372
Example Output: https://gist.github.com/shannonmoeller/280dda1f47e222c1ee88e5613bd01897
| import { foo } from './foo'; | |
| import { bar } from './bar'; | |
| export function a() { | |
| return foo() + bar(); | |
| } |
| import { foo } from './foo'; | |
| import { baz } from './baz'; | |
| export function b() { | |
| return foo() + baz(); | |
| } |
| export function bar() { | |
| return 'bar'; | |
| } |
| export function baz() { | |
| return 'baz'; | |
| } |
| export function foo() { | |
| return 'foo'; | |
| } |