mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
9 changed files with 213 additions and 7 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'statements that modify definitions within unused functions are excluded' |
|||
}; |
@ -0,0 +1,28 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
|||
|
|||
}); |
@ -0,0 +1,26 @@ |
|||
'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
@ -0,0 +1,24 @@ |
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
@ -0,0 +1,28 @@ |
|||
(function () { 'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
|||
|
|||
})(); |
@ -0,0 +1,32 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
console.log( foo ); |
|||
|
|||
})); |
@ -0,0 +1,37 @@ |
|||
var foo = {}; |
|||
|
|||
mutate1( foo ); |
|||
|
|||
// should be included
|
|||
[ 'a', 'b', 'c' ].forEach( function ( letter, i ) { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
[ 'd', 'e', 'f' ].forEach( ( letter, i ) => { |
|||
foo[ letter ] = i; |
|||
}); |
|||
|
|||
function mutate1 () { |
|||
foo.mutated = 1; |
|||
} |
|||
|
|||
({ |
|||
mutate2: function () { |
|||
foo.mutated = 2; |
|||
} |
|||
}).mutate2(); |
|||
|
|||
// should be excluded
|
|||
var mutate2 = function () { |
|||
foo.mutated = 2; |
|||
} |
|||
|
|||
function unused1 () { |
|||
foo.wat = 'nope'; |
|||
} |
|||
|
|||
function unused2 () { |
|||
mutate1( foo ); |
|||
} |
|||
|
|||
export default foo; |
@ -0,0 +1,2 @@ |
|||
import foo from './foo'; |
|||
console.log( foo ); |
Loading…
Reference in new issue