mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
10 changed files with 171 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'does not include unused inner functions and classes' |
|||
}; |
@ -0,0 +1,25 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function bar () { console.log("outer bar"); } |
|||
|
|||
|
|||
|
|||
function Baz() { |
|||
function bar () { console.log("inner bar"); } |
|||
function bog () { console.log("inner bog"); } |
|||
return bar(), bog; |
|||
} |
|||
|
|||
bar(); |
|||
var f = Baz(); |
|||
f(); |
|||
|
|||
function getClass () { |
|||
class MyClass {} |
|||
return MyClass; |
|||
|
|||
} |
|||
|
|||
console.log( getClass().name ); |
|||
|
|||
}); |
@ -0,0 +1,23 @@ |
|||
'use strict'; |
|||
|
|||
function bar () { console.log("outer bar"); } |
|||
|
|||
|
|||
|
|||
function Baz() { |
|||
function bar () { console.log("inner bar"); } |
|||
function bog () { console.log("inner bog"); } |
|||
return bar(), bog; |
|||
} |
|||
|
|||
bar(); |
|||
var f = Baz(); |
|||
f(); |
|||
|
|||
function getClass () { |
|||
class MyClass {} |
|||
return MyClass; |
|||
|
|||
} |
|||
|
|||
console.log( getClass().name ); |
@ -0,0 +1,21 @@ |
|||
function bar () { console.log("outer bar"); } |
|||
|
|||
|
|||
|
|||
function Baz() { |
|||
function bar () { console.log("inner bar"); } |
|||
function bog () { console.log("inner bog"); } |
|||
return bar(), bog; |
|||
} |
|||
|
|||
bar(); |
|||
var f = Baz(); |
|||
f(); |
|||
|
|||
function getClass () { |
|||
class MyClass {} |
|||
return MyClass; |
|||
|
|||
} |
|||
|
|||
console.log( getClass().name ); |
@ -0,0 +1,26 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
function bar () { console.log("outer bar"); } |
|||
|
|||
|
|||
|
|||
function Baz() { |
|||
function bar () { console.log("inner bar"); } |
|||
function bog () { console.log("inner bog"); } |
|||
return bar(), bog; |
|||
} |
|||
|
|||
bar(); |
|||
var f = Baz(); |
|||
f(); |
|||
|
|||
function getClass () { |
|||
class MyClass {} |
|||
return MyClass; |
|||
|
|||
} |
|||
|
|||
console.log( getClass().name ); |
|||
|
|||
}()); |
@ -0,0 +1,29 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, (function () { 'use strict'; |
|||
|
|||
function bar () { console.log("outer bar"); } |
|||
|
|||
|
|||
|
|||
function Baz() { |
|||
function bar () { console.log("inner bar"); } |
|||
function bog () { console.log("inner bog"); } |
|||
return bar(), bog; |
|||
} |
|||
|
|||
bar(); |
|||
var f = Baz(); |
|||
f(); |
|||
|
|||
function getClass () { |
|||
class MyClass {} |
|||
return MyClass; |
|||
|
|||
} |
|||
|
|||
console.log( getClass().name ); |
|||
|
|||
}))); |
@ -0,0 +1,17 @@ |
|||
import { foo, bar, bog, boo, baz } from './stuff'; |
|||
|
|||
bar(); |
|||
var f = baz(); |
|||
f(); |
|||
|
|||
function getClass () { |
|||
class MyClass {} |
|||
class UnusedInnerClass1 {} |
|||
return MyClass; |
|||
class UnusedInnerClass2 {} |
|||
} |
|||
|
|||
class UnusedClass {} |
|||
|
|||
console.log( getClass().name ); |
|||
|
@ -0,0 +1,15 @@ |
|||
export function foo () { console.log("outer foo"); } |
|||
export function bar () { console.log("outer bar"); } |
|||
export function bog () { console.log("outer bog"); } |
|||
export function boo () { console.log("outer boo"); } |
|||
|
|||
function Baz() { |
|||
function foo () { console.log("inner foo"); } |
|||
function bar () { console.log("inner bar"); } |
|||
function bog () { console.log("inner bog"); } |
|||
function boo () { console.log("inner boo"); } |
|||
|
|||
return bar(), bog; |
|||
} |
|||
|
|||
export { Baz as baz }; |
Loading…
Reference in new issue