mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
12 changed files with 60 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'omits unused var declaration' |
|||
}; |
@ -0,0 +1,7 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
var foo = 'lol'; |
|||
|
|||
console.log( foo ); |
|||
|
|||
}); |
@ -0,0 +1,5 @@ |
|||
'use strict'; |
|||
|
|||
var foo = 'lol'; |
|||
|
|||
console.log( foo ); |
@ -0,0 +1,3 @@ |
|||
var foo = 'lol'; |
|||
|
|||
console.log( foo ); |
@ -0,0 +1,8 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
var foo = 'lol'; |
|||
|
|||
console.log( foo ); |
|||
|
|||
}()); |
@ -0,0 +1,11 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
var foo = 'lol'; |
|||
|
|||
console.log( foo ); |
|||
|
|||
})); |
@ -0,0 +1,6 @@ |
|||
var foo = 'lol'; |
|||
var bar = 'wut'; |
|||
|
|||
var baz = bar || foo; |
|||
|
|||
export { foo }; |
@ -0,0 +1,2 @@ |
|||
import { foo } from './foo.js'; |
|||
console.log( foo ); |
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'tracks mutations of late aliases' |
|||
}; |
@ -0,0 +1,7 @@ |
|||
import { foo } from './foo'; |
|||
|
|||
var f; |
|||
f = foo; |
|||
f.wasMutated = true; |
|||
|
|||
export var bar = 'whatever'; |
@ -0,0 +1 @@ |
|||
export var foo = {}; |
@ -0,0 +1,4 @@ |
|||
import { foo } from './foo'; |
|||
import { bar } from './bar'; |
|||
|
|||
assert.ok( foo.wasMutated ); |
Loading…
Reference in new issue