mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
8 changed files with 88 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'it does static lookup optimization of internal namespaces, coping with multiple namespaces in one function' |
|||
}; |
@ -0,0 +1,15 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function foo() { |
|||
} |
|||
|
|||
function a() { |
|||
foo(); |
|||
foo(); |
|||
var a; |
|||
if (a.b) { |
|||
} |
|||
} |
|||
a(); |
|||
|
|||
}); |
@ -0,0 +1,13 @@ |
|||
'use strict'; |
|||
|
|||
function foo() { |
|||
} |
|||
|
|||
function a() { |
|||
foo(); |
|||
foo(); |
|||
var a; |
|||
if (a.b) { |
|||
} |
|||
} |
|||
a(); |
@ -0,0 +1,11 @@ |
|||
function foo() { |
|||
} |
|||
|
|||
function a() { |
|||
foo(); |
|||
foo(); |
|||
var a; |
|||
if (a.b) { |
|||
} |
|||
} |
|||
a(); |
@ -0,0 +1,15 @@ |
|||
(function () { 'use strict'; |
|||
|
|||
function foo() { |
|||
} |
|||
|
|||
function a() { |
|||
foo(); |
|||
foo(); |
|||
var a; |
|||
if (a.b) { |
|||
} |
|||
} |
|||
a(); |
|||
|
|||
})(); |
@ -0,0 +1,19 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
function foo() { |
|||
} |
|||
|
|||
function a() { |
|||
foo(); |
|||
foo(); |
|||
var a; |
|||
if (a.b) { |
|||
} |
|||
} |
|||
a(); |
|||
|
|||
})); |
@ -0,0 +1,2 @@ |
|||
export function foo() { |
|||
}; |
@ -0,0 +1,10 @@ |
|||
import * as foo from './foo'; |
|||
|
|||
function a() { |
|||
foo.foo(); |
|||
foo.foo(); |
|||
var a; |
|||
if (a.b) { |
|||
} |
|||
} |
|||
a(); |
Loading…
Reference in new issue