mirror of https://github.com/lukechilds/rollup.git
Brian Donovan
9 years ago
9 changed files with 53 additions and 2 deletions
@ -0,0 +1,3 @@ |
|||||
|
module.exports = { |
||||
|
description: 'whitespace around the "." in member expressions does not mess up renaming' |
||||
|
}; |
@ -0,0 +1,9 @@ |
|||||
|
define(function () { 'use strict'; |
||||
|
|
||||
|
function yar() { |
||||
|
console.log('yar?'); |
||||
|
} |
||||
|
|
||||
|
yar(); |
||||
|
|
||||
|
}); |
@ -0,0 +1,7 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
function yar() { |
||||
|
console.log('yar?'); |
||||
|
} |
||||
|
|
||||
|
yar(); |
@ -0,0 +1,5 @@ |
|||||
|
function yar() { |
||||
|
console.log('yar?'); |
||||
|
} |
||||
|
|
||||
|
yar(); |
@ -0,0 +1,10 @@ |
|||||
|
(function () { |
||||
|
'use strict'; |
||||
|
|
||||
|
function yar() { |
||||
|
console.log('yar?'); |
||||
|
} |
||||
|
|
||||
|
yar(); |
||||
|
|
||||
|
}()); |
@ -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'; |
||||
|
|
||||
|
function yar() { |
||||
|
console.log('yar?'); |
||||
|
} |
||||
|
|
||||
|
yar(); |
||||
|
|
||||
|
})); |
@ -0,0 +1,3 @@ |
|||||
|
export function yar() { |
||||
|
console.log('yar?'); |
||||
|
} |
@ -0,0 +1,2 @@ |
|||||
|
import * as foo from './foo.js'; |
||||
|
foo .yar(); |
Loading…
Reference in new issue