mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
8 changed files with 62 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'do not remove non an empty block statement' |
|||
}; |
@ -0,0 +1,9 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
console.log( 1 ); |
|||
{ |
|||
var tmp = 10; |
|||
} |
|||
console.log( tmp ); |
|||
|
|||
}); |
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
console.log( 1 ); |
|||
{ |
|||
var tmp = 10; |
|||
} |
|||
console.log( tmp ); |
@ -0,0 +1,5 @@ |
|||
console.log( 1 ); |
|||
{ |
|||
var tmp = 10; |
|||
} |
|||
console.log( tmp ); |
@ -0,0 +1,10 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
console.log( 1 ); |
|||
{ |
|||
var tmp = 10; |
|||
} |
|||
console.log( tmp ); |
|||
|
|||
}()); |
@ -0,0 +1,13 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, (function () { 'use strict'; |
|||
|
|||
console.log( 1 ); |
|||
{ |
|||
var tmp = 10; |
|||
} |
|||
console.log( tmp ); |
|||
|
|||
}))); |
@ -0,0 +1,5 @@ |
|||
console.log( 1 ); |
|||
{ |
|||
var tmp = 10; |
|||
} |
|||
console.log( tmp ); |
Loading…
Reference in new issue