esperanto-source 0.6.34 → 0.6.34.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0bd2e0fafcd3cd4249ae16bc134725936890f37
4
- data.tar.gz: d9b4db58f14d64c6b06603592c905afc751cbdc2
3
+ metadata.gz: c80d326f36ea02656ae51fdb93af783f6c05f182
4
+ data.tar.gz: e4cf0bb2a55cd677418497d10f45e5cee6ca0a82
5
5
  SHA512:
6
- metadata.gz: 9aead4edb4ba8a2e3f16e72989328c88b1a4773085f56995a22da370602d6c31759f35c47446f1fdd99a2bcf5eb76ba8c64d3da6edb8f88e81d6c3eb4499bc81
7
- data.tar.gz: fe1477afdfe8f6474739aeabec3d366f35d5844d774ada097c2b8af198d539979ab61c461090a8ffe7e27d888d58e3052e7502ab2a48901b7887ebf02eacf430
6
+ metadata.gz: 4de81b2a68d5a09b1cfd7432ef7ce5aa6a9d496e6c3131b642b38889408958f95d398fbbd3a0d594b475caec70e018541615d0746dc4d67125b9aaa6795500c2
7
+ data.tar.gz: 48ea237ba72a40119592355924554e48e989fbd0e5603e5a40c43c5c278ff4868bbf607db21f78920ada5e1b9a9b464ec99e598bda0f8a320e84e854fefd109b
@@ -1,5 +1,5 @@
1
1
  module Esperanto
2
2
  module Source
3
- VERSION = '0.6.34'
3
+ VERSION = '0.6.34.1'
4
4
  end
5
5
  end
@@ -0,0 +1 @@
1
+ {"version":3,"file":"esperanto.browser.js","sources":["../../../../src/utils/hasNamedImports.js","../../../../src/utils/hasNamedExports.js","../../../../node_modules/magic-string/src/utils/btoa.js","../../../../node_modules/magic-string/src/SourceMap/index.js","../../../../node_modules/magic-string/src/utils/getRelativePath.js","../../../../node_modules/magic-string/src/Bundle/index.js","../../../../node_modules/magic-string/src/MagicString/guessIndent.js","../../../../node_modules/magic-string/node_modules/vlq/src/vlq.js","../../../../node_modules/magic-string/src/utils/encode.js","../../../../node_modules/magic-string/src/MagicString/encodeMappings.js","../../../../node_modules/magic-string/src/MagicString/index.js","../../../../src/utils/ast/walk.js","../../../../src/utils/mappers.js","../../../../src/utils/ast/annotate.js","../../../../src/utils/ast/findImportsAndExports.js","../../../../src/utils/hasOwnProp.js","../../../../src/utils/ast/getUnscopedNames.js","../../../../src/utils/disallowConflictingImports.js","../../../../src/utils/sanitize.js","../../../../src/standalone/getModule.js","../../../../src/standalone/builders/defaultsMode/utils/transformExportDeclaration.js","../../../../src/utils/packageResult.js","../../../../src/utils/resolveId.js","../../../../src/utils/amd/getImportSummary.js","../../../../src/utils/amd/processName.js","../../../../src/utils/amd/processIds.js","../../../../src/utils/amd/amdIntro.js","../../../../src/standalone/builders/defaultsMode/amd.js","../../../../src/standalone/builders/defaultsMode/cjs.js","../../../../src/utils/umd/umdIntro.js","../../../../src/utils/EsperantoError.js","../../../../src/utils/umd/requireName.js","../../../../src/standalone/builders/defaultsMode/umd.js","../../../../src/standalone/builders/defaultsMode/index.js","../../../../src/standalone/builders/strictMode/utils/gatherImports.js","../../../../src/standalone/builders/strictMode/utils/getExportNames.js","../../../../src/utils/getReadOnlyIdentifiers.js","../../../../src/utils/ast/disallowIllegalReassignment.js","../../../../src/utils/ast/replaceIdentifiers.js","../../../../src/utils/ast/rewriteExportAssignments.js","../../../../src/utils/ast/traverse.js","../../../../src/standalone/builders/strictMode/utils/transformBody.js","../../../../src/standalone/builders/strictMode/amd.js","../../../../src/standalone/builders/strictMode/cjs.js","../../../../src/standalone/builders/strictMode/umd.js","../../../../src/standalone/builders/strictMode/index.js","../../../../src/standalone/builders/index.js","../../../../src/bundler/builders/defaultsMode/amd.js","../../../../src/bundler/builders/defaultsMode/cjs.js","../../../../src/bundler/builders/defaultsMode/umd.js","../../../../src/bundler/builders/defaultsMode/index.js","../../../../src/bundler/builders/strictMode/utils/getExportBlock.js","../../../../src/bundler/builders/strictMode/amd.js","../../../../src/bundler/builders/strictMode/cjs.js","../../../../src/bundler/builders/strictMode/umd.js","../../../../src/bundler/builders/strictMode/index.js","../../../../src/bundler/builders/index.js","../../../../src/bundler/builders/concat.js","../../../../src/esperanto.js"],"sourcesContent":["export default function hasNamedImports ( mod ) {\n\tvar i = mod.imports.length;\n\n\twhile ( i-- ) {\n\t\tif ( mod.imports[i].isNamed ) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n","export default function hasNamedExports ( mod ) {\n\tvar i = mod.exports.length;\n\n\twhile ( i-- ) {\n\t\tif ( !mod.exports[i].isDefault ) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n","var _btoa;\n\nif ( typeof window !== 'undefined' && typeof window.btoa === 'function' ) {\n\t_btoa = window.btoa;\n} else if ( typeof Buffer === 'function' ) {\n\t_btoa = function ( str ) {\n\t\treturn new Buffer( str ).toString( 'base64' );\n\t};\n} else {\n\tthrow new Error( 'Unsupported environment: `window.btoa` or `Buffer` should be supported.' );\n}\n\nexport default _btoa;","import btoa from '../utils/btoa';\n\nvar SourceMap = function ( properties ) {\n\tthis.version = 3;\n\n\tthis.file = properties.file;\n\tthis.sources = properties.sources;\n\tthis.sourcesContent = properties.sourcesContent;\n\tthis.names = properties.names;\n\tthis.mappings = properties.mappings;\n};\n\nSourceMap.prototype = {\n\ttoString: function () {\n\t\treturn JSON.stringify( this );\n\t},\n\n\ttoUrl: function () {\n\t\treturn 'data:application/json;charset=utf-8;base64,' + btoa( this.toString() );\n\t}\n};\n\nexport default SourceMap;","export default function getRelativePath ( from, to ) {\n\tvar fromParts, toParts, i;\n\n\tfromParts = from.split( /[\\/\\\\]/ );\n\ttoParts = to.split( /[\\/\\\\]/ );\n\n\tfromParts.pop(); // get dirname\n\n\twhile ( fromParts[0] === toParts[0] ) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif ( fromParts.length ) {\n\t\ti = fromParts.length;\n\t\twhile ( i-- ) fromParts[i] = '..';\n\t}\n\n\treturn fromParts.concat( toParts ).join( '/' );\n}\n","import SourceMap from '../SourceMap';\nimport getRelativePath from '../utils/getRelativePath';\n\nvar Bundle = function ( options ) {\n\toptions = options || {};\n\n\tthis.intro = options.intro || '';\n\tthis.outro = options.outro || '';\n\tthis.separator = 'separator' in options ? options.separator : '\\n';\n\n\tthis.sources = [];\n};\n\nBundle.prototype = {\n\taddSource: function ( source ) {\n\t\tif ( typeof source !== 'object' || !source.content ) {\n\t\t\tthrow new Error( 'bundle.addSource() takes an object with a `content` property, which should be an instance of MagicString, and an optional `filename`' );\n\t\t}\n\n\t\tthis.sources.push( source );\n\t\treturn this;\n\t},\n\n\tappend: function ( str ) {\n\t\tthis.outro += str;\n\t\treturn this;\n\t},\n\n\tclone: function () {\n\t\tvar bundle = new Bundle({\n\t\t\tintro: this.intro,\n\t\t\toutro: this.outro,\n\t\t\tseparator: this.separator\n\t\t});\n\n\t\tthis.sources.forEach( function ( source ) {\n\t\t\tbundle.addSource({\n\t\t\t\tfilename: source.filename,\n\t\t\t\tcontent: source.content.clone()\n\t\t\t});\n\t\t});\n\n\t\treturn bundle;\n\t},\n\n\tgenerateMap: function ( options ) {\n\t\tvar offsets = {}, encoded, encodingSeparator;\n\n\t\tencodingSeparator = getSemis( this.separator );\n\n\t\tencoded = (\n\t\t\tgetSemis( this.intro ) +\n\t\t\tthis.sources.map( function ( source, sourceIndex) {\n\t\t\t\treturn source.content.getMappings( options.hires, sourceIndex, offsets );\n\t\t\t}).join( encodingSeparator ) +\n\t\t\tgetSemis( this.outro )\n\t\t);\n\n\t\treturn new SourceMap({\n\t\t\tfile: ( options.file ? options.file.split( /[\\/\\\\]/ ).pop() : null ),\n\t\t\tsources: this.sources.map( function ( source ) {\n\t\t\t\treturn options.file ? getRelativePath( options.file, source.filename ) : source.filename;\n\t\t\t}),\n\t\t\tsourcesContent: this.sources.map( function ( source ) {\n\t\t\t\treturn options.includeContent ? source.content.original : null;\n\t\t\t}),\n\t\t\tnames: [],\n\t\t\tmappings: encoded\n\t\t});\n\t},\n\n\tgetIndentString: function () {\n\t\tvar indentStringCounts = {};\n\n\t\tthis.sources.forEach( function ( source ) {\n\t\t\tvar indentStr = source.content.indentStr;\n\n\t\t\tif ( indentStr === null ) return;\n\n\t\t\tif ( !indentStringCounts[ indentStr ] ) indentStringCounts[ indentStr ] = 0;\n\t\t\tindentStringCounts[ indentStr ] += 1;\n\t\t});\n\n\t\treturn ( Object.keys( indentStringCounts ).sort( function ( a, b ) {\n\t\t\treturn indentStringCounts[a] - indentStringCounts[b];\n\t\t})[0] ) || '\\t';\n\t},\n\n\tindent: function ( indentStr ) {\n\t\tif ( !indentStr ) {\n\t\t\tindentStr = this.getIndentString();\n\t\t}\n\n\t\tthis.sources.forEach( function ( source ) {\n\t\t\tsource.content.indent( indentStr, { exclude: source.indentExclusionRanges });\n\t\t});\n\n\t\tthis.intro = this.intro.replace( /^[^\\n]/gm, indentStr + '$&' );\n\t\tthis.outro = this.outro.replace( /^[^\\n]/gm, indentStr + '$&' );\n\n\t\treturn this;\n\t},\n\n\tprepend: function ( str ) {\n\t\tthis.intro = str + this.intro;\n\t\treturn this;\n\t},\n\n\ttoString: function () {\n\t\treturn this.intro + this.sources.map( stringify ).join( this.separator ) + this.outro;\n\t},\n\n\ttrimLines: function () {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t},\n\n\ttrim: function (charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t},\n\n\ttrimStart: function (charType) {\n\t\tvar rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\t\tthis.intro = this.intro.replace( rx, '' );\n\n\t\tif ( !this.intro ) {\n\t\t\tvar source;\n\t\t\tvar i = 0;\n\t\t\tdo {\n\t\t\t\tsource = this.sources[i];\n\n\t\t\t\tif ( !source ) {\n\t\t\t\t\tthis.outro = this.outro.replace( rx, '' );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tsource.content.trimStart();\n\t\t\t\ti += 1;\n\t\t\t} while ( source.content.str === '' );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttrimEnd: function(charType) {\n\t\tvar rx = new RegExp((charType || '\\\\s') + '+$');\n\t\tthis.outro = this.outro.replace( rx, '' );\n\n\t\tif ( !this.outro ) {\n\t\t\tvar source;\n\t\t\tvar i = this.sources.length - 1;\n\t\t\tdo {\n\t\t\t\tsource = this.sources[i];\n\n\t\t\t\tif ( !source ) {\n\t\t\t\t\tthis.intro = this.intro.replace( rx, '' );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tsource.content.trimEnd(charType);\n\t\t\t\ti -= 1;\n\t\t\t} while ( source.content.str === '' );\n\t\t}\n\n\t\treturn this;\n\t}\n};\n\nexport default Bundle;\n\nfunction stringify ( source ) {\n\treturn source.content.toString();\n}\n\nfunction getSemis ( str ) {\n\treturn new Array( str.split( '\\n' ).length ).join( ';' );\n}\n","export default function guessIndent ( code ) {\n\tvar lines, tabbed, spaced, min;\n\n\tlines = code.split( '\\n' );\n\n\ttabbed = lines.filter( function ( line ) {\n\t\treturn /^\\t+/.test( line );\n\t});\n\n\tspaced = lines.filter( function ( line ) {\n\t\treturn /^ {2,}/.test( line );\n\t});\n\n\tif ( tabbed.length === 0 && spaced.length === 0 ) {\n\t\treturn null;\n\t}\n\n\t// More lines tabbed than spaced? Assume tabs, and\n\t// default to tabs in the case of a tie (or nothing\n\t// to go on)\n\tif ( tabbed.length >= spaced.length ) {\n\t\treturn '\\t';\n\t}\n\n\t// Otherwise, we need to guess the multiple\n\tmin = spaced.reduce( function ( previous, current ) {\n\t\tvar numSpaces = /^ +/.exec( current )[0].length;\n\t\treturn Math.min( numSpaces, previous );\n\t}, Infinity );\n\n\treturn new Array( min + 1 ).join( ' ' );\n}\n","var charToInteger = {};\nvar integerToChar = {};\n\n'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='.split( '' ).forEach( function ( char, i ) {\n\tcharToInteger[ char ] = i;\n\tintegerToChar[ i ] = char;\n});\n\nexport function decode ( string ) {\n\tvar result = [],\n\t\tlen = string.length,\n\t\ti,\n\t\thasContinuationBit,\n\t\tshift = 0,\n\t\tvalue = 0,\n\t\tinteger,\n\t\tshouldNegate;\n\n\tfor ( i = 0; i < len; i += 1 ) {\n\t\tinteger = charToInteger[ string[i] ];\n\n\t\tif ( integer === undefined ) {\n\t\t\tthrow new Error( 'Invalid character (' + string[i] + ')' );\n\t\t}\n\n\t\thasContinuationBit = integer & 32;\n\n\t\tinteger &= 31;\n\t\tvalue += integer << shift;\n\n\t\tif ( hasContinuationBit ) {\n\t\t\tshift += 5;\n\t\t} else {\n\t\t\tshouldNegate = value & 1;\n\t\t\tvalue >>= 1;\n\n\t\t\tresult.push( shouldNegate ? -value : value );\n\n\t\t\t// reset\n\t\t\tvalue = shift = 0;\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function encode ( value ) {\n\tvar result, i;\n\n\tif ( typeof value === 'number' ) {\n\t\tresult = encodeInteger( value );\n\t} else {\n\t\tresult = '';\n\t\tfor ( i = 0; i < value.length; i += 1 ) {\n\t\t\tresult += encodeInteger( value[i] );\n\t\t}\n\t}\n\n\treturn result;\n}\n\nfunction encodeInteger ( num ) {\n\tvar result = '', clamped;\n\n\tif ( num < 0 ) {\n\t\tnum = ( -num << 1 ) | 1;\n\t} else {\n\t\tnum <<= 1;\n\t}\n\n\tdo {\n\t\tclamped = num & 31;\n\t\tnum >>= 5;\n\n\t\tif ( num > 0 ) {\n\t\t\tclamped |= 32;\n\t\t}\n\n\t\tresult += integerToChar[ clamped ];\n\t} while ( num > 0 );\n\n\treturn result;\n}\n","import { encode } from 'vlq';\nexport default encode;","import encode from '../utils/encode';\n\nexport default function encodeMappings ( original, str, mappings, hires, sourcemapLocations, sourceIndex, offsets ) {\n\tvar lineStart,\n\t\tlocations,\n\t\tlines,\n\t\tencoded,\n\t\tinverseMappings,\n\t\tcharOffset = 0,\n\t\tfirstSegment = true;\n\n\t// store locations, for fast lookup\n\tlineStart = 0;\n\tlocations = original.split( '\\n' ).map( function ( line ) {\n\t\tvar start = lineStart;\n\t\tlineStart += line.length + 1; // +1 for the newline\n\n\t\treturn start;\n\t});\n\n\tinverseMappings = invert( str, mappings );\n\n\tlines = str.split( '\\n' ).map( function ( line ) {\n\t\tvar segments, len, char, origin, lastOrigin, i, location;\n\n\t\tsegments = [];\n\n\t\tlen = line.length;\n\t\tfor ( i = 0; i < len; i += 1 ) {\n\t\t\tchar = i + charOffset;\n\t\t\torigin = inverseMappings[ char ];\n\n\t\t\tif ( !~origin ) {\n\t\t\t\tif ( !~lastOrigin ) {\n\t\t\t\t\t// do nothing\n\t\t\t\t} else {\n\t\t\t\t\tsegments.push({\n\t\t\t\t\t\tgeneratedCodeColumn: i,\n\t\t\t\t\t\tsourceIndex: sourceIndex,\n\t\t\t\t\t\tsourceCodeLine: 0,\n\t\t\t\t\t\tsourceCodeColumn: 0\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\telse {\n\t\t\t\tif ( !hires && ( origin === lastOrigin + 1 ) && !sourcemapLocations[ origin ] ) {\n\t\t\t\t\t// do nothing\n\t\t\t\t} else {\n\t\t\t\t\tlocation = getLocation( locations, origin );\n\n\t\t\t\t\tsegments.push({\n\t\t\t\t\t\tgeneratedCodeColumn: i,\n\t\t\t\t\t\tsourceIndex: sourceIndex,\n\t\t\t\t\t\tsourceCodeLine: location.line,\n\t\t\t\t\t\tsourceCodeColumn: location.column\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tlastOrigin = origin;\n\t\t}\n\n\t\tcharOffset += line.length + 1;\n\t\treturn segments;\n\t});\n\n\toffsets = offsets || {};\n\n\toffsets.sourceIndex = offsets.sourceIndex || 0;\n\toffsets.sourceCodeLine = offsets.sourceCodeLine || 0;\n\toffsets.sourceCodeColumn = offsets.sourceCodeColumn || 0;\n\n\tencoded = lines.map( function ( segments ) {\n\t\tvar generatedCodeColumn = 0;\n\n\t\treturn segments.map( function ( segment ) {\n\t\t\tvar arr = [\n\t\t\t\tsegment.generatedCodeColumn - generatedCodeColumn,\n\t\t\t\tsegment.sourceIndex - offsets.sourceIndex,\n\t\t\t\tsegment.sourceCodeLine - offsets.sourceCodeLine,\n\t\t\t\tsegment.sourceCodeColumn - offsets.sourceCodeColumn\n\t\t\t];\n\n\t\t\tgeneratedCodeColumn = segment.generatedCodeColumn;\n\t\t\toffsets.sourceIndex = segment.sourceIndex;\n\t\t\toffsets.sourceCodeLine = segment.sourceCodeLine;\n\t\t\toffsets.sourceCodeColumn = segment.sourceCodeColumn;\n\n\t\t\tfirstSegment = false;\n\n\t\t\treturn encode( arr );\n\t\t}).join( ',' );\n\t}).join( ';' );\n\n\treturn encoded;\n}\n\n\nfunction invert ( str, mappings ) {\n\tvar inverted = new Uint32Array( str.length ), i;\n\n\t// initialise everything to -1\n\ti = str.length;\n\twhile ( i-- ) {\n\t\tinverted[i] = -1;\n\t}\n\n\t// then apply the actual mappings\n\ti = mappings.length;\n\twhile ( i-- ) {\n\t\tif ( ~mappings[i] ) {\n\t\t\tinverted[ mappings[i] ] = i;\n\t\t}\n\t}\n\n\treturn inverted;\n}\n\nfunction getLocation ( locations, char ) {\n\tvar i;\n\n\ti = locations.length;\n\twhile ( i-- ) {\n\t\tif ( locations[i] <= char ) {\n\t\t\treturn {\n\t\t\t\tline: i,\n\t\t\t\tcolumn: char - locations[i]\n\t\t\t};\n\t\t}\n\t}\n\n\tthrow new Error( 'Character out of bounds' );\n}\n","import Bundle from '../Bundle';\nimport SourceMap from '../SourceMap';\nimport guessIndent from './guessIndent';\nimport encodeMappings from './encodeMappings';\nimport getRelativePath from '../utils/getRelativePath';\n\nvar MagicString = function ( string ) {\n\tthis.original = this.str = string;\n\tthis.mappings = initMappings( string.length );\n\n\tthis.sourcemapLocations = {};\n\n\tthis.indentStr = guessIndent( string );\n};\n\nMagicString.prototype = {\n\taddSourcemapLocation: function ( char ) {\n\t\tthis.sourcemapLocations[ char ] = true;\n\t},\n\n\tappend: function ( content ) {\n\t\tif ( typeof content !== 'string' ) {\n\t\t\tthrow new TypeError( 'appended content must be a string' );\n\t\t}\n\n\t\tthis.str += content;\n\t\treturn this;\n\t},\n\n\tclone: function () {\n\t\tvar clone, i;\n\n\t\tclone = new MagicString( this.original );\n\t\tclone.str = this.str;\n\n\t\ti = clone.mappings.length;\n\t\twhile ( i-- ) {\n\t\t\tclone.mappings[i] = this.mappings[i];\n\t\t}\n\n\t\treturn clone;\n\t},\n\n\tgenerateMap: function ( options ) {\n\t\toptions = options || {};\n\n\t\treturn new SourceMap({\n\t\t\tfile: ( options.file ? options.file.split( /[\\/\\\\]/ ).pop() : null ),\n\t\t\tsources: [ options.source ? getRelativePath( options.file || '', options.source ) : null ],\n\t\t\tsourcesContent: options.includeContent ? [ this.original ] : [ null ],\n\t\t\tnames: [],\n\t\t\tmappings: this.getMappings( options.hires, 0 )\n\t\t});\n\t},\n\n\tgetIndentString: function () {\n\t\treturn this.indentStr === null ? '\\t' : this.indentStr;\n\t},\n\n\tgetMappings: function ( hires, sourceIndex, offsets ) {\n\t\treturn encodeMappings( this.original, this.str, this.mappings, hires, this.sourcemapLocations, sourceIndex, offsets );\n\t},\n\n\tindent: function ( indentStr, options ) {\n\t\tvar self = this,\n\t\t\tmappings = this.mappings,\n\t\t\treverseMappings = reverse( mappings, this.str.length ),\n\t\t\tpattern = /^[^\\r\\n]/gm,\n\t\t\tmatch,\n\t\t\tinserts = [],\n\t\t\tadjustments,\n\t\t\texclusions,\n\t\t\tlastEnd,\n\t\t\ti;\n\n\t\tif ( typeof indentStr === 'object' ) {\n\t\t\toptions = indentStr;\n\t\t\tindentStr = undefined;\n\t\t}\n\n\t\tindentStr = indentStr !== undefined ? indentStr : ( this.indentStr || '\\t' );\n\n\t\toptions = options || {};\n\n\t\t// Process exclusion ranges\n\t\tif ( options.exclude ) {\n\t\t\texclusions = typeof options.exclude[0] === 'number' ? [ options.exclude ] : options.exclude;\n\n\t\t\texclusions = exclusions.map( function ( range ) {\n\t\t\t\tvar rangeStart, rangeEnd;\n\n\t\t\t\trangeStart = self.locate( range[0] );\n\t\t\t\trangeEnd = self.locate( range[1] );\n\n\t\t\t\tif ( rangeStart === null || rangeEnd === null ) {\n\t\t\t\t\tthrow new Error( 'Cannot use indices of replaced characters as exclusion ranges' );\n\t\t\t\t}\n\n\t\t\t\treturn [ rangeStart, rangeEnd ];\n\t\t\t});\n\n\t\t\texclusions.sort( function ( a, b ) {\n\t\t\t\treturn a[0] - b[0];\n\t\t\t});\n\n\t\t\t// check for overlaps\n\t\t\tlastEnd = -1;\n\t\t\texclusions.forEach( function ( range ) {\n\t\t\t\tif ( range[0] < lastEnd ) {\n\t\t\t\t\tthrow new Error( 'Exclusion ranges cannot overlap' );\n\t\t\t\t}\n\n\t\t\t\tlastEnd = range[1];\n\t\t\t});\n\t\t}\n\n\t\tif ( !exclusions ) {\n\t\t\twhile ( match = pattern.exec( this.str ) ) {\n\t\t\t\tinserts.push( match.index );\n\t\t\t}\n\n\t\t\tthis.str = this.str.replace( pattern, indentStr + '$&' );\n\t\t} else {\n\t\t\twhile ( match = pattern.exec( this.str ) ) {\n\t\t\t\tif ( !isExcluded( match.index - 1 ) ) {\n\t\t\t\t\tinserts.push( match.index );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tthis.str = this.str.replace( pattern, function ( match, index ) {\n\t\t\t\treturn isExcluded( index - 1 ) ? match : indentStr + match;\n\t\t\t});\n\t\t}\n\n\t\tadjustments = inserts.map( function ( index ) {\n\t\t\tvar origin;\n\n\t\t\tdo {\n\t\t\t\torigin = reverseMappings[ index++ ];\n\t\t\t} while ( !~origin && index < self.str.length );\n\n\t\t\treturn origin;\n\t\t});\n\n\t\ti = adjustments.length;\n\t\tlastEnd = this.mappings.length;\n\t\twhile ( i-- ) {\n\t\t\tadjust( self.mappings, adjustments[i], lastEnd, ( ( i + 1 ) * indentStr.length ) );\n\t\t\tlastEnd = adjustments[i];\n\t\t}\n\n\t\treturn this;\n\n\t\tfunction isExcluded ( index ) {\n\t\t\tvar i = exclusions.length, range;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\trange = exclusions[i];\n\n\t\t\t\tif ( range[1] < index ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\tif ( range[0] <= index ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tinsert: function ( index, content ) {\n\t\tif ( typeof content !== 'string' ) {\n\t\t\tthrow new TypeError( 'inserted content must be a string' );\n\t\t}\n\n\t\tif ( index === this.original.length ) {\n\t\t\tthis.append( content );\n\t\t} else {\n\t\t\tvar mapped = this.locate(index);\n\n\t\t\tif ( mapped === null ) {\n\t\t\t\tthrow new Error( 'Cannot insert at replaced character index: ' + index );\n\t\t\t}\n\n\t\t\tthis.str = this.str.substr( 0, mapped ) + content + this.str.substr( mapped );\n\t\t\tadjust( this.mappings, index, this.mappings.length, content.length );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t// get current location of character in original string\n\tlocate: function ( character ) {\n\t\tvar loc;\n\n\t\tif ( character < 0 || character > this.mappings.length ) {\n\t\t\tthrow new Error( 'Character is out of bounds' );\n\t\t}\n\n\t\tloc = this.mappings[ character ];\n\t\treturn ~loc ? loc : null;\n\t},\n\n\tlocateOrigin: function ( character ) {\n\t\tvar i;\n\n\t\tif ( character < 0 || character >= this.str.length ) {\n\t\t\tthrow new Error( 'Character is out of bounds' );\n\t\t}\n\n\t\ti = this.mappings.length;\n\t\twhile ( i-- ) {\n\t\t\tif ( this.mappings[i] === character ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\n\t\treturn null;\n\t},\n\n\tprepend: function ( content ) {\n\t\tthis.str = content + this.str;\n\t\tadjust( this.mappings, 0, this.mappings.length, content.length );\n\t\treturn this;\n\t},\n\n\tremove: function ( start, end ) {\n\t\tvar loc, d, i, currentStart, currentEnd;\n\n\t\tif ( start < 0 || end > this.mappings.length ) {\n\t\t\tthrow new Error( 'Character is out of bounds' );\n\t\t}\n\n\t\td = 0;\n\t\tcurrentStart = -1;\n\t\tcurrentEnd = -1;\n\t\tfor ( i = start; i < end; i += 1 ) {\n\t\t\tloc = this.mappings[i];\n\n\t\t\tif ( loc !== -1 ) {\n\t\t\t\tif ( !~currentStart ) {\n\t\t\t\t\tcurrentStart = loc;\n\t\t\t\t}\n\n\t\t\t\tcurrentEnd = loc + 1;\n\n\t\t\t\tthis.mappings[i] = -1;\n\t\t\t\td += 1;\n\t\t\t}\n\t\t}\n\n\t\tthis.str = this.str.slice( 0, currentStart ) + this.str.slice( currentEnd );\n\n\t\tadjust( this.mappings, end, this.mappings.length, -d );\n\t\treturn this;\n\t},\n\n\treplace: function ( start, end, content ) {\n\t\tif ( typeof content !== 'string' ) {\n\t\t\tthrow new TypeError( 'replacement content must be a string' );\n\t\t}\n\n\t\tvar firstChar, lastChar, d;\n\n\t\tfirstChar = this.locate( start );\n\t\tlastChar = this.locate( end - 1 );\n\n\t\tif ( firstChar === null || lastChar === null ) {\n\t\t\tthrow new Error( 'Cannot replace the same content twice' );\n\t\t}\n\n\t\tif ( firstChar > lastChar + 1 ) {\n\t\t\tthrow new Error(\n\t\t\t\t'BUG! First character mapped to a position after the last character: ' +\n\t\t\t\t'[' + start + ', ' + end + '] -> [' + firstChar + ', ' + ( lastChar + 1 ) + ']'\n\t\t\t);\n\t\t}\n\n\t\tthis.str = this.str.substr( 0, firstChar ) + content + this.str.substring( lastChar + 1 );\n\n\t\td = content.length - ( lastChar + 1 - firstChar );\n\n\t\tblank( this.mappings, start, end );\n\t\tadjust( this.mappings, end, this.mappings.length, d );\n\t\treturn this;\n\t},\n\n\tslice: function ( start, end ) {\n\t\tvar firstChar, lastChar;\n\n\t\tfirstChar = this.locate( start );\n\t\tlastChar = this.locate( end - 1 ) + 1;\n\n\t\tif ( firstChar === null || lastChar === null ) {\n\t\t\tthrow new Error( 'Cannot use replaced characters as slice anchors' );\n\t\t}\n\n\t\treturn this.str.slice( firstChar, lastChar );\n\t},\n\n\ttoString: function () {\n\t\treturn this.str;\n\t},\n\n\ttrimLines: function() {\n\t\treturn this.trim('[\\\\r\\\\n]');\n\t},\n\n\ttrim: function (charType) {\n\t\treturn this.trimStart(charType).trimEnd(charType);\n\t},\n\n\ttrimEnd: function (charType) {\n\t\tvar self = this;\n\t\tvar rx = new RegExp((charType || '\\\\s') + '+$');\n\n\t\tthis.str = this.str.replace( rx, function ( trailing, index, str ) {\n\t\t\tvar strLength = str.length,\n\t\t\t\tlength = trailing.length,\n\t\t\t\ti,\n\t\t\t\tchars = [];\n\n\t\t\ti = strLength;\n\t\t\twhile ( i-- > strLength - length ) {\n\t\t\t\tchars.push( self.locateOrigin( i ) );\n\t\t\t}\n\n\t\t\ti = chars.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( chars[i] !== null ) {\n\t\t\t\t\tself.mappings[ chars[i] ] = -1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn '';\n\t\t});\n\n\t\treturn this;\n\t},\n\n\ttrimStart: function (charType) {\n\t\tvar self = this;\n\t\tvar rx = new RegExp('^' + (charType || '\\\\s') + '+');\n\n\t\tthis.str = this.str.replace( rx, function ( leading ) {\n\t\t\tvar length = leading.length, i, chars = [], adjustmentStart = 0;\n\n\t\t\ti = length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tchars.push( self.locateOrigin( i ) );\n\t\t\t}\n\n\t\t\ti = chars.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( chars[i] !== null ) {\n\t\t\t\t\tself.mappings[ chars[i] ] = -1;\n\t\t\t\t\tadjustmentStart += 1;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tadjust( self.mappings, adjustmentStart, self.mappings.length, -length );\n\n\t\t\treturn '';\n\t\t});\n\n\t\treturn this;\n\t}\n};\n\nMagicString.Bundle = Bundle;\n\nfunction adjust ( mappings, start, end, d ) {\n\tvar i = end;\n\n\tif ( !d ) return; // replacement is same length as replaced string\n\n\twhile ( i-- > start ) {\n\t\tif ( ~mappings[i] ) {\n\t\t\tmappings[i] += d;\n\t\t}\n\t}\n}\n\nfunction initMappings ( i ) {\n\tvar mappings = new Uint32Array( i );\n\n\twhile ( i-- ) {\n\t\tmappings[i] = i;\n\t}\n\n\treturn mappings;\n}\n\nfunction blank ( mappings, start, i ) {\n\twhile ( i-- > start ) {\n\t\tmappings[i] = -1;\n\t}\n}\n\nfunction reverse ( mappings, i ) {\n\tvar result, location;\n\n\tresult = new Uint32Array( i );\n\n\twhile ( i-- ) {\n\t\tresult[i] = -1;\n\t}\n\n\ti = mappings.length;\n\twhile ( i-- ) {\n\t\tlocation = mappings[i];\n\n\t\tif ( ~location ) {\n\t\t\tresult[ location ] = i;\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport default MagicString;\n","let shouldSkip;\nlet shouldAbort;\n\nexport default function walk ( ast, { enter, leave }) {\n\tshouldAbort = false;\n\tvisit( ast, null, enter, leave );\n}\n\nlet context = {\n\tskip: () => shouldSkip = true,\n\tabort: () => shouldAbort = true\n};\n\nlet childKeys = {};\n\nlet toString = Object.prototype.toString;\n\nfunction isArray ( thing ) {\n\treturn toString.call( thing ) === '[object Array]';\n}\n\nfunction visit ( node, parent, enter, leave ) {\n\tif ( !node || shouldAbort ) return;\n\n\tif ( enter ) {\n\t\tshouldSkip = false;\n\t\tenter.call( context, node, parent );\n\t\tif ( shouldSkip || shouldAbort ) return;\n\t}\n\n\tlet keys = childKeys[ node.type ] || (\n\t\tchildKeys[ node.type ] = Object.keys( node ).filter( key => typeof node[ key ] === 'object' )\n\t);\n\n\tlet key, value, i, j;\n\n\ti = keys.length;\n\twhile ( i-- ) {\n\t\tkey = keys[i];\n\t\tvalue = node[ key ];\n\n\t\tif ( isArray( value ) ) {\n\t\t\tj = value.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\tvisit( value[j], node, enter, leave );\n\t\t\t}\n\t\t}\n\n\t\telse if ( value && value.type ) {\n\t\t\tvisit( value, node, enter, leave );\n\t\t}\n\t}\n\n\tif ( leave && !shouldAbort ) {\n\t\tleave( node, parent );\n\t}\n}","export function getId ( m ) {\n\treturn m.id;\n}\n\nexport function getName ( m ) {\n\treturn m.name;\n}\n\nexport function quote ( str ) {\n\treturn \"'\" + JSON.stringify(str).slice(1, -1).replace(/'/g, \"\\\\'\") + \"'\";\n}\n\nexport function req ( path ) {\n\treturn `require(${quote(path)})`;\n}\n\nexport function globalify ( name ) {\n \tif ( /^__dep\\d+__$/.test( name ) ) {\n\t\treturn 'undefined';\n\t} else {\n\t\treturn `global.${name}`;\n\t}\n}\n","/*\n\tThis module traverse a module's AST, attaching scope information\n\tto nodes as it goes, which is later used to determine which\n\tidentifiers need to be rewritten to avoid collisions\n*/\n\nimport walk from './walk';\nimport { getName } from '../mappers';\n\nfunction Scope ( options ) {\n\toptions = options || {};\n\n\tthis.parent = options.parent;\n\tthis.names = options.params || [];\n}\n\nScope.prototype = {\n\tadd: function ( name ) {\n\t\tthis.names.push( name );\n\t},\n\n\tcontains: function ( name, ignoreTopLevel ) {\n\t\tif ( ignoreTopLevel && !this.parent ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( ~this.names.indexOf( name ) ) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif ( this.parent ) {\n\t\t\treturn this.parent.contains( name, ignoreTopLevel );\n\t\t}\n\n\t\treturn false;\n\t}\n};\n\nexport default function annotateAst ( ast ) {\n\tlet scope = new Scope();\n\tlet blockScope = new Scope();\n\tlet declared = {};\n\tlet topLevelFunctionNames = [];\n\tlet templateLiteralRanges = [];\n\n\tlet envDepth = 0;\n\n\twalk( ast, {\n\t\tenter ( node ) {\n\t\t\tif ( node.type === 'ImportDeclaration' || node.type === 'ExportSpecifier' ) {\n\t\t\t\tnode._skip = true;\n\t\t\t}\n\n\t\t\tif ( node._skip ) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tswitch ( node.type ) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth += 1;\n\n\t\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\t\t\t\t\tif ( node.id ) {\n\t\t\t\t\t\taddToScope( node );\n\n\t\t\t\t\t\t// If this is the root scope, this may need to be\n\t\t\t\t\t\t// exported early, so we make a note of it\n\t\t\t\t\t\tif ( !scope.parent && node.type === 'FunctionDeclaration' ) {\n\t\t\t\t\t\t\ttopLevelFunctionNames.push( node.id.name );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tlet names = node.params.map( getName );\n\n\t\t\t\t\tnames.forEach( name => declared[ name ] = true );\n\n\t\t\t\t\tscope = node._scope = new Scope({\n\t\t\t\t\t\tparent: scope,\n\t\t\t\t\t\tparams: names // TODO rest params?\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = node._blockScope = new Scope({\n\t\t\t\t\t\tparent: blockScope\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'VariableDeclaration':\n\t\t\t\t\tnode.declarations.forEach( node.kind === 'let' ? addToBlockScope : addToScope );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ClassExpression':\n\t\t\t\tcase 'ClassDeclaration':\n\t\t\t\t\taddToScope( node );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'MemberExpression':\n\t\t\t\t\tif ( envDepth === 0 && node.object.type === 'ThisExpression' ) {\n\t\t\t\t\t\tthrow new Error('`this` at the top level is undefined');\n\t\t\t\t\t}\n\t\t\t\t\t!node.computed && ( node.property._skip = true );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'Property':\n\t\t\t\t\tnode.key._skip = true;\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'TemplateLiteral':\n\t\t\t\t\ttemplateLiteralRanges.push([ node.start, node.end ]);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ThisExpression':\n\t\t\t\t\tif (envDepth === 0) {\n\t\t\t\t\t\tnode._topLevel = true;\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\t\tleave ( node ) {\n\t\t\tswitch ( node.type ) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth -= 1;\n\n\t\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\n\t\t\t\t\tscope = scope.parent;\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = blockScope.parent;\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t});\n\n\tfunction addToScope ( declarator ) {\n\t\tvar name = declarator.id.name;\n\n\t\tscope.add( name );\n\t\tdeclared[ name ] = true;\n\t}\n\n\tfunction addToBlockScope ( declarator ) {\n\t\tvar name = declarator.id.name;\n\n\t\tblockScope.add( name );\n\t\tdeclared[ name ] = true;\n\t}\n\n\tast._scope = scope;\n\tast._blockScope = blockScope;\n\tast._topLevelNames = ast._scope.names.concat( ast._blockScope.names );\n\tast._topLevelFunctionNames = topLevelFunctionNames;\n\tast._declared = declared;\n\tast._templateLiteralRanges = templateLiteralRanges;\n}\n","/**\n * Inspects a module and discovers/categorises import & export declarations\n * @param {object} mod - the module object\n * @param {string} source - the module's original source code\n * @param {object} ast - the result of parsing `source` with acorn\n * @returns {array} - [ imports, exports ]\n */\nexport default function findImportsAndExports ( mod, source, ast ) {\n\tvar imports = [], exports = [], previousDeclaration;\n\n\tast.body.forEach( node => {\n\t\tvar passthrough, declaration;\n\n\t\tif ( previousDeclaration ) {\n\t\t\tpreviousDeclaration.next = node.start;\n\n\t\t\tif ( node.type !== 'EmptyStatement' ) {\n\t\t\t\tpreviousDeclaration = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( node.type === 'ImportDeclaration' ) {\n\t\t\tdeclaration = processImport( node );\n\t\t\timports.push( declaration );\n\t\t}\n\n\t\telse if ( node.type === 'ExportDefaultDeclaration' ) {\n\t\t\tdeclaration = processDefaultExport( node, source );\n\t\t\texports.push( declaration );\n\n\t\t\tif ( mod.defaultExport ) {\n\t\t\t\tthrow new Error( 'Duplicate default exports' );\n\t\t\t}\n\t\t\tmod.defaultExport = declaration;\n\t\t}\n\n\t\telse if ( node.type === 'ExportNamedDeclaration' ) {\n\t\t\tdeclaration = processExport( node, source );\n\t\t\texports.push( declaration );\n\n\t\t\tif ( node.source ) {\n\t\t\t\t// it's both an import and an export, e.g.\n\t\t\t\t// `export { foo } from './bar';\n\t\t\t\tpassthrough = processImport( node, true );\n\t\t\t\timports.push( passthrough );\n\n\t\t\t\tdeclaration.passthrough = passthrough;\n\t\t\t}\n\t\t}\n\n\t\tif ( declaration ) {\n\t\t\tpreviousDeclaration = declaration;\n\t\t}\n\t});\n\n\t// catch any trailing semicolons\n\tif ( previousDeclaration ) {\n\t\tpreviousDeclaration.next = source.length;\n\t\tpreviousDeclaration.isFinal = true;\n\t}\n\n\treturn [ imports, exports ];\n}\n\n/**\n * Generates a representation of an import declaration\n * @param {object} node - the original AST node\n * @param {boolean} passthrough - `true` if this is an `export { foo } from 'bar'`-style declaration\n * @returns {object}\n */\nfunction processImport ( node, passthrough ) {\n\tvar x = {\n\t\tmodule: null, // used by bundler - filled in later\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tpassthrough: !!passthrough,\n\n\t\tpath: node.source.value,\n\t\tspecifiers: node.specifiers.map( s => {\n\t\t\tif ( s.type === 'ImportNamespaceSpecifier' ) {\n\t\t\t\treturn {\n\t\t\t\t\tisBatch: true,\n\t\t\t\t\tname: s.local.name, // TODO is this line necessary?\n\t\t\t\t\tas: s.local.name\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tif ( s.type === 'ImportDefaultSpecifier' ) {\n\t\t\t\treturn {\n\t\t\t\t\tisDefault: true,\n\t\t\t\t\tname: 'default',\n\t\t\t\t\tas: s.local.name\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\tname: ( !!passthrough ? s.exported : s.imported ).name,\n\t\t\t\tas: s.local.name\n\t\t\t};\n\t\t})\n\t};\n\n\t// TODO have different types of imports - batch, default, named\n\tif ( x.specifiers.length === 0 ) {\n\t\tx.isEmpty = true;\n\t} else if ( x.specifiers.length === 1 && x.specifiers[0].isDefault ) {\n\t\tx.isDefault = true;\n\t\tx.as = x.specifiers[0].as;\n\n\t} else if ( x.specifiers.length === 1 && x.specifiers[0].isBatch ) {\n\t\tx.isBatch = true;\n\t\tx.as = x.specifiers[0].name;\n\t} else {\n\t\tx.isNamed = true;\n\t}\n\n\treturn x;\n}\n\nfunction processDefaultExport ( node, source ) {\n\tlet result = {\n\t\tisDefault: true,\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end\n\t};\n\n\tlet d = node.declaration;\n\n\tif ( d.type === 'FunctionExpression' ) {\n\t\t// Case 1: `export default function () {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'anonFunction';\n\t}\n\n\telse if ( d.type === 'FunctionDeclaration' ) {\n\t\t// Case 2: `export default function foo () {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'namedFunction';\n\t\tresult.name = d.id.name;\n\t}\n\n\telse if ( d.type === 'ClassExpression' ) {\n\t\t// Case 3: `export default class {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'anonClass';\n\t}\n\n\telse if ( d.type === 'ClassDeclaration' ) {\n\t\t// Case 4: `export default class Foo {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'namedClass';\n\t\tresult.name = d.id.name;\n\t}\n\n\telse {\n\t\tresult.type = 'expression';\n\t\tresult.name = 'default';\n\t}\n\n\tresult.value = source.slice( d.start, d.end );\n\tresult.valueStart = d.start;\n\n\treturn result;\n}\n\n/**\n * Generates a representation of an export declaration\n * @param {object} node - the original AST node\n * @param {string} source - the original source code\n * @returns {object}\n */\nfunction processExport ( node, source ) {\n\tvar result, d;\n\n\tresult = {\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end\n\t};\n\n\tif ( d = node.declaration ) {\n\t\tresult.value = source.slice( d.start, d.end );\n\t\tresult.valueStart = d.start;\n\n\t\t// Case 1: `export var foo = 'bar'`\n\t\tif ( d.type === 'VariableDeclaration' ) {\n\t\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\t\tresult.type = 'varDeclaration';\n\t\t\tresult.name = d.declarations[0].id.name;\n\t\t}\n\n\t\t// Case 2: `export function foo () {...}`\n\t\telse if ( d.type === 'FunctionDeclaration' ) {\n\t\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\t\tresult.type = 'namedFunction';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\n\t\t// Case 3: `export class Foo {...}`\n\t\telse if ( d.type === 'ClassDeclaration' ) {\n\t\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\t\tresult.type = 'namedClass';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\t}\n\n\t// Case 9: `export { foo, bar };`\n\telse {\n\t\tresult.type = 'named';\n\t\tresult.specifiers = node.specifiers.map( s => {\n\t\t\treturn {\n\t\t\t\tname: s.local.name,\n\t\t\t\tas: s.exported.name\n\t\t\t};\n\t\t});\n\t}\n\n\treturn result;\n}\n","var hasOwnProp = Object.prototype.hasOwnProperty;\nexport default hasOwnProp;","import walk from './walk';\nimport hasOwnProp from 'utils/hasOwnProp';\n\nexport default function getUnscopedNames ( mod ) {\n\tvar unscoped = [], importedNames, scope;\n\n\tfunction imported ( name ) {\n\t\tif ( !importedNames ) {\n\t\t\timportedNames = {};\n\t\t\tmod.imports.forEach( i => {\n\t\t\t\t!i.passthrough && i.specifiers.forEach( s => {\n\t\t\t\t\timportedNames[ s.as ] = true;\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\treturn hasOwnProp.call( importedNames, name );\n\t}\n\n\twalk( mod.ast, {\n\t\tenter ( node ) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif ( node._skip ) return this.skip();\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = node._scope;\n\t\t\t}\n\n\t\t\tif ( node.type === 'Identifier' &&\n\t\t\t\t\t !scope.contains( node.name ) &&\n\t\t\t\t\t !imported( node.name ) &&\n\t\t\t\t\t !~unscoped.indexOf( node.name ) ) {\n\t\t\t\tunscoped.push( node.name );\n\t\t\t}\n\t\t},\n\n\t\tleave ( node ) {\n\t\t\tif ( node.type === 'Program' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = scope.parent;\n\t\t\t}\n\t\t}\n\t});\n\n\treturn unscoped;\n}","import hasOwnProp from './hasOwnProp';\n\nexport default function disallowConflictingImports ( imports ) {\n\tlet usedNames = {};\n\n\timports.forEach( x => {\n\t\tif ( x.passthrough ) return;\n\n\t\tif ( x.as ) {\n\t\t\tcheckName( x.as );\n\t\t} else {\n\t\t\tx.specifiers.forEach( checkSpecifier );\n\t\t}\n\t});\n\n\tfunction checkSpecifier ( s ) {\n\t\tcheckName( s.as );\n\t}\n\n\tfunction checkName ( name ) {\n\t\tif ( hasOwnProp.call( usedNames, name ) ) {\n\t\t\tthrow new SyntaxError( `Duplicated import ('${name}')` );\n\t\t}\n\n\t\tusedNames[ name ] = true;\n\t}\n}\n","const RESERVED = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield'.split( ' ' );\nconst INVALID_CHAR = /[^a-zA-Z0-9_$]/g;\nconst INVALID_LEADING_CHAR = /[^a-zA-Z_$]/;\n\n/**\n * Generates a sanitized (i.e. valid identifier) name from a module ID\n * @param {string} id - a module ID, or part thereof\n * @returns {string}\n */\nexport default function sanitize ( name ) {\n\tname = name.replace( INVALID_CHAR, '_' );\n\n\tif ( INVALID_LEADING_CHAR.test( name[0] ) || ~RESERVED.indexOf( name ) ) {\n\t\tname = `_${name}`;\n\t}\n\n\treturn name;\n}\n\nvar pathSplitRE = /\\/|\\\\/;\nexport function splitPath ( path ) {\n\treturn path.split( pathSplitRE );\n}\n","import acorn from 'acorn';\nimport MagicString from 'magic-string';\nimport annotateAst from 'utils/ast/annotate';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\n\nconst SOURCEMAPPINGURL_REGEX = /^# sourceMappingURL=/;\n\nexport default function getStandaloneModule ( options ) {\n\tlet code, ast;\n\n\tif ( typeof options.source === 'object' ) {\n\t\tcode = options.source.code;\n\t\tast = options.source.ast;\n\t} else {\n\t\tcode = options.source;\n\t}\n\n\tlet toRemove = [];\n\n\tlet mod = {\n\t\tbody: new MagicString( code ),\n\t\tast: ast || ( acorn.parse( code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment ( block, text, start, end ) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif ( !block && SOURCEMAPPINGURL_REGEX.test( text ) ) {\n\t\t\t\t\ttoRemove.push({ start, end });\n\t\t\t\t}\n\t\t\t}\n\t\t}))\n\t};\n\n\ttoRemove.forEach( ({ start, end }) => mod.body.remove( start, end ) );\n\n\tlet [ imports, exports ] = findImportsAndExports( mod, code, mod.ast );\n\n\tdisallowConflictingImports( imports );\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\n\tlet conflicts = {};\n\n\tif ( options.strict ) {\n\t\tannotateAst( mod.ast );\n\n\t\t// TODO there's probably an easier way to get this array\n\t\tObject.keys( mod.ast._declared ).concat( getUnscopedNames( mod ) ).forEach( n => {\n\t\t\tconflicts[n] = true;\n\t\t});\n\t}\n\n\tdetermineImportNames( imports, options.getModuleName, conflicts );\n\n\treturn mod;\n}\n\nfunction determineImportNames ( imports, userFn, usedNames ) {\n\tlet nameById = {};\n\tlet inferredNames = {};\n\n\timports.forEach( x => {\n\t\tlet moduleId = x.path;\n\t\tlet name;\n\n\t\tmoduleId = x.path;\n\n\t\t// use existing value\n\t\tif ( hasOwnProp.call( nameById, moduleId ) ) {\n\t\t\tx.name = nameById[ moduleId ];\n\t\t\treturn;\n\t\t}\n\n\t\t// if user supplied a function, defer to it\n\t\tif ( userFn && ( name = userFn( moduleId ) ) ) {\n\t\t\tname = sanitize( name );\n\n\t\t\tif ( hasOwnProp.call( usedNames, name ) ) {\n\t\t\t\t// TODO write a test for this\n\t\t\t\tthrow new Error( `Naming collision: module ${moduleId} cannot be called ${name}` );\n\t\t\t}\n\t\t}\n\n\t\telse {\n\t\t\tlet parts = splitPath( moduleId );\n\t\t\tlet i;\n\t\t\tlet prefix = '';\n\t\t\tlet candidate;\n\n\t\t\tdo {\n\t\t\t\ti = parts.length;\n\t\t\t\twhile ( i-- > 0 ) {\n\t\t\t\t\tcandidate = prefix + sanitize( parts.slice( i ).join( '__' ) );\n\n\t\t\t\t\tif ( !hasOwnProp.call( usedNames, candidate ) ) {\n\t\t\t\t\t\tname = candidate;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tprefix += '_';\n\t\t\t} while ( !name );\n\t\t}\n\n\t\tusedNames[ name ] = true;\n\t\tnameById[ moduleId ] = name;\n\n\t\tx.name = name;\n\t});\n\n\t// use inferred names for default imports, wherever they\n\t// don't clash with path-based names\n\timports.forEach( x => {\n\t\tif ( x.as && !hasOwnProp.call( usedNames, x.as ) ) {\n\t\t\tinferredNames[ x.path ] = x.as;\n\t\t}\n\t});\n\n\timports.forEach( x => {\n\t\tif ( hasOwnProp.call( inferredNames, x.path ) ) {\n\t\t\tx.name = inferredNames[ x.path ];\n\t\t}\n\t});\n}\n","export default function transformExportDeclaration ( declaration, body ) {\n\tif ( !declaration ) {\n\t\treturn;\n\t}\n\n\tlet exportedValue;\n\n\tswitch ( declaration.type ) {\n\t\tcase 'namedFunction':\n\t\tcase 'namedClass':\n\t\t\tbody.remove( declaration.start, declaration.valueStart );\n\t\t\texportedValue = declaration.name;\n\t\t\tbreak;\n\n\t\tcase 'anonFunction':\n\t\tcase 'anonClass':\n\t\t\tif ( declaration.isFinal ) {\n\t\t\t\tbody.replace( declaration.start, declaration.valueStart, 'return ' );\n\t\t\t} else {\n\t\t\t\tbody.replace( declaration.start, declaration.valueStart, 'var __export = ' );\n\t\t\t\texportedValue = '__export';\n\t\t\t}\n\n\t\t\t// add semi-colon, if necessary\n\t\t\t// TODO body.original is an implementation detail of magic-string - there\n\t\t\t// should probably be an API for this sort of thing\n\t\t\tif ( body.original[ declaration.end - 1 ] !== ';' ) {\n\t\t\t\tbody.insert( declaration.end, ';' );\n\t\t\t}\n\n\t\t\tbreak;\n\n\t\tcase 'expression':\n\t\t\tbody.remove( declaration.start, declaration.next );\n\t\t\texportedValue = declaration.value;\n\t\t\tbreak;\n\n\t\tdefault:\n\t\t\tthrow new Error( `Unexpected export type '${declaration.type}'` );\n\t}\n\n\tif ( exportedValue ) {\n\t\tbody.append( `\\nreturn ${exportedValue};` );\n\t}\n}\n","import walk from './ast/walk';\nimport { splitPath } from 'utils/sanitize';\n\nconst ABSOLUTE_PATH = /^(?:[A-Z]:)?[\\/\\\\]/i;\n\nlet warned = {};\n\nexport default function packageResult ( bundleOrModule, body, options, methodName, isBundle ) {\n\t// wrap output\n\tif ( options.banner ) body.prepend( options.banner );\n\tif ( options.footer ) body.append( options.footer );\n\n\tlet code = body.toString();\n\tlet map;\n\n\tif ( !!options.sourceMap ) {\n\t\tif ( options.sourceMap !== 'inline' && !options.sourceMapFile ) {\n\t\t\tthrow new Error( 'You must provide `sourceMapFile` option' );\n\t\t}\n\n\t\tif ( !isBundle && !options.sourceMapSource ) {\n\t\t\tthrow new Error( 'You must provide `sourceMapSource` option' );\n\t\t}\n\n\t\tlet sourceMapFile;\n\t\tif ( options.sourceMap === 'inline' ) {\n\t\t\tsourceMapFile = null;\n\t\t} else {\n\t\t\tsourceMapFile = ABSOLUTE_PATH.test( options.sourceMapFile ) ? options.sourceMapFile : './' + splitPath( options.sourceMapFile ).pop();\n\t\t}\n\n\t\tif ( isBundle ) {\n\t\t\tmarkBundleSourcemapLocations( bundleOrModule );\n\t\t} else {\n\t\t\tmarkModuleSourcemapLocations( bundleOrModule );\n\t\t}\n\n\t\tmap = body.generateMap({\n\t\t\tincludeContent: true,\n\t\t\tfile: sourceMapFile,\n\t\t\tsource: ( sourceMapFile && !isBundle ) ? getRelativePath( sourceMapFile, options.sourceMapSource ) : null\n\t\t});\n\n\t\tif ( options.sourceMap === 'inline' ) {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + map.toUrl();\n\t\t\tmap = null;\n\t\t} else {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + sourceMapFile + '.map';\n\t\t}\n\t} else {\n\t\tmap = null;\n\t}\n\n\treturn {\n\t\tcode,\n\t\tmap,\n\t\ttoString () {\n\t\t\tif ( !warned[ methodName ] ) {\n\t\t\t\tconsole.log( `Warning: esperanto.${methodName}() returns an object with a 'code' property. You should use this instead of using the returned value directly` );\n\t\t\t\twarned[ methodName ] = true;\n\t\t\t}\n\n\t\t\treturn code;\n\t\t}\n\t};\n}\n\nfunction getRelativePath ( from, to ) {\n\tvar fromParts, toParts, i;\n\n\tfromParts = splitPath( from );\n\ttoParts = splitPath( to );\n\n\tfromParts.pop(); // get dirname\n\n\twhile ( fromParts[0] === '.' ) {\n\t\tfromParts.shift();\n\t}\n\n\twhile ( fromParts[0] === toParts[0] ) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif ( fromParts.length ) {\n\t\ti = fromParts.length;\n\t\twhile ( i-- ) fromParts[i] = '..';\n\n\t\treturn fromParts.concat( toParts ).join( '/' );\n\t} else {\n\t\ttoParts.unshift( '.' );\n\t\treturn toParts.join( '/' );\n\t}\n}\n\nfunction markBundleSourcemapLocations ( bundle ) {\n\tbundle.modules.forEach( mod => {\n\t\twalk( mod.ast, {\n\t\t\tenter: node => {\n\t\t\t\tmod.body.addSourcemapLocation( node.start );\n\t\t\t}\n\t\t});\n\t});\n}\n\nfunction markModuleSourcemapLocations ( mod ) {\n\twalk( mod.ast, {\n\t\tenter: node => {\n\t\t\tmod.body.addSourcemapLocation( node.start );\n\t\t}\n\t});\n}\n","import { splitPath } from 'utils/sanitize';\n\n/**\n * Resolves an importPath relative to the module that is importing it\n * @param {string} importPath - the (possibly relative) path of an imported module\n * @param {string} importerPath - the (relative to `base`) path of the importing module\n * @returns {string}\n */\nexport default function resolveId ( importPath, importerPath ) {\n\tvar resolved, importerParts, importParts;\n\n\tif ( importPath[0] !== '.' ) {\n\t\tresolved = importPath;\n\t} else {\n\t\timporterParts = splitPath( importerPath );\n\t\timportParts = splitPath( importPath );\n\n\t\tif ( importParts[0] === '.' ) {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\timporterParts.pop(); // get dirname\n\t\twhile ( importParts[0] === '..' ) {\n\t\t\timportParts.shift();\n\t\t\timporterParts.pop();\n\t\t}\n\n\t\twhile ( importParts[0] === '.' ) {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\tresolved = importerParts.concat( importParts ).join( '/' );\n\t}\n\n\treturn resolved;\n}\n\nexport function resolveAgainst ( importerPath ) {\n\treturn function ( importPath ) {\n\t\treturn resolveId( importPath, importerPath );\n\t};\n}\n","import resolveId from '../resolveId';\n\nexport default function getImportSummary ({ imports, absolutePaths, name }) {\n\tlet paths = [];\n\tlet names = [];\n\tlet seen = {};\n\tlet placeholders = 0;\n\n\timports.forEach( x => {\n\t\tlet path = x.id || x.path; // TODO unify these\n\n\t\tif ( !seen[ path ] ) {\n\t\t\tseen[ path ] = true;\n\n\t\t\tpaths.push( path );\n\n\t\t\t// TODO x could be an external module, or an internal one.\n\t\t\t// they have different shapes, resulting in the confusing\n\t\t\t// code below\n\t\t\tif ( ( x.needsDefault || x.needsNamed ) || ( x.specifiers && x.specifiers.length ) ) {\n\t\t\t\twhile ( placeholders ) {\n\t\t\t\t\tnames.push( `__dep${names.length}__` );\n\t\t\t\t\tplaceholders--;\n\t\t\t\t}\n\t\t\t\tnames.push( x.name );\n\t\t\t} else {\n\t\t\t\tplaceholders++;\n\t\t\t}\n\t\t}\n\t});\n\n\tlet ids = absolutePaths ? paths.map( relativePath => resolveId( relativePath, name ) ) : paths.slice();\n\n\treturn { ids, paths, names };\n}","import { quote } from '../mappers';\n\nexport default function processName ( name ) {\n\treturn name ? quote( name ) + ', ' : '';\n}","import { quote } from '../mappers';\n\nexport default function processIds ( ids ) {\n\treturn ids.length ? '[' + ids.map( quote ).join( ', ' ) + '], ' : '';\n}","import getImportSummary from './getImportSummary';\nimport processName from './processName';\nimport processIds from './processIds';\n\nexport default function amdIntro ({ name, imports, hasExports, indentStr, absolutePaths, useStrict }) {\n\tlet { ids, names } = getImportSummary({ name, imports, absolutePaths });\n\n\tif ( hasExports ) {\n\t\tids.unshift( 'exports' );\n\t\tnames.unshift( 'exports' );\n\t}\n\n\tlet intro = `\ndefine(${processName(name)}${processIds(ids)}function (${names.join( ', ' ) }) {\n\n`;\n\n\tif ( useStrict ) {\n\t\tintro += `${indentStr}'use strict';\\n\\n`;\n\t}\n\n\treturn intro;\n}","import transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\n\nexport default function amd ( mod, options ) {\n\tmod.imports.forEach( x => {\n\t\tmod.body.remove( x.start, x.next );\n\t});\n\n\ttransformExportDeclaration( mod.exports[0], mod.body );\n\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: mod.imports,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tmod.body.trim()\n\t\t.indent()\n\t\t.prepend( intro )\n\t\t.trim()\n\t\t.append( '\\n\\n});' );\n\n\treturn packageResult( mod, mod.body, options, 'toAmd' );\n}\n","import hasOwnProp from 'utils/hasOwnProp';\nimport packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( mod, options ) {\n\tlet seen = {};\n\n\tmod.imports.forEach( x => {\n\t\tif ( !hasOwnProp.call( seen, x.path ) ) {\n\t\t\tlet replacement = x.isEmpty ? `${req(x.path)};` : `var ${x.as} = ${req(x.path)};`;\n\t\t\tmod.body.replace( x.start, x.end, replacement );\n\n\t\t\tseen[ x.path ] = true;\n\t\t} else {\n\t\t\tmod.body.remove( x.start, x.next );\n\t\t}\n\t});\n\n\tlet exportDeclaration = mod.exports[0];\n\n\tif ( exportDeclaration ) {\n\t\tswitch ( exportDeclaration.type ) {\n\t\t\tcase 'namedFunction':\n\t\t\tcase 'namedClass':\n\t\t\t\tmod.body.remove( exportDeclaration.start, exportDeclaration.valueStart );\n\t\t\t\tmod.body.replace( exportDeclaration.end, exportDeclaration.end, `\\nmodule.exports = ${exportDeclaration.node.declaration.id.name};` );\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tmod.body.replace( exportDeclaration.start, exportDeclaration.valueStart, 'module.exports = ' );\n\t\t\t\tbreak;\n\t\t}\n\t}\n\n\tif ( options.useStrict !== false ) {\n\t\tmod.body.prepend( \"'use strict';\\n\\n\" ).trimLines();\n\t}\n\n\treturn packageResult( mod, mod.body, options, 'toCjs' );\n}\n","import { globalify, req } from 'utils/mappers';\nimport processName from '../amd/processName';\nimport processIds from '../amd/processIds';\nimport getImportSummary from '../amd/getImportSummary';\n\nexport default function umdIntro ({ amdName, name, hasExports, imports, absolutePaths, externalDefaults, indentStr, strict, useStrict }) {\n\tconst useStrictPragma = useStrict ? ` 'use strict';` : '';\n\tlet intro;\n\n\tif ( !hasExports && !imports.length ) {\n\t\tintro =\n\t\t\t`(function (factory) {\n\t\t\t\t!(typeof exports === 'object' && typeof module !== 'undefined') &&\n\t\t\t\ttypeof define === 'function' && define.amd ? define(${processName(amdName)}factory) :\n\t\t\t\tfactory()\n\t\t\t}(function () {${useStrictPragma}\n\n\t\t\t`;\n\t}\n\n\telse {\n\t\tlet { ids, paths, names } = getImportSummary({ imports, name: amdName, absolutePaths });\n\n\t\tlet amdExport, cjsExport, globalExport, defaultsBlock;\n\n\t\tif ( strict ) {\n\t\t\tcjsExport = `factory(${( hasExports ? [ 'exports' ] : [] ).concat( paths.map( req ) ).join( ', ' )})`;\n\t\t\tlet globalDeps = ( hasExports ? [ `(global.${name} = {})` ] : [] ).concat( names.map( globalify ) ).join( ', ' );\n\t\t\tglobalExport = `factory(${globalDeps})`;\n\n\t\t\tif ( hasExports ) {\n\t\t\t\tids.unshift( 'exports' );\n\t\t\t\tnames.unshift( 'exports' );\n\t\t\t}\n\n\t\t\tamdExport = `define(${processName(amdName)}${processIds(ids)}factory)`;\n\t\t\tdefaultsBlock = '';\n\t\t\tif ( externalDefaults && externalDefaults.length > 0 ) {\n\t\t\t\tdefaultsBlock = externalDefaults.map( x =>\n\t\t\t\t\t'\\t' + ( x.needsNamed ? `var ${x.name}__default` : x.name ) +\n\t\t\t\t\t\t` = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`\n\t\t\t\t).join('\\n') + '\\n\\n';\n\t\t\t}\n\t\t} else {\n\t\t\tamdExport = `define(${processName(amdName)}${processIds(ids)}factory)`;\n\t\t\tcjsExport = ( hasExports ? 'module.exports = ' : '' ) + `factory(${paths.map( req ).join( ', ' )})`;\n\t\t\tglobalExport = ( hasExports ? `global.${name} = ` : '' ) + `factory(${names.map( globalify ).join( ', ' )})`;\n\n\t\t\tdefaultsBlock = '';\n\t\t}\n\n\t\tintro =\n\t\t\t`(function (global, factory) {\n\t\t\t\ttypeof exports === 'object' && typeof module !== 'undefined' ? ${cjsExport} :\n\t\t\t\ttypeof define === 'function' && define.amd ? ${amdExport} :\n\t\t\t\t${globalExport}\n\t\t\t}(this, function (${names.join( ', ' )}) {${useStrictPragma}\n\n\t\t\t${defaultsBlock}`;\n\n\t}\n\n\treturn intro.replace( /^\\t\\t\\t/gm, '' ).replace( /\\t/g, indentStr );\n}","var EsperantoError = function ( message, data ) {\n\tvar prop;\n\n\tthis.message = message;\n\tthis.stack = (new Error()).stack;\n\n\tfor ( prop in data ) {\n\t\tif ( data.hasOwnProperty( prop ) ) {\n\t\t\tthis[ prop ] = data[ prop ];\n\t\t}\n\t}\n};\n\nEsperantoError.prototype = new Error();\nEsperantoError.prototype.constructor = EsperantoError;\nEsperantoError.prototype.name = 'EsperantoError';\n\nexport default EsperantoError;","import EsperantoError from 'utils/EsperantoError';\n\nexport default function requireName ( options ) {\n\tif ( !options.name ) {\n\t\tthrow new EsperantoError( 'You must supply a `name` option for UMD modules', {\n\t\t\tcode: 'MISSING_NAME'\n\t\t});\n\t}\n}","import transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\n\nexport default function umd ( mod, options ) {\n\trequireName( options );\n\n\tmod.imports.forEach( x => {\n\t\tmod.body.remove( x.start, x.next );\n\t});\n\n\tlet intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformExportDeclaration( mod.exports[0], mod.body );\n\n\tmod.body.indent().prepend( intro ).trimLines().append( '\\n\\n}));' );\n\n\treturn packageResult( mod, mod.body, options, 'toUmd' );\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","export default function gatherImports ( imports ) {\n\tlet chains = {};\n\tlet identifierReplacements = {};\n\n\timports.forEach( x => {\n\t\tx.specifiers.forEach( s => {\n\t\t\tif ( s.isBatch ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlet name = s.as;\n\t\t\tlet replacement = x.name + ( s.isDefault ? `['default']` : `.${s.name}` );\n\n\t\t\tif ( !x.passthrough ) {\n\t\t\t\tidentifierReplacements[ name ] = replacement;\n\t\t\t}\n\n\t\t\tchains[ name ] = replacement;\n\t\t});\n\t});\n\n\treturn [ chains, identifierReplacements ];\n}\n","export default function getExportNames ( exports ) {\n\tvar result = {};\n\n\texports.forEach( x => {\n\t\tif ( x.isDefault ) return;\n\n\t\tif ( x.hasDeclaration ) {\n\t\t\tresult[ x.name ] = x.name;\n\t\t\treturn;\n\t\t}\n\n\t\tx.specifiers.forEach( s => {\n\t\t\tresult[ s.name ] = s.as;\n\t\t});\n\t});\n\n\treturn result;\n}\n","/**\n * Scans an array of imports, and determines which identifiers\n are readonly, and which cannot be assigned to. For example\n you cannot `import foo from 'foo'` then do `foo = 42`, nor\n can you `import * as foo from 'foo'` then do `foo.answer = 42`\n * @param {array} imports - the array of imports\n * @returns {array} [ importedBindings, importedNamespaces ]\n */\nexport default function getReadOnlyIdentifiers ( imports ) {\n\tvar importedBindings = {}, importedNamespaces = {};\n\n\timports.forEach( x => {\n\t\tif ( x.passthrough ) return;\n\n\t\tx.specifiers.forEach( s => {\n\t\t\tif ( s.isBatch ) {\n\t\t\t\timportedNamespaces[ s.as ] = true;\n\t\t\t} else {\n\t\t\t\timportedBindings[ s.as ] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn [ importedBindings, importedNamespaces ];\n}","import hasOwnProp from 'utils/hasOwnProp';\n\nvar bindingMessage = 'Cannot reassign imported binding ',\n\tnamespaceMessage = 'Cannot reassign imported binding of namespace ';\n\nexport default function disallowIllegalReassignment ( node, importedBindings, importedNamespaces, scope ) {\n\tlet assignee, isNamespaceAssignment;\n\n\tif ( node.type === 'AssignmentExpression' ) {\n\t\tassignee = node.left;\n\t} else if ( node.type === 'UpdateExpression' ) {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif ( assignee.type === 'MemberExpression' ) {\n\t\tassignee = assignee.object;\n\t\tisNamespaceAssignment = true;\n\t}\n\n\tif ( assignee.type !== 'Identifier' ) {\n\t\treturn; // not assigning to a binding\n\t}\n\n\tlet name = assignee.name;\n\n\tif ( hasOwnProp.call( isNamespaceAssignment ? importedNamespaces : importedBindings, name ) && !scope.contains( name ) ) {\n\t\tthrow new Error( ( isNamespaceAssignment ? namespaceMessage : bindingMessage ) + '`' + name + '`' );\n\t}\n}\n","import hasOwnProp from 'utils/hasOwnProp';\n\nexport default function replaceIdentifiers ( body, node, identifierReplacements, scope ) {\n\tlet name = node.name;\n\tlet replacement = hasOwnProp.call( identifierReplacements, name ) && identifierReplacements[ name ];\n\n\t// TODO unchanged identifiers shouldn't have got this far -\n\t// remove the `replacement !== name` safeguard once that's the case\n\tif ( replacement && replacement !== name && !scope.contains( name, true ) ) {\n\t\t// rewrite\n\t\tbody.replace( node.start, node.end, replacement );\n\t}\n}\n","import hasOwnProp from 'utils/hasOwnProp';\n\nexport default function rewriteExportAssignments ( body, node, parent, exports, scope, capturedUpdates ) {\n\tlet assignee;\n\n\tif ( node.type === 'AssignmentExpression' ) {\n\t\tassignee = node.left;\n\t} else if ( node.type === 'UpdateExpression' ) {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif ( assignee.type !== 'Identifier' ) {\n\t\treturn;\n\t}\n\n\tlet name = assignee.name;\n\n\tif ( scope.contains( name, true ) ) {\n\t\treturn; // shadows an export\n\t}\n\n\tif ( exports && hasOwnProp.call( exports, name ) ) {\n\t\tlet exportAs = exports[ name ];\n\n\t\tif ( !!capturedUpdates ) {\n\t\t\tcapturedUpdates.push({ name, exportAs });\n\t\t\treturn;\n\t\t}\n\n\t\t// special case - increment/decrement operators\n\t\tif ( node.operator === '++' || node.operator === '--' ) {\n\t\t\tlet prefix = ``;\n\t\t\tlet suffix = `, exports.${exportAs} = ${name}`;\n\t\t\tif ( parent.type !== 'ExpressionStatement' ) {\n\t\t\t\tif ( !node.prefix ) {\n\t\t\t\t\tsuffix += `, ${name} ${node.operator === '++' ? '-' : '+'} 1`;\n\t\t\t\t}\n\t\t\t\tprefix += `( `;\n\t\t\t\tsuffix += ` )`;\n\t\t\t}\n\t\t\tbody.insert( node.start, prefix );\n\t\t\tbody.insert( node.end, suffix );\n\t\t} else {\n\t\t\tbody.insert( node.start, `exports.${exportAs} = ` );\n\t\t}\n\t}\n}","import walk from './walk';\nimport disallowIllegalReassignment from './disallowIllegalReassignment';\nimport replaceIdentifiers from './replaceIdentifiers';\nimport rewriteExportAssignments from './rewriteExportAssignments';\n\nexport default function traverseAst ( ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames ) {\n\tlet scope = ast._scope;\n\tlet blockScope = ast._blockScope;\n\tlet capturedUpdates = null;\n\tlet previousCapturedUpdates = null;\n\n\twalk( ast, {\n\t\tenter ( node, parent ) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif ( node._skip ) return this.skip();\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = node._scope;\n\t\t\t} else if ( node._blockScope ) {\n\t\t\t\tblockScope = node._blockScope;\n\t\t\t}\n\n\t\t\t// Special case: if you have a variable declaration that updates existing\n\t\t\t// bindings as a side-effect, e.g. `var a = b++`, where `b` is an exported\n\t\t\t// value, we can't simply append `exports.b = b` to the update (as we\n\t\t\t// normally would) because that would be syntactically invalid. Instead,\n\t\t\t// we capture the change and update the export (and any others) after the\n\t\t\t// variable declaration\n\t\t\tif ( node.type === 'VariableDeclaration' ) {\n\t\t\t\tpreviousCapturedUpdates = capturedUpdates;\n\t\t\t\tcapturedUpdates = [];\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tdisallowIllegalReassignment( node, importedBindings, importedNamespaces, scope );\n\n\t\t\t// Rewrite assignments to exports inside functions, to keep bindings live.\n\t\t\t// This call may mutate `capturedUpdates`, which is used elsewhere\n\t\t\tif ( scope !== ast._scope ) {\n\t\t\t\trewriteExportAssignments( body, node, parent, exportNames, scope, capturedUpdates );\n\t\t\t}\n\n\t\t\tif ( node.type === 'Identifier' && parent.type !== 'FunctionExpression' ) {\n\t\t\t\treplaceIdentifiers( body, node, identifierReplacements, scope );\n\t\t\t}\n\n\t\t\t// Replace top-level this with undefined ES6 8.1.1.5.4\n\t\t\tif ( node.type === 'ThisExpression' && node._topLevel ) {\n\t\t\t\tbody.replace( node.start, node.end, 'undefined' );\n\t\t\t}\n\t\t},\n\n\t\tleave ( node ) {\n\t\t\t// Special case - see above\n\t\t\tif ( node.type === 'VariableDeclaration' ) {\n\t\t\t\tif ( capturedUpdates.length ) {\n\t\t\t\t\tbody.insert( node.end, capturedUpdates.map( exportCapturedUpdate ).join( '' ) );\n\t\t\t\t}\n\n\t\t\t\tcapturedUpdates = previousCapturedUpdates;\n\t\t\t}\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = scope.parent;\n\t\t\t} else if ( node._blockScope ) {\n\t\t\t\tblockScope = blockScope.parent;\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction exportCapturedUpdate ( c ) {\n\treturn ` exports.${c.exportAs} = ${c.name};`;\n}\n","import gatherImports from './gatherImports';\nimport getExportNames from './getExportNames';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\nimport hasOwnProp from 'utils/hasOwnProp';\n\nexport default function transformBody ( mod, body, options ) {\n\tlet [ chains, identifierReplacements ] = gatherImports( mod.imports );\n\tlet exportNames = getExportNames( mod.exports );\n\n\tlet [ importedBindings, importedNamespaces ] = getReadOnlyIdentifiers( mod.imports );\n\n\t// ensure no conflict with `exports`\n\tidentifierReplacements.exports = deconflict( 'exports', mod.ast._declared );\n\n\ttraverseAst( mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames );\n\n\t// Remove import statements from the body of the module\n\tmod.imports.forEach( x => {\n\t\tbody.remove( x.start, x.next );\n\t});\n\n\t// Prepend require() statements (CommonJS output only)\n\tif ( options.header ) {\n\t\tbody.prepend( options.header + '\\n\\n' );\n\t}\n\n\t// Remove export statements (but keep declarations)\n\tmod.exports.forEach( x => {\n\t\tif ( x.isDefault ) {\n\t\t\tif ( /^named/.test( x.type ) ) {\n\t\t\t\t// export default function answer () { return 42; }\n\t\t\t\tbody.remove( x.start, x.valueStart );\n\t\t\t\tbody.insert( x.end, `\\nexports['default'] = ${x.name};` );\n\t\t\t} else {\n\t\t\t\t// everything else\n\t\t\t\tbody.replace( x.start, x.valueStart, 'exports[\\'default\\'] = ' );\n\t\t\t}\n\t\t}\n\n\t\telse {\n\t\t\tswitch ( x.type ) {\n\t\t\t\tcase 'varDeclaration': // export var answer = 42; (or let)\n\t\t\t\tcase 'namedFunction': // export function answer () {...}\n\t\t\t\tcase 'namedClass': // export class answer {...}\n\t\t\t\t\tbody.remove( x.start, x.valueStart );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'named': // export { foo, bar };\n\t\t\t\t\tbody.remove( x.start, x.next );\n\t\t\t\t\tbreak;\n\n\t\t\t\tdefault:\n\t\t\t\t\tbody.replace( x.start, x.valueStart, 'exports[\\'default\\'] = ' );\n\t\t\t}\n\t\t}\n\t});\n\n\t// Append export block (this is the same for all module types, unlike imports)\n\tlet earlyExports = [];\n\tlet lateExports = [];\n\n\tObject.keys( exportNames ).forEach( name => {\n\t\tvar exportAs = exportNames[ name ];\n\n\t\tif ( chains.hasOwnProperty( name ) ) {\n\t\t\t// special case - a binding from another module\n\t\t\tif ( !options._evilES3SafeReExports ) {\n\t\t\t\tearlyExports.push( `Object.defineProperty(exports, '${exportAs}', { enumerable: true, get: function () { return ${chains[name]}; }});` );\n\t\t\t} else {\n\t\t\t\tlateExports.push( `exports.${exportAs} = ${chains[name]};` );\n\t\t\t}\n\t\t} else if ( ~mod.ast._topLevelFunctionNames.indexOf( name ) ) {\n\t\t\t// functions should be exported early, in\n\t\t\t// case of cyclic dependencies\n\t\t\tearlyExports.push( `exports.${exportAs} = ${name};` );\n\t\t} else {\n\t\t\tlateExports.push( `exports.${exportAs} = ${name};` );\n\t\t}\n\t});\n\n\t// Function exports should be exported immediately after 'use strict'\n\tif ( earlyExports.length ) {\n\t\tbody.trim().prepend( earlyExports.join( '\\n' ) + '\\n\\n' );\n\t}\n\n\t// Everything else should be exported at the end\n\tif ( lateExports.length ) {\n\t\tbody.trim().append( '\\n\\n' + lateExports.join( '\\n' ) );\n\t}\n\n\tif ( options.intro && options.outro ) {\n\t\tbody.indent().prepend( options.intro ).trimLines().append( options.outro );\n\t}\n}\n\nfunction deconflict ( name, declared ) {\n\twhile ( hasOwnProp.call( declared, name ) ) {\n\t\tname = '_' + name;\n\t}\n\n\treturn name;\n}\n","import packageResult from '../../../utils/packageResult';\nimport transformBody from './utils/transformBody';\nimport amdIntro from '../../../utils/amd/amdIntro';\n\nexport default function amd ( mod, options ) {\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\timports: mod.imports,\n\t\tindentStr: mod.body.getIndentString(),\n\t\thasExports: mod.exports.length,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody( mod, mod.body, {\n\t\tintro,\n\t\toutro: '\\n\\n});',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult( mod, mod.body, options, 'toAmd' );\n}\n","import packageResult from 'utils/packageResult';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport transformBody from './utils/transformBody';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( mod, options ) {\n\tlet seen = {};\n\n\t// Create block of require statements\n\tlet importBlock = mod.imports.map( x => {\n\t\tif ( !hasOwnProp.call( seen, x.path ) ) {\n\t\t\tseen[ x.path ] = true;\n\n\t\t\tif ( x.isEmpty ) {\n\t\t\t\treturn `${req(x.path)};`;\n\t\t\t}\n\n\t\t\treturn `var ${x.name} = ${req(x.path)};`;\n\t\t}\n\t}).filter( Boolean ).join( '\\n' );\n\n\ttransformBody( mod, mod.body, {\n\t\theader: importBlock,\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\tif ( options.useStrict !== false ) {\n\t\tmod.body.prepend( \"'use strict';\\n\\n\" ).trimLines();\n\t}\n\n\treturn packageResult( mod, mod.body, options, 'toCjs' );\n}\n","import packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport transformBody from './utils/transformBody';\n\nexport default function umd ( mod, options ) {\n\trequireName( options );\n\n\tlet intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody( mod, mod.body, {\n\t\tintro: intro,\n\t\toutro: '\\n\\n}));',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult( mod, mod.body, options, 'toUmd' );\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n","import packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\n\nexport default function amd ( bundle, options ) {\n\tlet defaultName = bundle.entryModule.identifierReplacements.default;\n\tif ( defaultName ) {\n\t\tbundle.body.append( `\\n\\nreturn ${defaultName};` );\n\t}\n\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend( intro ).trimLines().append( '\\n\\n});' );\n\treturn packageResult( bundle, bundle.body, options, 'toAmd', true );\n}","import packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( bundle, options ) {\n\tlet importBlock = bundle.externalModules.map( x => {\n\t\treturn `var ${x.name} = ${req(x.id)};`;\n\t}).join( '\\n' );\n\n\tif ( importBlock ) {\n\t\tbundle.body.prepend( importBlock + '\\n\\n' );\n\t}\n\n\tlet defaultName = bundle.entryModule.identifierReplacements.default;\n\tif ( defaultName ) {\n\t\tbundle.body.append( `\\n\\nmodule.exports = ${defaultName};` );\n\t}\n\n\tif ( options.useStrict !== false ) {\n\t\tbundle.body.prepend(\"'use strict';\\n\\n\").trimLines();\n\t}\n\n\treturn packageResult( bundle, bundle.body, options, 'toCjs', true );\n}\n","import packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\n\nexport default function umd ( bundle, options ) {\n\trequireName( options );\n\n\tlet entry = bundle.entryModule;\n\n\tlet intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( `\\n\\nreturn ${entry.identifierReplacements.default};` );\n\t}\n\n\tbundle.body.indent().prepend( intro ).trimLines().append('\\n\\n}));');\n\n\treturn packageResult( bundle, bundle.body, options, 'toUmd', true );\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","export default function getExportBlock ( entry ) {\n\tlet name = entry.identifierReplacements.default;\n\treturn `exports['default'] = ${name};`;\n}\n","import packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nimport getExportBlock from './utils/getExportBlock';\n\nexport default function amd ( bundle, options ) {\n\tlet externalDefaults = bundle.externalModules.filter( needsDefault );\n\tlet entry = bundle.entryModule;\n\n\tif ( externalDefaults.length ) {\n\t\tlet defaultsBlock = externalDefaults.map( x => {\n\t\t\t// Case 1: default is used, and named is not\n\t\t\tif ( !x.needsNamed ) {\n\t\t\t\treturn `${x.name} = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`;\n\t\t\t}\n\n\t\t\t// Case 2: both default and named are used\n\t\t\treturn `var ${x.name}__default = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`;\n\t\t}).join( '\\n' );\n\n\t\tbundle.body.prepend( defaultsBlock + '\\n\\n' );\n\t}\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( '\\n\\n' + getExportBlock( entry ) );\n\t}\n\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\thasExports: entry.exports.length,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend( intro ).trimLines().append( '\\n\\n});' );\n\treturn packageResult( bundle, bundle.body, options, 'toAmd', true );\n}\n\nfunction needsDefault ( externalModule ) {\n\treturn externalModule.needsDefault;\n}\n","import packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( bundle, options ) {\n\tlet entry = bundle.entryModule;\n\n\tlet importBlock = bundle.externalModules.map( x => {\n\t\tlet statement = `var ${x.name} = ${req(x.id)};`;\n\n\t\tif ( x.needsDefault ) {\n\t\t\tstatement += '\\n' +\n\t\t\t\t( x.needsNamed ? `var ${x.name}__default` : x.name ) +\n\t\t\t\t` = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`;\n\t\t}\n\n\t\treturn statement;\n\t}).join( '\\n' );\n\n\tif ( importBlock ) {\n\t\tbundle.body.prepend( importBlock + '\\n\\n' );\n\t}\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( '\\n\\n' + getExportBlock( entry ) );\n\t}\n\n\tif ( options.useStrict !== false ) {\n\t\tbundle.body.prepend(\"'use strict';\\n\\n\").trimLines();\n\t}\n\n\treturn packageResult( bundle, bundle.body, options, 'toCjs', true );\n}\n","import umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\n\nexport default function umd ( bundle, options ) {\n\trequireName( options );\n\n\tlet entry = bundle.entryModule;\n\n\tlet intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\texternalDefaults: bundle.externalModules.filter( needsDefault ),\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( '\\n\\n' + getExportBlock( entry ) );\n\t}\n\n\tbundle.body.indent().prepend( intro ).trimLines().append('\\n\\n}));');\n\n\treturn packageResult( bundle, bundle.body, options, 'toUmd', true );\n}\n\nfunction needsDefault ( externalModule ) {\n\treturn externalModule.needsDefault;\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n","import packageResult from 'utils/packageResult';\n\nexport default function concat ( bundle, options ) {\n\t// This bundle must be self-contained - no imports or exports\n\tif ( bundle.externalModules.length || bundle.entryModule.exports.length ) {\n\t\tthrow new Error( `bundle.concat() can only be used with bundles that have no imports/exports (imports: [${bundle.externalModules.map(x=>x.id).join(', ')}], exports: [${bundle.entryModule.exports.join(', ')}])` );\n\t}\n\n\t// TODO test these options\n\tlet intro = 'intro' in options ? options.intro : `(function () { 'use strict';\\n\\n`;\n\tlet outro = 'outro' in options ? options.outro : '\\n\\n})();';\n\tlet indent;\n\n\tif ( !( 'indent' in options ) || options.indent === true ) {\n\t\tindent = bundle.body.getIndentString();\n\t} else {\n\t\tindent = options.indent || '';\n\t}\n\n\tbundle.body.trimLines().indent( indent ).prepend( intro ).append( outro );\n\n\treturn packageResult( bundle, bundle.body, options, 'toString', true );\n}\n","import hasNamedImports from 'utils/hasNamedImports';\nimport hasNamedExports from 'utils/hasNamedExports';\nimport getStandaloneModule from 'standalone/getModule';\nimport getBundle from 'bundler/getBundle';\nimport moduleBuilders from 'standalone/builders';\nimport bundleBuilders from 'bundler/builders';\nimport concat from 'bundler/builders/concat';\nimport { getName } from 'utils/mappers';\n\nlet deprecateMessage = 'options.defaultOnly has been deprecated, and is now standard behaviour. To use named imports/exports, pass `strict: true`.';\nlet alreadyWarned = false;\n\nfunction transpileMethod ( format ) {\n\treturn function ( source, options = {} ) {\n\t\tlet mod = getStandaloneModule({\n\t\t\tsource,\n\t\t\tgetModuleName: options.getModuleName,\n\t\t\tstrict: options.strict\n\t\t});\n\n\t\tif ( 'defaultOnly' in options && !alreadyWarned ) {\n\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\tconsole.log( deprecateMessage );\n\t\t\talreadyWarned = true;\n\t\t}\n\n\t\tif ( options.absolutePaths && !options.amdName ) {\n\t\t\tthrow new Error( 'You must specify an `amdName` in order to use the `absolutePaths` option' );\n\t\t}\n\n\t\tlet builder;\n\n\t\tif ( !options.strict ) {\n\t\t\t// ensure there are no named imports/exports. TODO link to a wiki page...\n\t\t\tif ( hasNamedImports( mod ) || hasNamedExports( mod ) ) {\n\t\t\t\tthrow new Error( 'You must be in strict mode (pass `strict: true`) to use named imports or exports' );\n\t\t\t}\n\n\t\t\tbuilder = moduleBuilders.defaultsMode[ format ];\n\t\t} else {\n\t\t\tbuilder = moduleBuilders.strictMode[ format ];\n\t\t}\n\n\t\treturn builder( mod, options );\n\t};\n}\n\nexport default {\n\ttoAmd: transpileMethod( 'amd' ),\n\ttoCjs: transpileMethod( 'cjs' ),\n\ttoUmd: transpileMethod( 'umd' ),\n\n\tbundle: function ( options ) {\n\t\treturn getBundle( options ).then( function ( bundle ) {\n\t\t\treturn {\n\t\t\t\timports: bundle.externalModules.map( mod => mod.id ),\n\t\t\t\texports: flattenExports( bundle.entryModule.exports ),\n\n\t\t\t\ttoAmd: options => transpile( 'amd', options ),\n\t\t\t\ttoCjs: options => transpile( 'cjs', options ),\n\t\t\t\ttoUmd: options => transpile( 'umd', options ),\n\n\t\t\t\tconcat: options => concat( bundle, options || {} )\n\t\t\t};\n\n\t\t\tfunction transpile ( format, options = {} ) {\n\t\t\t\tif ( 'defaultOnly' in options && !alreadyWarned ) {\n\t\t\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\t\t\tconsole.log( deprecateMessage );\n\t\t\t\t\talreadyWarned = true;\n\t\t\t\t}\n\n\t\t\t\tlet builder;\n\n\t\t\t\tif ( !options.strict ) {\n\t\t\t\t\t// ensure there are no named imports/exports\n\t\t\t\t\tif ( hasNamedExports( bundle.entryModule ) ) {\n\t\t\t\t\t\tthrow new Error( 'Entry module can only have named exports in strict mode (pass `strict: true`)' );\n\t\t\t\t\t}\n\n\t\t\t\t\tbundle.modules.forEach( mod => {\n\t\t\t\t\t\tmod.imports.forEach( x => {\n\t\t\t\t\t\t\tif ( x.module.isExternal && ( !x.isDefault && !x.isBatch ) ) {\n\t\t\t\t\t\t\t\tthrow new Error( 'You can only have named external imports in strict mode (pass `strict: true`)' );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\n\t\t\t\t\tbuilder = bundleBuilders.defaultsMode[ format ];\n\t\t\t\t} else {\n\t\t\t\t\tbuilder = bundleBuilders.strictMode[ format ];\n\t\t\t\t}\n\n\t\t\t\treturn builder( bundle, options );\n\t\t\t}\n\t\t});\n\t}\n};\n\nfunction flattenExports ( exports ) {\n\tlet flattened = [];\n\n\texports.forEach( x => {\n\t\tif ( x.isDefault ) {\n\t\t\tflattened.push( 'default' );\n\t\t}\n\n\t\telse if ( x.name ) {\n\t\t\tflattened.push( x.name );\n\t\t}\n\n\t\telse if ( x.specifiers ) {\n\t\t\tflattened.push.apply( flattened, x.specifiers.map( getName ) );\n\t\t}\n\t});\n\n\treturn flattened;\n}\n"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"esperanto.js","sources":["../../../../src/utils/hasNamedImports.js","../../../../src/utils/hasNamedExports.js","../../../../src/utils/ast/walk.js","../../../../src/utils/mappers.js","../../../../src/utils/ast/annotate.js","../../../../src/utils/ast/findImportsAndExports.js","../../../../src/utils/hasOwnProp.js","../../../../src/utils/ast/getUnscopedNames.js","../../../../src/utils/disallowConflictingImports.js","../../../../src/utils/sanitize.js","../../../../src/standalone/getModule.js","../../../../src/utils/resolveId.js","../../../../src/bundler/utils/sortModules.js","../../../../src/bundler/utils/resolveChains.js","../../../../src/utils/builtins.js","../../../../src/bundler/combine/populateModuleNames.js","../../../../src/bundler/combine/populateExternalModuleImports.js","../../../../src/bundler/combine/getRenamedImports.js","../../../../src/bundler/combine/topLevelScopeConflicts.js","../../../../src/bundler/combine/populateIdentifierReplacements.js","../../../../src/bundler/combine/resolveExports.js","../../../../src/utils/getReadOnlyIdentifiers.js","../../../../src/utils/ast/disallowIllegalReassignment.js","../../../../src/utils/ast/replaceIdentifiers.js","../../../../src/utils/ast/rewriteExportAssignments.js","../../../../src/utils/ast/traverse.js","../../../../src/bundler/combine/transformBody.js","../../../../src/bundler/combine/index.js","../../../../src/bundler/getModule.js","../../../../src/bundler/getBundle.js","../../../../src/standalone/builders/defaultsMode/utils/transformExportDeclaration.js","../../../../src/utils/packageResult.js","../../../../src/utils/amd/getImportSummary.js","../../../../src/utils/amd/processName.js","../../../../src/utils/amd/processIds.js","../../../../src/utils/amd/amdIntro.js","../../../../src/standalone/builders/defaultsMode/amd.js","../../../../src/standalone/builders/defaultsMode/cjs.js","../../../../src/utils/umd/umdIntro.js","../../../../src/utils/EsperantoError.js","../../../../src/utils/umd/requireName.js","../../../../src/standalone/builders/defaultsMode/umd.js","../../../../src/standalone/builders/defaultsMode/index.js","../../../../src/standalone/builders/strictMode/utils/gatherImports.js","../../../../src/standalone/builders/strictMode/utils/getExportNames.js","../../../../src/standalone/builders/strictMode/utils/transformBody.js","../../../../src/standalone/builders/strictMode/amd.js","../../../../src/standalone/builders/strictMode/cjs.js","../../../../src/standalone/builders/strictMode/umd.js","../../../../src/standalone/builders/strictMode/index.js","../../../../src/standalone/builders/index.js","../../../../src/bundler/builders/defaultsMode/amd.js","../../../../src/bundler/builders/defaultsMode/cjs.js","../../../../src/bundler/builders/defaultsMode/umd.js","../../../../src/bundler/builders/defaultsMode/index.js","../../../../src/bundler/builders/strictMode/utils/getExportBlock.js","../../../../src/bundler/builders/strictMode/amd.js","../../../../src/bundler/builders/strictMode/cjs.js","../../../../src/bundler/builders/strictMode/umd.js","../../../../src/bundler/builders/strictMode/index.js","../../../../src/bundler/builders/index.js","../../../../src/bundler/builders/concat.js","../../../../src/esperanto.js"],"sourcesContent":["export default function hasNamedImports ( mod ) {\n\tvar i = mod.imports.length;\n\n\twhile ( i-- ) {\n\t\tif ( mod.imports[i].isNamed ) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n","export default function hasNamedExports ( mod ) {\n\tvar i = mod.exports.length;\n\n\twhile ( i-- ) {\n\t\tif ( !mod.exports[i].isDefault ) {\n\t\t\treturn true;\n\t\t}\n\t}\n}\n","let shouldSkip;\nlet shouldAbort;\n\nexport default function walk ( ast, { enter, leave }) {\n\tshouldAbort = false;\n\tvisit( ast, null, enter, leave );\n}\n\nlet context = {\n\tskip: () => shouldSkip = true,\n\tabort: () => shouldAbort = true\n};\n\nlet childKeys = {};\n\nlet toString = Object.prototype.toString;\n\nfunction isArray ( thing ) {\n\treturn toString.call( thing ) === '[object Array]';\n}\n\nfunction visit ( node, parent, enter, leave ) {\n\tif ( !node || shouldAbort ) return;\n\n\tif ( enter ) {\n\t\tshouldSkip = false;\n\t\tenter.call( context, node, parent );\n\t\tif ( shouldSkip || shouldAbort ) return;\n\t}\n\n\tlet keys = childKeys[ node.type ] || (\n\t\tchildKeys[ node.type ] = Object.keys( node ).filter( key => typeof node[ key ] === 'object' )\n\t);\n\n\tlet key, value, i, j;\n\n\ti = keys.length;\n\twhile ( i-- ) {\n\t\tkey = keys[i];\n\t\tvalue = node[ key ];\n\n\t\tif ( isArray( value ) ) {\n\t\t\tj = value.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\tvisit( value[j], node, enter, leave );\n\t\t\t}\n\t\t}\n\n\t\telse if ( value && value.type ) {\n\t\t\tvisit( value, node, enter, leave );\n\t\t}\n\t}\n\n\tif ( leave && !shouldAbort ) {\n\t\tleave( node, parent );\n\t}\n}","export function getId ( m ) {\n\treturn m.id;\n}\n\nexport function getName ( m ) {\n\treturn m.name;\n}\n\nexport function quote ( str ) {\n\treturn \"'\" + JSON.stringify(str).slice(1, -1).replace(/'/g, \"\\\\'\") + \"'\";\n}\n\nexport function req ( path ) {\n\treturn `require(${quote(path)})`;\n}\n\nexport function globalify ( name ) {\n \tif ( /^__dep\\d+__$/.test( name ) ) {\n\t\treturn 'undefined';\n\t} else {\n\t\treturn `global.${name}`;\n\t}\n}\n","/*\n\tThis module traverse a module's AST, attaching scope information\n\tto nodes as it goes, which is later used to determine which\n\tidentifiers need to be rewritten to avoid collisions\n*/\n\nimport walk from './walk';\nimport { getName } from '../mappers';\n\nfunction Scope ( options ) {\n\toptions = options || {};\n\n\tthis.parent = options.parent;\n\tthis.names = options.params || [];\n}\n\nScope.prototype = {\n\tadd: function ( name ) {\n\t\tthis.names.push( name );\n\t},\n\n\tcontains: function ( name, ignoreTopLevel ) {\n\t\tif ( ignoreTopLevel && !this.parent ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( ~this.names.indexOf( name ) ) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif ( this.parent ) {\n\t\t\treturn this.parent.contains( name, ignoreTopLevel );\n\t\t}\n\n\t\treturn false;\n\t}\n};\n\nexport default function annotateAst ( ast ) {\n\tlet scope = new Scope();\n\tlet blockScope = new Scope();\n\tlet declared = {};\n\tlet topLevelFunctionNames = [];\n\tlet templateLiteralRanges = [];\n\n\tlet envDepth = 0;\n\n\twalk( ast, {\n\t\tenter ( node ) {\n\t\t\tif ( node.type === 'ImportDeclaration' || node.type === 'ExportSpecifier' ) {\n\t\t\t\tnode._skip = true;\n\t\t\t}\n\n\t\t\tif ( node._skip ) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tswitch ( node.type ) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth += 1;\n\n\t\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\t\t\t\t\tif ( node.id ) {\n\t\t\t\t\t\taddToScope( node );\n\n\t\t\t\t\t\t// If this is the root scope, this may need to be\n\t\t\t\t\t\t// exported early, so we make a note of it\n\t\t\t\t\t\tif ( !scope.parent && node.type === 'FunctionDeclaration' ) {\n\t\t\t\t\t\t\ttopLevelFunctionNames.push( node.id.name );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tlet names = node.params.map( getName );\n\n\t\t\t\t\tnames.forEach( name => declared[ name ] = true );\n\n\t\t\t\t\tscope = node._scope = new Scope({\n\t\t\t\t\t\tparent: scope,\n\t\t\t\t\t\tparams: names // TODO rest params?\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = node._blockScope = new Scope({\n\t\t\t\t\t\tparent: blockScope\n\t\t\t\t\t});\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'VariableDeclaration':\n\t\t\t\t\tnode.declarations.forEach( node.kind === 'let' ? addToBlockScope : addToScope );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ClassExpression':\n\t\t\t\tcase 'ClassDeclaration':\n\t\t\t\t\taddToScope( node );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'MemberExpression':\n\t\t\t\t\tif ( envDepth === 0 && node.object.type === 'ThisExpression' ) {\n\t\t\t\t\t\tthrow new Error('`this` at the top level is undefined');\n\t\t\t\t\t}\n\t\t\t\t\t!node.computed && ( node.property._skip = true );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'Property':\n\t\t\t\t\tnode.key._skip = true;\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'TemplateLiteral':\n\t\t\t\t\ttemplateLiteralRanges.push([ node.start, node.end ]);\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'ThisExpression':\n\t\t\t\t\tif (envDepth === 0) {\n\t\t\t\t\t\tnode._topLevel = true;\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\t\tleave ( node ) {\n\t\t\tswitch ( node.type ) {\n\t\t\t\tcase 'FunctionExpression':\n\t\t\t\tcase 'FunctionDeclaration':\n\n\t\t\t\t\tenvDepth -= 1;\n\n\t\t\t\t\t// fallthrough\n\n\t\t\t\tcase 'ArrowFunctionExpression':\n\n\t\t\t\t\tscope = scope.parent;\n\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'BlockStatement':\n\t\t\t\t\tblockScope = blockScope.parent;\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t});\n\n\tfunction addToScope ( declarator ) {\n\t\tvar name = declarator.id.name;\n\n\t\tscope.add( name );\n\t\tdeclared[ name ] = true;\n\t}\n\n\tfunction addToBlockScope ( declarator ) {\n\t\tvar name = declarator.id.name;\n\n\t\tblockScope.add( name );\n\t\tdeclared[ name ] = true;\n\t}\n\n\tast._scope = scope;\n\tast._blockScope = blockScope;\n\tast._topLevelNames = ast._scope.names.concat( ast._blockScope.names );\n\tast._topLevelFunctionNames = topLevelFunctionNames;\n\tast._declared = declared;\n\tast._templateLiteralRanges = templateLiteralRanges;\n}\n","/**\n * Inspects a module and discovers/categorises import & export declarations\n * @param {object} mod - the module object\n * @param {string} source - the module's original source code\n * @param {object} ast - the result of parsing `source` with acorn\n * @returns {array} - [ imports, exports ]\n */\nexport default function findImportsAndExports ( mod, source, ast ) {\n\tvar imports = [], exports = [], previousDeclaration;\n\n\tast.body.forEach( node => {\n\t\tvar passthrough, declaration;\n\n\t\tif ( previousDeclaration ) {\n\t\t\tpreviousDeclaration.next = node.start;\n\n\t\t\tif ( node.type !== 'EmptyStatement' ) {\n\t\t\t\tpreviousDeclaration = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( node.type === 'ImportDeclaration' ) {\n\t\t\tdeclaration = processImport( node );\n\t\t\timports.push( declaration );\n\t\t}\n\n\t\telse if ( node.type === 'ExportDefaultDeclaration' ) {\n\t\t\tdeclaration = processDefaultExport( node, source );\n\t\t\texports.push( declaration );\n\n\t\t\tif ( mod.defaultExport ) {\n\t\t\t\tthrow new Error( 'Duplicate default exports' );\n\t\t\t}\n\t\t\tmod.defaultExport = declaration;\n\t\t}\n\n\t\telse if ( node.type === 'ExportNamedDeclaration' ) {\n\t\t\tdeclaration = processExport( node, source );\n\t\t\texports.push( declaration );\n\n\t\t\tif ( node.source ) {\n\t\t\t\t// it's both an import and an export, e.g.\n\t\t\t\t// `export { foo } from './bar';\n\t\t\t\tpassthrough = processImport( node, true );\n\t\t\t\timports.push( passthrough );\n\n\t\t\t\tdeclaration.passthrough = passthrough;\n\t\t\t}\n\t\t}\n\n\t\tif ( declaration ) {\n\t\t\tpreviousDeclaration = declaration;\n\t\t}\n\t});\n\n\t// catch any trailing semicolons\n\tif ( previousDeclaration ) {\n\t\tpreviousDeclaration.next = source.length;\n\t\tpreviousDeclaration.isFinal = true;\n\t}\n\n\treturn [ imports, exports ];\n}\n\n/**\n * Generates a representation of an import declaration\n * @param {object} node - the original AST node\n * @param {boolean} passthrough - `true` if this is an `export { foo } from 'bar'`-style declaration\n * @returns {object}\n */\nfunction processImport ( node, passthrough ) {\n\tvar x = {\n\t\tmodule: null, // used by bundler - filled in later\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end,\n\t\tpassthrough: !!passthrough,\n\n\t\tpath: node.source.value,\n\t\tspecifiers: node.specifiers.map( s => {\n\t\t\tif ( s.type === 'ImportNamespaceSpecifier' ) {\n\t\t\t\treturn {\n\t\t\t\t\tisBatch: true,\n\t\t\t\t\tname: s.local.name, // TODO is this line necessary?\n\t\t\t\t\tas: s.local.name\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tif ( s.type === 'ImportDefaultSpecifier' ) {\n\t\t\t\treturn {\n\t\t\t\t\tisDefault: true,\n\t\t\t\t\tname: 'default',\n\t\t\t\t\tas: s.local.name\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\tname: ( !!passthrough ? s.exported : s.imported ).name,\n\t\t\t\tas: s.local.name\n\t\t\t};\n\t\t})\n\t};\n\n\t// TODO have different types of imports - batch, default, named\n\tif ( x.specifiers.length === 0 ) {\n\t\tx.isEmpty = true;\n\t} else if ( x.specifiers.length === 1 && x.specifiers[0].isDefault ) {\n\t\tx.isDefault = true;\n\t\tx.as = x.specifiers[0].as;\n\n\t} else if ( x.specifiers.length === 1 && x.specifiers[0].isBatch ) {\n\t\tx.isBatch = true;\n\t\tx.as = x.specifiers[0].name;\n\t} else {\n\t\tx.isNamed = true;\n\t}\n\n\treturn x;\n}\n\nfunction processDefaultExport ( node, source ) {\n\tlet result = {\n\t\tisDefault: true,\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end\n\t};\n\n\tlet d = node.declaration;\n\n\tif ( d.type === 'FunctionExpression' ) {\n\t\t// Case 1: `export default function () {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'anonFunction';\n\t}\n\n\telse if ( d.type === 'FunctionDeclaration' ) {\n\t\t// Case 2: `export default function foo () {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'namedFunction';\n\t\tresult.name = d.id.name;\n\t}\n\n\telse if ( d.type === 'ClassExpression' ) {\n\t\t// Case 3: `export default class {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'anonClass';\n\t}\n\n\telse if ( d.type === 'ClassDeclaration' ) {\n\t\t// Case 4: `export default class Foo {...}`\n\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\tresult.type = 'namedClass';\n\t\tresult.name = d.id.name;\n\t}\n\n\telse {\n\t\tresult.type = 'expression';\n\t\tresult.name = 'default';\n\t}\n\n\tresult.value = source.slice( d.start, d.end );\n\tresult.valueStart = d.start;\n\n\treturn result;\n}\n\n/**\n * Generates a representation of an export declaration\n * @param {object} node - the original AST node\n * @param {string} source - the original source code\n * @returns {object}\n */\nfunction processExport ( node, source ) {\n\tvar result, d;\n\n\tresult = {\n\t\tnode: node,\n\t\tstart: node.start,\n\t\tend: node.end\n\t};\n\n\tif ( d = node.declaration ) {\n\t\tresult.value = source.slice( d.start, d.end );\n\t\tresult.valueStart = d.start;\n\n\t\t// Case 1: `export var foo = 'bar'`\n\t\tif ( d.type === 'VariableDeclaration' ) {\n\t\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\t\tresult.type = 'varDeclaration';\n\t\t\tresult.name = d.declarations[0].id.name;\n\t\t}\n\n\t\t// Case 2: `export function foo () {...}`\n\t\telse if ( d.type === 'FunctionDeclaration' ) {\n\t\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\t\tresult.type = 'namedFunction';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\n\t\t// Case 3: `export class Foo {...}`\n\t\telse if ( d.type === 'ClassDeclaration' ) {\n\t\t\tresult.hasDeclaration = true; // TODO remove in favour of result.type\n\t\t\tresult.type = 'namedClass';\n\t\t\tresult.name = d.id.name;\n\t\t}\n\t}\n\n\t// Case 9: `export { foo, bar };`\n\telse {\n\t\tresult.type = 'named';\n\t\tresult.specifiers = node.specifiers.map( s => {\n\t\t\treturn {\n\t\t\t\tname: s.local.name,\n\t\t\t\tas: s.exported.name\n\t\t\t};\n\t\t});\n\t}\n\n\treturn result;\n}\n","var hasOwnProp = Object.prototype.hasOwnProperty;\nexport default hasOwnProp;","import walk from './walk';\nimport hasOwnProp from 'utils/hasOwnProp';\n\nexport default function getUnscopedNames ( mod ) {\n\tvar unscoped = [], importedNames, scope;\n\n\tfunction imported ( name ) {\n\t\tif ( !importedNames ) {\n\t\t\timportedNames = {};\n\t\t\tmod.imports.forEach( i => {\n\t\t\t\t!i.passthrough && i.specifiers.forEach( s => {\n\t\t\t\t\timportedNames[ s.as ] = true;\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\treturn hasOwnProp.call( importedNames, name );\n\t}\n\n\twalk( mod.ast, {\n\t\tenter ( node ) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif ( node._skip ) return this.skip();\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = node._scope;\n\t\t\t}\n\n\t\t\tif ( node.type === 'Identifier' &&\n\t\t\t\t\t !scope.contains( node.name ) &&\n\t\t\t\t\t !imported( node.name ) &&\n\t\t\t\t\t !~unscoped.indexOf( node.name ) ) {\n\t\t\t\tunscoped.push( node.name );\n\t\t\t}\n\t\t},\n\n\t\tleave ( node ) {\n\t\t\tif ( node.type === 'Program' ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = scope.parent;\n\t\t\t}\n\t\t}\n\t});\n\n\treturn unscoped;\n}","import hasOwnProp from './hasOwnProp';\n\nexport default function disallowConflictingImports ( imports ) {\n\tlet usedNames = {};\n\n\timports.forEach( x => {\n\t\tif ( x.passthrough ) return;\n\n\t\tif ( x.as ) {\n\t\t\tcheckName( x.as );\n\t\t} else {\n\t\t\tx.specifiers.forEach( checkSpecifier );\n\t\t}\n\t});\n\n\tfunction checkSpecifier ( s ) {\n\t\tcheckName( s.as );\n\t}\n\n\tfunction checkName ( name ) {\n\t\tif ( hasOwnProp.call( usedNames, name ) ) {\n\t\t\tthrow new SyntaxError( `Duplicated import ('${name}')` );\n\t\t}\n\n\t\tusedNames[ name ] = true;\n\t}\n}\n","const RESERVED = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield'.split( ' ' );\nconst INVALID_CHAR = /[^a-zA-Z0-9_$]/g;\nconst INVALID_LEADING_CHAR = /[^a-zA-Z_$]/;\n\n/**\n * Generates a sanitized (i.e. valid identifier) name from a module ID\n * @param {string} id - a module ID, or part thereof\n * @returns {string}\n */\nexport default function sanitize ( name ) {\n\tname = name.replace( INVALID_CHAR, '_' );\n\n\tif ( INVALID_LEADING_CHAR.test( name[0] ) || ~RESERVED.indexOf( name ) ) {\n\t\tname = `_${name}`;\n\t}\n\n\treturn name;\n}\n\nvar pathSplitRE = /\\/|\\\\/;\nexport function splitPath ( path ) {\n\treturn path.split( pathSplitRE );\n}\n","import acorn from 'acorn';\nimport MagicString from 'magic-string';\nimport annotateAst from 'utils/ast/annotate';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\n\nconst SOURCEMAPPINGURL_REGEX = /^# sourceMappingURL=/;\n\nexport default function getStandaloneModule ( options ) {\n\tlet code, ast;\n\n\tif ( typeof options.source === 'object' ) {\n\t\tcode = options.source.code;\n\t\tast = options.source.ast;\n\t} else {\n\t\tcode = options.source;\n\t}\n\n\tlet toRemove = [];\n\n\tlet mod = {\n\t\tbody: new MagicString( code ),\n\t\tast: ast || ( acorn.parse( code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment ( block, text, start, end ) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif ( !block && SOURCEMAPPINGURL_REGEX.test( text ) ) {\n\t\t\t\t\ttoRemove.push({ start, end });\n\t\t\t\t}\n\t\t\t}\n\t\t}))\n\t};\n\n\ttoRemove.forEach( ({ start, end }) => mod.body.remove( start, end ) );\n\n\tlet [ imports, exports ] = findImportsAndExports( mod, code, mod.ast );\n\n\tdisallowConflictingImports( imports );\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\n\tlet conflicts = {};\n\n\tif ( options.strict ) {\n\t\tannotateAst( mod.ast );\n\n\t\t// TODO there's probably an easier way to get this array\n\t\tObject.keys( mod.ast._declared ).concat( getUnscopedNames( mod ) ).forEach( n => {\n\t\t\tconflicts[n] = true;\n\t\t});\n\t}\n\n\tdetermineImportNames( imports, options.getModuleName, conflicts );\n\n\treturn mod;\n}\n\nfunction determineImportNames ( imports, userFn, usedNames ) {\n\tlet nameById = {};\n\tlet inferredNames = {};\n\n\timports.forEach( x => {\n\t\tlet moduleId = x.path;\n\t\tlet name;\n\n\t\tmoduleId = x.path;\n\n\t\t// use existing value\n\t\tif ( hasOwnProp.call( nameById, moduleId ) ) {\n\t\t\tx.name = nameById[ moduleId ];\n\t\t\treturn;\n\t\t}\n\n\t\t// if user supplied a function, defer to it\n\t\tif ( userFn && ( name = userFn( moduleId ) ) ) {\n\t\t\tname = sanitize( name );\n\n\t\t\tif ( hasOwnProp.call( usedNames, name ) ) {\n\t\t\t\t// TODO write a test for this\n\t\t\t\tthrow new Error( `Naming collision: module ${moduleId} cannot be called ${name}` );\n\t\t\t}\n\t\t}\n\n\t\telse {\n\t\t\tlet parts = splitPath( moduleId );\n\t\t\tlet i;\n\t\t\tlet prefix = '';\n\t\t\tlet candidate;\n\n\t\t\tdo {\n\t\t\t\ti = parts.length;\n\t\t\t\twhile ( i-- > 0 ) {\n\t\t\t\t\tcandidate = prefix + sanitize( parts.slice( i ).join( '__' ) );\n\n\t\t\t\t\tif ( !hasOwnProp.call( usedNames, candidate ) ) {\n\t\t\t\t\t\tname = candidate;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tprefix += '_';\n\t\t\t} while ( !name );\n\t\t}\n\n\t\tusedNames[ name ] = true;\n\t\tnameById[ moduleId ] = name;\n\n\t\tx.name = name;\n\t});\n\n\t// use inferred names for default imports, wherever they\n\t// don't clash with path-based names\n\timports.forEach( x => {\n\t\tif ( x.as && !hasOwnProp.call( usedNames, x.as ) ) {\n\t\t\tinferredNames[ x.path ] = x.as;\n\t\t}\n\t});\n\n\timports.forEach( x => {\n\t\tif ( hasOwnProp.call( inferredNames, x.path ) ) {\n\t\t\tx.name = inferredNames[ x.path ];\n\t\t}\n\t});\n}\n","import { splitPath } from 'utils/sanitize';\n\n/**\n * Resolves an importPath relative to the module that is importing it\n * @param {string} importPath - the (possibly relative) path of an imported module\n * @param {string} importerPath - the (relative to `base`) path of the importing module\n * @returns {string}\n */\nexport default function resolveId ( importPath, importerPath ) {\n\tvar resolved, importerParts, importParts;\n\n\tif ( importPath[0] !== '.' ) {\n\t\tresolved = importPath;\n\t} else {\n\t\timporterParts = splitPath( importerPath );\n\t\timportParts = splitPath( importPath );\n\n\t\tif ( importParts[0] === '.' ) {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\timporterParts.pop(); // get dirname\n\t\twhile ( importParts[0] === '..' ) {\n\t\t\timportParts.shift();\n\t\t\timporterParts.pop();\n\t\t}\n\n\t\twhile ( importParts[0] === '.' ) {\n\t\t\timportParts.shift();\n\t\t}\n\n\t\tresolved = importerParts.concat( importParts ).join( '/' );\n\t}\n\n\treturn resolved;\n}\n\nexport function resolveAgainst ( importerPath ) {\n\treturn function ( importPath ) {\n\t\treturn resolveId( importPath, importerPath );\n\t};\n}\n","import hasOwnProp from 'utils/hasOwnProp';\nimport walk from 'utils/ast/walk';\n\nexport default function sortModules ( entry ) {\n\tlet seen = {};\n\tlet ordered = [];\n\tlet hasCycles;\n\n\tlet strongDeps = {};\n\tlet stronglyDependsOn = {};\n\n\tfunction visit ( mod ) {\n\t\tconst { id } = mod;\n\n\t\tseen[ id ] = true;\n\n\t\tstrongDeps[ id ] = [];\n\t\tstronglyDependsOn[ id ] = {};\n\n\t\tmod.imports.forEach( x => {\n\t\t\tconst imported = x.module;\n\n\t\t\tif ( imported.isExternal || imported.isSkipped ) return;\n\n\t\t\t// if `mod` references a binding from `imported` at the top\n\t\t\t// level (i.e. outside function bodies), we say that `mod`\n\t\t\t// strongly depends on `imported. If two modules depend on\n\t\t\t// each other, this helps us order them such that if a\n\t\t\t// strongly depends on b, and b weakly depends on a, b\n\t\t\t// goes first\n\t\t\tif ( referencesAtTopLevel( mod, imported ) ) {\n\t\t\t\tstrongDeps[ id ].push( imported );\n\t\t\t}\n\n\t\t\tif ( hasOwnProp.call( seen, imported.id ) ) {\n\t\t\t\t// we need to prevent an infinite loop, and note that\n\t\t\t\t// we need to check for strong/weak dependency relationships\n\t\t\t\thasCycles = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvisit( imported );\n\t\t});\n\n\t\t// add second (and third...) order dependencies\n\t\tfunction addStrongDependencies ( dependency ) {\n\t\t\tif ( hasOwnProp.call( stronglyDependsOn[ id ], dependency.id ) ) return;\n\n\t\t\tstronglyDependsOn[ id ][ dependency.id ] = true;\n\t\t\tstrongDeps[ dependency.id ].forEach( addStrongDependencies );\n\t\t}\n\n\t\tstrongDeps[ id ].forEach( addStrongDependencies );\n\n\t\tordered.push( mod );\n\t}\n\n\tvisit( entry );\n\n\tlet unordered;\n\n\tif ( hasCycles ) {\n\t\tunordered = ordered;\n\t\tordered = [];\n\n\t\t// unordered is actually semi-ordered, as [ fewer dependencies ... more dependencies ]\n\t\tunordered.forEach( x => {\n\t\t\t// ensure strong dependencies of x that don't strongly depend on x go first\n\t\t\tstrongDeps[ x.id ].forEach( place );\n\n\t\t\tfunction place ( dep ) {\n\t\t\t\tif ( !stronglyDependsOn[ dep.id ][ x.id ] && !~ordered.indexOf( dep ) ) {\n\t\t\t\t\tstrongDeps[ dep.id ].forEach( place );\n\t\t\t\t\tordered.push( dep );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( !~ordered.indexOf( x ) ) {\n\t\t\t\tordered.push( x );\n\t\t\t}\n\t\t});\n\t}\n\n\treturn ordered;\n}\n\nfunction referencesAtTopLevel ( a, b ) {\n\tlet bindings = [];\n\n\t// find out which bindings a imports from b\n\tlet i = a.imports.length;\n\twhile ( i-- ) {\n\t\tif ( a.imports[i].module === b ) {\n\t\t\tbindings.push.apply( bindings, a.imports[i].specifiers.map( x => x.as ) );\n\t\t}\n\t}\n\n\t// see if any of those bindings are referenced at the top level\n\tlet referencedAtTopLevel = false;\n\n\twalk( a.ast, {\n\t\tenter ( node ) {\n\t\t\tif ( /^Import/.test( node.type ) || ( node._scope && node._scope.parent ) ) {\n\t\t\t\treturn this.skip();\n\t\t\t}\n\n\t\t\tif ( node.type === 'Identifier' && ~bindings.indexOf( node.name ) ) {\n\t\t\t\treferencedAtTopLevel = true;\n\t\t\t\tthis.abort();\n\t\t\t}\n\t\t}\n\t});\n\n\treturn referencedAtTopLevel;\n}","import hasOwnProp from 'utils/hasOwnProp';\n\nexport default function resolveChains ( modules, moduleLookup ) {\n\tvar chains = {};\n\n\t// First pass - resolving intra-module chains\n\tmodules.forEach( mod => {\n\t\tvar origin = {};\n\n\t\tmod.imports.forEach( x => {\n\t\t\tconst imported = x.module;\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tif ( s.isBatch ) {\n\t\t\t\t\t// tell that module that it needs to export an object full of getters\n\t\t\t\t\timported._exportsNamespace = true;\n\t\t\t\t\treturn; // TODO can batch imports be chained?\n\t\t\t\t}\n\n\t\t\t\torigin[ s.as ] = `${s.name}@${imported.id}`;\n\t\t\t});\n\t\t});\n\n\t\tmod.exports.forEach( x => {\n\t\t\tif ( !x.specifiers ) return;\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tif ( hasOwnProp.call( origin, s.name ) ) {\n\t\t\t\t\tchains[ `${s.name}@${mod.id}` ] = origin[ s.name ];\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n\n\t// Second pass - assigning origins to specifiers\n\tmodules.forEach( mod => {\n\t\tmod.imports.forEach( x => {\n\t\t\tconst imported = x.module;\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tif ( s.isBatch ) {\n\t\t\t\t\treturn; // TODO can batch imports be chained?\n\t\t\t\t}\n\n\t\t\t\tsetOrigin( s, `${s.name}@${imported.id}`, chains, moduleLookup );\n\t\t\t});\n\t\t});\n\n\t\tmod.exports.forEach( x => {\n\t\t\tif ( !x.specifiers ) return;\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tsetOrigin( s, `${s.name}@${mod.id}`, chains, moduleLookup );\n\t\t\t});\n\t\t});\n\t});\n}\n\nfunction setOrigin ( specifier, hash, chains, moduleLookup ) {\n\tlet isChained;\n\n\twhile ( hasOwnProp.call( chains, hash ) ) {\n\t\thash = chains[ hash ];\n\t\tisChained = true;\n\t}\n\n\tif ( isChained ) {\n\t\tconst [ name, moduleId ] = hash.split( '@' );\n\t\tspecifier.origin = { module: moduleLookup[ moduleId ], name };\n\t}\n}\n","// from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects\n// we add `exports` to this list, to avoid conflicts\nexport default 'Array ArrayBuffer DataView Date Error EvalError Float32Array Float64Array Function Generator GeneratorFunction Infinity Int16Array Int32Array Int8Array InternalError Intl Iterator JSON Map Math NaN Number Object ParallelArray Promise Proxy RangeError ReferenceError Reflect RegExp Set StopIteration String Symbol SyntaxError TypeError TypedArray URIError Uint16Array Uint32Array Uint8Array Uint8ClampedArray WeakMap WeakSet decodeURI decodeURIComponent encodeURI encodeURIComponent escape eval exports isFinite isNaN null parseFloat parseInt undefined unescape uneval'.split( ' ' );","import hasOwnProp from 'utils/hasOwnProp';\nimport builtins from 'utils/builtins';\nimport { default as sanitize, splitPath } from 'utils/sanitize';\n\nexport default function getUniqueNames ( bundle ) {\n\tlet { modules, externalModules } = bundle;\n\tlet userNames = bundle.names;\n\tlet names = {};\n\n\tlet used = modules.reduce( ( declared, mod ) => {\n\t\tObject.keys( mod.ast._declared ).forEach( x => declared[x] = true );\n\t\treturn declared;\n\t}, {} );\n\n\t// copy builtins\n\tbuiltins.forEach( n => used[n] = true );\n\n\t// copy user-specified names\n\tif ( userNames ) {\n\t\tObject.keys( userNames ).forEach( id => {\n\t\t\tnames[ id ] = userNames[ id ];\n\t\t\tused[ userNames[ id ] ] = true;\n\t\t});\n\t}\n\n\t// infer names from default imports - e.g. with `import _ from './utils'`,\n\t// use '_' instead of generating a name from 'utils'\n\tfunction inferName ( x ) {\n\t\tif ( x.isDefault && !hasOwnProp.call( names, x.module.id ) && !hasOwnProp.call( used, x.as ) ) {\n\t\t\tnames[ x.module.id ] = x.as;\n\t\t\tused[ x.as ] = true;\n\t\t}\n\t}\n\tmodules.forEach( mod => {\n\t\tmod.imports.forEach( inferName );\n\t});\n\n\t// for the rest, make names as compact as possible without\n\t// introducing conflicts\n\tmodules.concat( externalModules ).forEach( mod => {\n\t\t// is this already named?\n\t\tif ( hasOwnProp.call( names, mod.id ) ) {\n\t\t\tmod.name = names[ mod.id ];\n\t\t\treturn;\n\t\t}\n\n\t\tlet name;\n\t\tlet parts = splitPath( mod.id );\n\t\tlet i = parts.length;\n\n\t\twhile ( i-- ) {\n\t\t\tname = sanitize( parts.slice( i ).join( '_' ) );\n\n\t\t\tif ( !hasOwnProp.call( used, name ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\twhile ( hasOwnProp.call( used, name ) ) {\n\t\t\tname = '_' + name;\n\t\t}\n\n\t\tused[ name ] = true;\n\t\tmod.name = name;\n\t});\n\n\treturn names;\n}\n","export default function populateExternalModuleImports ( bundle ) {\n\tbundle.modules.forEach( mod => {\n\t\tmod.imports.forEach( x => {\n\t\t\tconst externalModule = x.module;\n\n\t\t\tif ( !externalModule.isExternal ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tif ( s.isDefault ) {\n\t\t\t\t\texternalModule.needsDefault = true;\n\t\t\t\t} else {\n\t\t\t\t\texternalModule.needsNamed = true;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n}","export default function getRenamedImports ( mod ) {\n\tvar renamed = [];\n\n\tmod.imports.forEach( x => {\n\t\tif ( x.specifiers ) {\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tif ( s.name !== s.as && !~renamed.indexOf( s.name ) ) {\n\t\t\t\t\trenamed.push( s.name );\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\n\treturn renamed;\n}","import hasOwnProp from 'utils/hasOwnProp';\nimport builtins from 'utils/builtins';\nimport getUnscopedNames from 'utils/ast/getUnscopedNames';\nimport { getName } from 'utils/mappers';\nimport getRenamedImports from './getRenamedImports';\n\nexport default function topLevelScopeConflicts ( bundle ) {\n\tlet conflicts = {};\n\tlet inBundle = {};\n\tlet importNames = bundle.externalModules.map( getName );\n\n\tbundle.modules.forEach( mod => {\n\t\tlet names = builtins\n\n\t\t\t// all top defined identifiers are in top scope\n\t\t\t.concat( mod.ast._topLevelNames )\n\n\t\t\t// all unattributed identifiers could collide with top scope\n\t\t\t.concat( getUnscopedNames( mod ) )\n\n\t\t\t.concat( importNames )\n\n\t\t\t.concat( getRenamedImports( mod ) );\n\n\t\tif ( mod._exportsNamespace ) {\n\t\t\tconflicts[ mod.name ] = true;\n\t\t}\n\n\t\t// merge this module's top scope with bundle top scope\n\t\tnames.forEach( name => {\n\t\t\tif ( hasOwnProp.call( inBundle, name ) ) {\n\t\t\t\tconflicts[ name ] = true;\n\t\t\t} else {\n\t\t\t\tinBundle[ name ] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn conflicts;\n}","import hasOwnProp from 'utils/hasOwnProp';\nimport topLevelScopeConflicts from './topLevelScopeConflicts';\n\n/**\n * Figures out which identifiers need to be rewritten within\n a bundle to avoid conflicts\n * @param {object} bundle - the bundle\n * @returns {object}\n */\nexport default function populateIdentifierReplacements ( bundle ) {\n\t// first, discover conflicts\n\tlet conflicts = topLevelScopeConflicts( bundle );\n\n\t// then figure out what identifiers need to be created\n\t// for default exports\n\tbundle.modules.forEach( mod => {\n\t\tlet x = mod.defaultExport;\n\n\t\tif ( x ) {\n\t\t\tlet result;\n\n\t\t\tif ( x.hasDeclaration && x.name ) {\n\t\t\t\tresult = hasOwnProp.call( conflicts, x.name ) || otherModulesDeclare( mod, x.name ) ?\n\t\t\t\t\t`${mod.name}__${x.name}` :\n\t\t\t\t\tx.name;\n\t\t\t} else {\n\t\t\t\tresult = hasOwnProp.call( conflicts, mod.name ) || ( x.value !== mod.name && ~mod.ast._topLevelNames.indexOf( mod.name )) || otherModulesDeclare( mod, mod.name ) ?\n\t\t\t\t\t`${mod.name}__default` :\n\t\t\t\t\tmod.name;\n\t\t\t}\n\n\t\t\tmod.identifierReplacements.default = result;\n\t\t}\n\t});\n\n\t// then determine which existing identifiers\n\t// need to be replaced\n\tbundle.modules.forEach( mod => {\n\t\tlet moduleIdentifiers = mod.identifierReplacements;\n\n\t\tmod.ast._topLevelNames.forEach( n => {\n\t\t\tmoduleIdentifiers[n] = hasOwnProp.call( conflicts, n ) ?\n\t\t\t\t`${mod.name}__${n}` :\n\t\t\t\tn;\n\t\t});\n\n\t\tmod.imports.forEach( x => {\n\t\t\tif ( x.passthrough ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst imported = x.module;\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tlet replacement;\n\n\t\t\t\tif ( s.isBatch ) {\n\t\t\t\t\treplacement = x.module.name;\n\t\t\t\t}\n\n\t\t\t\telse {\n\t\t\t\t\tlet mod;\n\t\t\t\t\tlet specifierName;\n\n\t\t\t\t\tif ( s.origin ) {\n\t\t\t\t\t\t// chained bindings\n\t\t\t\t\t\tmod = s.origin.module;\n\t\t\t\t\t\tspecifierName = s.origin.name;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tmod = imported;\n\t\t\t\t\t\tspecifierName = s.name;\n\t\t\t\t\t}\n\n\t\t\t\t\tconst moduleName = mod && mod.name;\n\n\t\t\t\t\tif ( specifierName === 'default' ) {\n\t\t\t\t\t\t// if it's an external module, always use __default if the\n\t\t\t\t\t\t// bundle also uses named imports\n\t\t\t\t\t\tif ( imported.isExternal ) {\n\t\t\t\t\t\t\treplacement = imported.needsNamed ? `${moduleName}__default` : moduleName;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// TODO We currently need to check for the existence of `mod`, because modules\n\t\t\t\t\t\t// can be skipped. Would be better to replace skipped modules with dummies\n\t\t\t\t\t\t// - see https://github.com/Rich-Harris/esperanto/issues/32\n\t\t\t\t\t\telse if ( mod && !mod.isSkipped ) {\n\t\t\t\t\t\t\treplacement = mod.identifierReplacements.default;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if ( !imported.isExternal ) {\n\t\t\t\t\t\treplacement = hasOwnProp.call( conflicts, specifierName ) ?\n\t\t\t\t\t\t\t`${moduleName}__${specifierName}` :\n\t\t\t\t\t\t\tspecifierName;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treplacement = moduleName + '.' + specifierName;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif ( replacement !== s.as ) {\n\t\t\t\t\tmoduleIdentifiers[ s.as ] = replacement;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t});\n\n\tfunction otherModulesDeclare ( mod, replacement ) {\n\t\tvar i, otherMod;\n\n\t\ti = bundle.modules.length;\n\t\twhile ( i-- ) {\n\t\t\totherMod = bundle.modules[i];\n\n\t\t\tif ( mod === otherMod ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif ( hasOwnProp.call( otherMod.ast._declared, replacement ) ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t}\n}\n","export default function resolveExports ( bundle ) {\n\tlet bundleExports = {};\n\n\tbundle.entryModule.exports.forEach( x => {\n\t\tif ( x.specifiers ) {\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tlet module;\n\t\t\t\tlet name;\n\n\t\t\t\tif ( s.origin ) {\n\t\t\t\t\tmodule = s.origin.module;\n\t\t\t\t\tname = s.origin.name;\n\t\t\t\t} else {\n\t\t\t\t\tmodule = bundle.entryModule;\n\t\t\t\t\tname = s.name;\n\t\t\t\t}\n\n\t\t\t\taddExport( module, name, s.name );\n\t\t\t});\n\t\t}\n\n\t\telse if ( !x.isDefault && x.name ) {\n\t\t\taddExport( bundle.entryModule, x.name, x.name );\n\t\t}\n\t});\n\n\tfunction addExport ( module, name, as ) {\n\t\tif ( !bundleExports[ module.id ] ) {\n\t\t\tbundleExports[ module.id ] = {};\n\t\t}\n\n\t\tbundleExports[ module.id ][ name ] = as;\n\t}\n\n\treturn bundleExports;\n}","/**\n * Scans an array of imports, and determines which identifiers\n are readonly, and which cannot be assigned to. For example\n you cannot `import foo from 'foo'` then do `foo = 42`, nor\n can you `import * as foo from 'foo'` then do `foo.answer = 42`\n * @param {array} imports - the array of imports\n * @returns {array} [ importedBindings, importedNamespaces ]\n */\nexport default function getReadOnlyIdentifiers ( imports ) {\n\tvar importedBindings = {}, importedNamespaces = {};\n\n\timports.forEach( x => {\n\t\tif ( x.passthrough ) return;\n\n\t\tx.specifiers.forEach( s => {\n\t\t\tif ( s.isBatch ) {\n\t\t\t\timportedNamespaces[ s.as ] = true;\n\t\t\t} else {\n\t\t\t\timportedBindings[ s.as ] = true;\n\t\t\t}\n\t\t});\n\t});\n\n\treturn [ importedBindings, importedNamespaces ];\n}","import hasOwnProp from 'utils/hasOwnProp';\n\nvar bindingMessage = 'Cannot reassign imported binding ',\n\tnamespaceMessage = 'Cannot reassign imported binding of namespace ';\n\nexport default function disallowIllegalReassignment ( node, importedBindings, importedNamespaces, scope ) {\n\tlet assignee, isNamespaceAssignment;\n\n\tif ( node.type === 'AssignmentExpression' ) {\n\t\tassignee = node.left;\n\t} else if ( node.type === 'UpdateExpression' ) {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif ( assignee.type === 'MemberExpression' ) {\n\t\tassignee = assignee.object;\n\t\tisNamespaceAssignment = true;\n\t}\n\n\tif ( assignee.type !== 'Identifier' ) {\n\t\treturn; // not assigning to a binding\n\t}\n\n\tlet name = assignee.name;\n\n\tif ( hasOwnProp.call( isNamespaceAssignment ? importedNamespaces : importedBindings, name ) && !scope.contains( name ) ) {\n\t\tthrow new Error( ( isNamespaceAssignment ? namespaceMessage : bindingMessage ) + '`' + name + '`' );\n\t}\n}\n","import hasOwnProp from 'utils/hasOwnProp';\n\nexport default function replaceIdentifiers ( body, node, identifierReplacements, scope ) {\n\tlet name = node.name;\n\tlet replacement = hasOwnProp.call( identifierReplacements, name ) && identifierReplacements[ name ];\n\n\t// TODO unchanged identifiers shouldn't have got this far -\n\t// remove the `replacement !== name` safeguard once that's the case\n\tif ( replacement && replacement !== name && !scope.contains( name, true ) ) {\n\t\t// rewrite\n\t\tbody.replace( node.start, node.end, replacement );\n\t}\n}\n","import hasOwnProp from 'utils/hasOwnProp';\n\nexport default function rewriteExportAssignments ( body, node, parent, exports, scope, capturedUpdates ) {\n\tlet assignee;\n\n\tif ( node.type === 'AssignmentExpression' ) {\n\t\tassignee = node.left;\n\t} else if ( node.type === 'UpdateExpression' ) {\n\t\tassignee = node.argument;\n\t} else {\n\t\treturn; // not an assignment\n\t}\n\n\tif ( assignee.type !== 'Identifier' ) {\n\t\treturn;\n\t}\n\n\tlet name = assignee.name;\n\n\tif ( scope.contains( name, true ) ) {\n\t\treturn; // shadows an export\n\t}\n\n\tif ( exports && hasOwnProp.call( exports, name ) ) {\n\t\tlet exportAs = exports[ name ];\n\n\t\tif ( !!capturedUpdates ) {\n\t\t\tcapturedUpdates.push({ name, exportAs });\n\t\t\treturn;\n\t\t}\n\n\t\t// special case - increment/decrement operators\n\t\tif ( node.operator === '++' || node.operator === '--' ) {\n\t\t\tlet prefix = ``;\n\t\t\tlet suffix = `, exports.${exportAs} = ${name}`;\n\t\t\tif ( parent.type !== 'ExpressionStatement' ) {\n\t\t\t\tif ( !node.prefix ) {\n\t\t\t\t\tsuffix += `, ${name} ${node.operator === '++' ? '-' : '+'} 1`;\n\t\t\t\t}\n\t\t\t\tprefix += `( `;\n\t\t\t\tsuffix += ` )`;\n\t\t\t}\n\t\t\tbody.insert( node.start, prefix );\n\t\t\tbody.insert( node.end, suffix );\n\t\t} else {\n\t\t\tbody.insert( node.start, `exports.${exportAs} = ` );\n\t\t}\n\t}\n}","import walk from './walk';\nimport disallowIllegalReassignment from './disallowIllegalReassignment';\nimport replaceIdentifiers from './replaceIdentifiers';\nimport rewriteExportAssignments from './rewriteExportAssignments';\n\nexport default function traverseAst ( ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames ) {\n\tlet scope = ast._scope;\n\tlet blockScope = ast._blockScope;\n\tlet capturedUpdates = null;\n\tlet previousCapturedUpdates = null;\n\n\twalk( ast, {\n\t\tenter ( node, parent ) {\n\t\t\t// we're only interested in references, not property names etc\n\t\t\tif ( node._skip ) return this.skip();\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = node._scope;\n\t\t\t} else if ( node._blockScope ) {\n\t\t\t\tblockScope = node._blockScope;\n\t\t\t}\n\n\t\t\t// Special case: if you have a variable declaration that updates existing\n\t\t\t// bindings as a side-effect, e.g. `var a = b++`, where `b` is an exported\n\t\t\t// value, we can't simply append `exports.b = b` to the update (as we\n\t\t\t// normally would) because that would be syntactically invalid. Instead,\n\t\t\t// we capture the change and update the export (and any others) after the\n\t\t\t// variable declaration\n\t\t\tif ( node.type === 'VariableDeclaration' ) {\n\t\t\t\tpreviousCapturedUpdates = capturedUpdates;\n\t\t\t\tcapturedUpdates = [];\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tdisallowIllegalReassignment( node, importedBindings, importedNamespaces, scope );\n\n\t\t\t// Rewrite assignments to exports inside functions, to keep bindings live.\n\t\t\t// This call may mutate `capturedUpdates`, which is used elsewhere\n\t\t\tif ( scope !== ast._scope ) {\n\t\t\t\trewriteExportAssignments( body, node, parent, exportNames, scope, capturedUpdates );\n\t\t\t}\n\n\t\t\tif ( node.type === 'Identifier' && parent.type !== 'FunctionExpression' ) {\n\t\t\t\treplaceIdentifiers( body, node, identifierReplacements, scope );\n\t\t\t}\n\n\t\t\t// Replace top-level this with undefined ES6 8.1.1.5.4\n\t\t\tif ( node.type === 'ThisExpression' && node._topLevel ) {\n\t\t\t\tbody.replace( node.start, node.end, 'undefined' );\n\t\t\t}\n\t\t},\n\n\t\tleave ( node ) {\n\t\t\t// Special case - see above\n\t\t\tif ( node.type === 'VariableDeclaration' ) {\n\t\t\t\tif ( capturedUpdates.length ) {\n\t\t\t\t\tbody.insert( node.end, capturedUpdates.map( exportCapturedUpdate ).join( '' ) );\n\t\t\t\t}\n\n\t\t\t\tcapturedUpdates = previousCapturedUpdates;\n\t\t\t}\n\n\t\t\tif ( node._scope ) {\n\t\t\t\tscope = scope.parent;\n\t\t\t} else if ( node._blockScope ) {\n\t\t\t\tblockScope = blockScope.parent;\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction exportCapturedUpdate ( c ) {\n\treturn ` exports.${c.exportAs} = ${c.name};`;\n}\n","import hasOwnProp from 'utils/hasOwnProp';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\n\nexport default function transformBody ( bundle, mod, body ) {\n\tlet identifierReplacements = mod.identifierReplacements;\n\tlet [ importedBindings, importedNamespaces ] = getReadOnlyIdentifiers( mod.imports );\n\n\tlet exportNames = hasOwnProp.call( bundle.exports, mod.id ) && bundle.exports[ mod.id ];\n\n\ttraverseAst( mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames );\n\n\t// Remove import statements\n\tmod.imports.forEach( x => {\n\t\tif ( !x.passthrough ) {\n\t\t\tbody.remove( x.start, x.next );\n\t\t}\n\t});\n\n\tlet shouldExportEarly = {};\n\n\t// Remove export statements\n\tmod.exports.forEach( x => {\n\t\tvar name;\n\n\t\tif ( x.isDefault ) {\n\t\t\tif ( x.type === 'namedFunction' || x.type === 'namedClass' ) {\n\t\t\t\t// if you have a default export like\n\t\t\t\t//\n\t\t\t\t// export default function foo () {...}\n\t\t\t\t//\n\t\t\t\t// you need to rewrite it as\n\t\t\t\t//\n\t\t\t\t// function foo () {...}\n\t\t\t\t// exports.default = foo;\n\t\t\t\t//\n\t\t\t\t// as the `foo` reference may be used elsewhere\n\n\t\t\t\t// remove the `export default `, keep the rest\n\t\t\t\tbody.remove( x.start, x.valueStart );\n\t\t\t}\n\n\t\t\telse if ( x.node.declaration && ( name = x.node.declaration.name ) ) {\n\t\t\t\tif ( name === identifierReplacements.default ) {\n\t\t\t\t\tbody.remove( x.start, x.end );\n\t\t\t\t} else {\n\t\t\t\t\tlet original = hasOwnProp.call( identifierReplacements, name ) ? identifierReplacements[ name ] : name;\n\t\t\t\t\tbody.replace( x.start, x.end, `var ${identifierReplacements.default} = ${original};` );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\telse {\n\t\t\t\tbody.replace( x.start, x.valueStart, `var ${identifierReplacements.default} = ` );\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tif ( x.hasDeclaration ) {\n\t\t\tif ( x.type === 'namedFunction' ) {\n\t\t\t\tshouldExportEarly[ x.name ] = true; // TODO what about `function foo () {}; export { foo }`?\n\t\t\t}\n\n\t\t\tbody.remove( x.start, x.valueStart );\n\t\t} else {\n\t\t\tbody.remove( x.start, x.next );\n\t\t}\n\t});\n\n\t// If this module exports a namespace - i.e. another module does\n\t// `import * from 'foo'` - then we need to make all this module's\n\t// exports available, using Object.defineProperty\n\tvar indentStr = body.getIndentString();\n\tif ( mod._exportsNamespace ) {\n\t\tlet namespaceExportBlock = `var ${mod.name} = {\\n`,\n\t\t\tnamespaceExports = [];\n\n\t\tmod.exports.forEach( x => {\n\t\t\tif ( x.hasDeclaration ) {\n\t\t\t\tnamespaceExports.push( indentStr + `get ${x.name} () { return ${identifierReplacements[x.name]}; }` );\n\t\t\t}\n\n\t\t\telse if ( x.isDefault ) {\n\t\t\t\tnamespaceExports.push( indentStr + `get default () { return ${identifierReplacements.default}; }` );\n\t\t\t}\n\n\t\t\telse {\n\t\t\t\tx.specifiers.forEach( s => {\n\t\t\t\t\tnamespaceExports.push( indentStr + `get ${s.name} () { return ${s.name}; }` );\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tnamespaceExportBlock += namespaceExports.join( ',\\n' ) + '\\n};\\n\\n';\n\n\t\tbody.prepend( namespaceExportBlock );\n\t}\n\n\t// If this module is responsible for one of the bundle's exports\n\t// (it doesn't have to be the entry module, which could re-export\n\t// a binding from another module), we write exports here\n\tif ( exportNames ) {\n\t\tlet exportBlock = [];\n\n\t\tObject.keys( exportNames ).forEach( name => {\n\t\t\tvar exportAs = exportNames[ name ];\n\t\t\texportBlock.push( `exports.${exportAs} = ${identifierReplacements[name]};` );\n\t\t});\n\n\t\tif ( exportBlock.length ) {\n\t\t\tbody.trim().append( '\\n\\n' + exportBlock.join( '\\n' ) );\n\t\t}\n\t}\n\n\treturn body.trim();\n}\n","import MagicString from 'magic-string';\nimport populateModuleNames from './populateModuleNames';\nimport populateExternalModuleImports from './populateExternalModuleImports';\nimport populateIdentifierReplacements from './populateIdentifierReplacements';\nimport resolveExports from './resolveExports';\nimport transformBody from './transformBody';\n\nexport default function combine ( bundle ) {\n\tbundle.body = new MagicString.Bundle({\n\t\tseparator: '\\n\\n'\n\t});\n\n\t// give each module in the bundle a unique name\n\tpopulateModuleNames( bundle );\n\n\t// determine which specifiers are imported from\n\t// external modules\n\tpopulateExternalModuleImports( bundle );\n\n\t// determine which identifiers need to be replaced\n\t// inside this bundle\n\tpopulateIdentifierReplacements( bundle );\n\n\tbundle.exports = resolveExports( bundle );\n\n\tbundle.modules.forEach( mod => {\n\t\t// verify that this module doesn't import non-exported identifiers\n\t\tmod.imports.forEach( x => {\n\t\t\tconst imported = x.module;\n\n\t\t\tif ( imported.isExternal || imported.isSkipped || x.isBatch ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tif ( !imported.doesExport[ s.name ] ) {\n\t\t\t\t\tthrow new Error( `Module '${imported.id}' does not export '${s.name}' (imported by '${mod.id}')` );\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\n\t\tbundle.body.addSource({\n\t\t\tfilename: mod.path,\n\t\t\tcontent: transformBody( bundle, mod, mod.body ),\n\t\t\tindentExclusionRanges: mod.ast._templateLiteralRanges\n\t\t});\n\t});\n}\n","import acorn from 'acorn';\nimport MagicString from 'magic-string';\nimport findImportsAndExports from 'utils/ast/findImportsAndExports';\nimport annotateAst from 'utils/ast/annotate';\nimport disallowConflictingImports from '../utils/disallowConflictingImports';\n\nexport default function getModule ( mod ) {\n\tmod.body = new MagicString( mod.code );\n\n\tlet toRemove = [];\n\n\ttry {\n\t\tmod.ast = mod.ast || ( acorn.parse( mod.code, {\n\t\t\tecmaVersion: 6,\n\t\t\tsourceType: 'module',\n\t\t\tonComment ( block, text, start, end ) {\n\t\t\t\t// sourceMappingURL comments should be removed\n\t\t\t\tif ( !block && /^# sourceMappingURL=/.test( text ) ) {\n\t\t\t\t\ttoRemove.push({ start, end });\n\t\t\t\t}\n\t\t\t}\n\t\t}));\n\n\t\ttoRemove.forEach( ({ start, end }) => mod.body.remove( start, end ) );\n\t\tannotateAst( mod.ast );\n\t} catch ( err ) {\n\t\t// If there's a parse error, attach file info\n\t\t// before throwing the error\n\t\tif ( err.loc ) {\n\t\t\terr.file = mod.path;\n\t\t}\n\n\t\tthrow err;\n\t}\n\n\tlet [ imports, exports ] = findImportsAndExports( mod, mod.code, mod.ast );\n\n\tdisallowConflictingImports( imports );\n\n\tmod.imports = imports;\n\tmod.exports = exports;\n\n\t// identifiers to replace within this module\n\t// (gets filled in later, once bundle is combined)\n\tmod.identifierReplacements = {};\n\n\t// collect exports by name, for quick lookup when verifying\n\t// that this module exports a given identifier\n\tmod.doesExport = {};\n\n\texports.forEach( x => {\n\t\tif ( x.isDefault ) {\n\t\t\tmod.doesExport.default = true;\n\t\t}\n\n\t\telse if ( x.name ) {\n\t\t\tmod.doesExport[ x.name ] = true;\n\t\t}\n\n\t\telse if ( x.specifiers ) {\n\t\t\tx.specifiers.forEach( s => {\n\t\t\t\tmod.doesExport[ s.name ] = true;\n\t\t\t});\n\t\t}\n\n\t\telse {\n\t\t\tthrow new Error( 'Unexpected export type' );\n\t\t}\n\t});\n\n\treturn mod;\n}\n","import path from 'path';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport resolveId from 'utils/resolveId';\nimport sortModules from './utils/sortModules';\nimport resolveChains from './utils/resolveChains';\nimport combine from './combine';\nimport sander from 'sander';\nimport getModule from './getModule';\n\nconst Promise = sander.Promise;\n\nexport default function getBundle ( options ) {\n\tlet entry = options.entry.replace( /\\.js$/, '' );\n\tlet userModules = options.modules || {};\n\tlet modules = [];\n\tlet moduleLookup = {};\n\tlet promiseByPath = {};\n\tlet skip = options.skip;\n\tlet names = options.names;\n\tlet base = ( options.base ? path.resolve( options.base ) : process.cwd() ) + '/';\n\tlet externalModules = [];\n\tlet externalModuleLookup = {};\n\n\tif ( !entry.indexOf( base ) ) {\n\t\tentry = entry.substring( base.length );\n\t}\n\n\t// resolve user module paths\n\toptions.modules && Object.keys( options.modules ).forEach( relativePath => {\n\t\tuserModules[ path.resolve( base, relativePath ) ] = options.modules[ relativePath ];\n\t});\n\n\tlet cyclicalModules = [];\n\n\treturn resolvePath( base, userModules, entry, null ).then( absolutePath => {\n\t\treturn fetchModule( entry, absolutePath ).then( entryModule => {\n\t\t\treturn Promise.all( cyclicalModules ).then( () => {\n\t\t\t\tmodules = sortModules( entryModule );\n\n\t\t\t\tlet bundle = {\n\t\t\t\t\tentryModule,\n\t\t\t\t\tmodules,\n\t\t\t\t\texternalModules,\n\t\t\t\t\tnames\n\t\t\t\t};\n\n\t\t\t\tresolveChains( modules, moduleLookup );\n\t\t\t\tcombine( bundle );\n\n\t\t\t\treturn bundle;\n\t\t\t});\n\n\t\t});\n\t}, function ( err ) {\n\t\tif ( err.code === 'ENOENT' ) {\n\t\t\tthrow new Error( 'Could not find entry module (' + entry + ')' );\n\t\t}\n\n\t\tthrow err;\n\t});\n\n\tfunction fetchModule ( moduleId, absolutePath ) {\n\t\tif ( !hasOwnProp.call( promiseByPath, absolutePath ) ) {\n\t\t\tpromiseByPath[ absolutePath ] = (\n\t\t\t\thasOwnProp.call( userModules, absolutePath ) ?\n\t\t\t\t\tPromise.resolve( userModules[ absolutePath ] ) :\n\t\t\t\t\tsander.readFile( absolutePath ).then( String )\n\t\t\t).then( function ( source ) {\n\t\t\t\tlet code, ast;\n\n\t\t\t\t// normalise\n\t\t\t\tif ( typeof source === 'object' ) {\n\t\t\t\t\tcode = source.code;\n\t\t\t\t\tast = source.ast;\n\t\t\t\t} else {\n\t\t\t\t\tcode = source;\n\t\t\t\t\tast = null;\n\t\t\t\t}\n\n\t\t\t\tif ( options.transform ) {\n\t\t\t\t\tcode = options.transform( code, absolutePath );\n\n\t\t\t\t\tif ( typeof code !== 'string' && !isThenable( code ) ) {\n\t\t\t\t\t\tthrow new Error( 'transform should return String or Promise' );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tlet module = getModule({\n\t\t\t\t\tid: moduleId,\n\t\t\t\t\tpath: absolutePath,\n\t\t\t\t\tcode,\n\t\t\t\t\tast,\n\n\t\t\t\t\t// TODO should not need this\n\t\t\t\t\trelativePath: path.relative( base, absolutePath )\n\t\t\t\t});\n\n\t\t\t\tmodules.push( module );\n\t\t\t\tmoduleLookup[ moduleId ] = module;\n\n\t\t\t\tlet promises = module.imports.map( x => {\n\t\t\t\t\t// TODO remove this, use x.module instead. more flexible, no lookups involved\n\t\t\t\t\tconst id = resolveId( x.path, module.relativePath );\n\n\t\t\t\t\tif ( id === moduleId ) {\n\t\t\t\t\t\tthrow new Error( 'A module (' + moduleId + ') cannot import itself' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Some modules can be skipped\n\t\t\t\t\tif ( skip && ~skip.indexOf( id ) ) {\n\t\t\t\t\t\tconst skippedModule = {\n\t\t\t\t\t\t\tid,\n\t\t\t\t\t\t\tisSkipped: true\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tx.module = skippedModule;\n\t\t\t\t\t\treturn skippedModule;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn resolvePath( base, userModules, id, absolutePath, options.resolvePath ).then( absolutePath => {\n\t\t\t\t\t\tlet promise = hasOwnProp.call( promiseByPath, absolutePath ) && promiseByPath[ absolutePath ];\n\t\t\t\t\t\tlet cyclical = !!promise;\n\n\t\t\t\t\t\tif ( cyclical ) {\n\t\t\t\t\t\t\t// ensure all modules are set before we\n\t\t\t\t\t\t\t// create the bundle...\n\t\t\t\t\t\t\tcyclicalModules.push(\n\t\t\t\t\t\t\t\tpromise.then( module => x.module = module )\n\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t// ...then short-circuit\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn fetchModule( id, absolutePath ).then( module => x.module = module );\n\t\t\t\t\t}, function handleError ( err ) {\n\t\t\t\t\t\tif ( err.code === 'ENOENT' ) {\n\t\t\t\t\t\t\t// Most likely an external module\n\t\t\t\t\t\t\tlet externalModule = hasOwnProp.call( externalModuleLookup, id ) && externalModuleLookup[ id ];\n\n\t\t\t\t\t\t\tif ( !externalModule ) {\n\t\t\t\t\t\t\t\texternalModule = {\n\t\t\t\t\t\t\t\t\tid,\n\t\t\t\t\t\t\t\t\tisExternal: true\n\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t\texternalModules.push( externalModule );\n\t\t\t\t\t\t\t\texternalModuleLookup[ id ] = externalModule;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tx.module = externalModule;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthrow err;\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t});\n\n\t\t\t\treturn Promise.all( promises )\n\t\t\t\t\t.then( () => module );\n\t\t\t});\n\t\t}\n\n\t\treturn promiseByPath[ absolutePath ];\n\t}\n}\n\nfunction resolvePath ( base, userModules, moduleId, importerPath, resolver ) {\n\tconst noExt = moduleId.replace( /\\.js$/, '' );\n\n\treturn tryPath( base, noExt + '.js', userModules )\n\t\t.catch( () => tryPath( base, noExt + path.sep + 'index.js', userModules ) )\n\t\t.catch( function ( err ) {\n\t\t\tconst resolvedPromise = resolver && Promise.resolve( resolver( moduleId, importerPath ) );\n\n\t\t\tif ( resolvedPromise ) {\n\t\t\t\treturn resolvedPromise.then( resolvedPath => {\n\t\t\t\t\tif ( !resolvedPath ) {\n\t\t\t\t\t\t// hack but whatevs, it saves handling real ENOENTs differently\n\t\t\t\t\t\tlet err = new Error();\n\t\t\t\t\t\terr.code = 'ENOENT';\n\t\t\t\t\t\tthrow err;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn sander.stat( resolvedPath ).then( () => path.resolve( base, resolvedPath ) );\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tthrow err;\n\t\t\t}\n\t\t});\n}\n\nfunction tryPath ( base, filename, userModules ) {\n\tconst absolutePath = path.resolve( base, filename );\n\n\tif ( hasOwnProp.call( userModules, absolutePath ) ) {\n\t\treturn Promise.resolve( absolutePath );\n\t}\n\treturn sander.stat( absolutePath ).then( () => absolutePath );\n}\n\nfunction isThenable ( obj ) {\n\treturn obj && typeof obj.then === 'function';\n}\n","export default function transformExportDeclaration ( declaration, body ) {\n\tif ( !declaration ) {\n\t\treturn;\n\t}\n\n\tlet exportedValue;\n\n\tswitch ( declaration.type ) {\n\t\tcase 'namedFunction':\n\t\tcase 'namedClass':\n\t\t\tbody.remove( declaration.start, declaration.valueStart );\n\t\t\texportedValue = declaration.name;\n\t\t\tbreak;\n\n\t\tcase 'anonFunction':\n\t\tcase 'anonClass':\n\t\t\tif ( declaration.isFinal ) {\n\t\t\t\tbody.replace( declaration.start, declaration.valueStart, 'return ' );\n\t\t\t} else {\n\t\t\t\tbody.replace( declaration.start, declaration.valueStart, 'var __export = ' );\n\t\t\t\texportedValue = '__export';\n\t\t\t}\n\n\t\t\t// add semi-colon, if necessary\n\t\t\t// TODO body.original is an implementation detail of magic-string - there\n\t\t\t// should probably be an API for this sort of thing\n\t\t\tif ( body.original[ declaration.end - 1 ] !== ';' ) {\n\t\t\t\tbody.insert( declaration.end, ';' );\n\t\t\t}\n\n\t\t\tbreak;\n\n\t\tcase 'expression':\n\t\t\tbody.remove( declaration.start, declaration.next );\n\t\t\texportedValue = declaration.value;\n\t\t\tbreak;\n\n\t\tdefault:\n\t\t\tthrow new Error( `Unexpected export type '${declaration.type}'` );\n\t}\n\n\tif ( exportedValue ) {\n\t\tbody.append( `\\nreturn ${exportedValue};` );\n\t}\n}\n","import walk from './ast/walk';\nimport { splitPath } from 'utils/sanitize';\n\nconst ABSOLUTE_PATH = /^(?:[A-Z]:)?[\\/\\\\]/i;\n\nlet warned = {};\n\nexport default function packageResult ( bundleOrModule, body, options, methodName, isBundle ) {\n\t// wrap output\n\tif ( options.banner ) body.prepend( options.banner );\n\tif ( options.footer ) body.append( options.footer );\n\n\tlet code = body.toString();\n\tlet map;\n\n\tif ( !!options.sourceMap ) {\n\t\tif ( options.sourceMap !== 'inline' && !options.sourceMapFile ) {\n\t\t\tthrow new Error( 'You must provide `sourceMapFile` option' );\n\t\t}\n\n\t\tif ( !isBundle && !options.sourceMapSource ) {\n\t\t\tthrow new Error( 'You must provide `sourceMapSource` option' );\n\t\t}\n\n\t\tlet sourceMapFile;\n\t\tif ( options.sourceMap === 'inline' ) {\n\t\t\tsourceMapFile = null;\n\t\t} else {\n\t\t\tsourceMapFile = ABSOLUTE_PATH.test( options.sourceMapFile ) ? options.sourceMapFile : './' + splitPath( options.sourceMapFile ).pop();\n\t\t}\n\n\t\tif ( isBundle ) {\n\t\t\tmarkBundleSourcemapLocations( bundleOrModule );\n\t\t} else {\n\t\t\tmarkModuleSourcemapLocations( bundleOrModule );\n\t\t}\n\n\t\tmap = body.generateMap({\n\t\t\tincludeContent: true,\n\t\t\tfile: sourceMapFile,\n\t\t\tsource: ( sourceMapFile && !isBundle ) ? getRelativePath( sourceMapFile, options.sourceMapSource ) : null\n\t\t});\n\n\t\tif ( options.sourceMap === 'inline' ) {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + map.toUrl();\n\t\t\tmap = null;\n\t\t} else {\n\t\t\tcode += '\\n//# sourceMa' + 'ppingURL=' + sourceMapFile + '.map';\n\t\t}\n\t} else {\n\t\tmap = null;\n\t}\n\n\treturn {\n\t\tcode,\n\t\tmap,\n\t\ttoString () {\n\t\t\tif ( !warned[ methodName ] ) {\n\t\t\t\tconsole.log( `Warning: esperanto.${methodName}() returns an object with a 'code' property. You should use this instead of using the returned value directly` );\n\t\t\t\twarned[ methodName ] = true;\n\t\t\t}\n\n\t\t\treturn code;\n\t\t}\n\t};\n}\n\nfunction getRelativePath ( from, to ) {\n\tvar fromParts, toParts, i;\n\n\tfromParts = splitPath( from );\n\ttoParts = splitPath( to );\n\n\tfromParts.pop(); // get dirname\n\n\twhile ( fromParts[0] === '.' ) {\n\t\tfromParts.shift();\n\t}\n\n\twhile ( fromParts[0] === toParts[0] ) {\n\t\tfromParts.shift();\n\t\ttoParts.shift();\n\t}\n\n\tif ( fromParts.length ) {\n\t\ti = fromParts.length;\n\t\twhile ( i-- ) fromParts[i] = '..';\n\n\t\treturn fromParts.concat( toParts ).join( '/' );\n\t} else {\n\t\ttoParts.unshift( '.' );\n\t\treturn toParts.join( '/' );\n\t}\n}\n\nfunction markBundleSourcemapLocations ( bundle ) {\n\tbundle.modules.forEach( mod => {\n\t\twalk( mod.ast, {\n\t\t\tenter: node => {\n\t\t\t\tmod.body.addSourcemapLocation( node.start );\n\t\t\t}\n\t\t});\n\t});\n}\n\nfunction markModuleSourcemapLocations ( mod ) {\n\twalk( mod.ast, {\n\t\tenter: node => {\n\t\t\tmod.body.addSourcemapLocation( node.start );\n\t\t}\n\t});\n}\n","import resolveId from '../resolveId';\n\nexport default function getImportSummary ({ imports, absolutePaths, name }) {\n\tlet paths = [];\n\tlet names = [];\n\tlet seen = {};\n\tlet placeholders = 0;\n\n\timports.forEach( x => {\n\t\tlet path = x.id || x.path; // TODO unify these\n\n\t\tif ( !seen[ path ] ) {\n\t\t\tseen[ path ] = true;\n\n\t\t\tpaths.push( path );\n\n\t\t\t// TODO x could be an external module, or an internal one.\n\t\t\t// they have different shapes, resulting in the confusing\n\t\t\t// code below\n\t\t\tif ( ( x.needsDefault || x.needsNamed ) || ( x.specifiers && x.specifiers.length ) ) {\n\t\t\t\twhile ( placeholders ) {\n\t\t\t\t\tnames.push( `__dep${names.length}__` );\n\t\t\t\t\tplaceholders--;\n\t\t\t\t}\n\t\t\t\tnames.push( x.name );\n\t\t\t} else {\n\t\t\t\tplaceholders++;\n\t\t\t}\n\t\t}\n\t});\n\n\tlet ids = absolutePaths ? paths.map( relativePath => resolveId( relativePath, name ) ) : paths.slice();\n\n\treturn { ids, paths, names };\n}","import { quote } from '../mappers';\n\nexport default function processName ( name ) {\n\treturn name ? quote( name ) + ', ' : '';\n}","import { quote } from '../mappers';\n\nexport default function processIds ( ids ) {\n\treturn ids.length ? '[' + ids.map( quote ).join( ', ' ) + '], ' : '';\n}","import getImportSummary from './getImportSummary';\nimport processName from './processName';\nimport processIds from './processIds';\n\nexport default function amdIntro ({ name, imports, hasExports, indentStr, absolutePaths, useStrict }) {\n\tlet { ids, names } = getImportSummary({ name, imports, absolutePaths });\n\n\tif ( hasExports ) {\n\t\tids.unshift( 'exports' );\n\t\tnames.unshift( 'exports' );\n\t}\n\n\tlet intro = `\ndefine(${processName(name)}${processIds(ids)}function (${names.join( ', ' ) }) {\n\n`;\n\n\tif ( useStrict ) {\n\t\tintro += `${indentStr}'use strict';\\n\\n`;\n\t}\n\n\treturn intro;\n}","import transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\n\nexport default function amd ( mod, options ) {\n\tmod.imports.forEach( x => {\n\t\tmod.body.remove( x.start, x.next );\n\t});\n\n\ttransformExportDeclaration( mod.exports[0], mod.body );\n\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: mod.imports,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tmod.body.trim()\n\t\t.indent()\n\t\t.prepend( intro )\n\t\t.trim()\n\t\t.append( '\\n\\n});' );\n\n\treturn packageResult( mod, mod.body, options, 'toAmd' );\n}\n","import hasOwnProp from 'utils/hasOwnProp';\nimport packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( mod, options ) {\n\tlet seen = {};\n\n\tmod.imports.forEach( x => {\n\t\tif ( !hasOwnProp.call( seen, x.path ) ) {\n\t\t\tlet replacement = x.isEmpty ? `${req(x.path)};` : `var ${x.as} = ${req(x.path)};`;\n\t\t\tmod.body.replace( x.start, x.end, replacement );\n\n\t\t\tseen[ x.path ] = true;\n\t\t} else {\n\t\t\tmod.body.remove( x.start, x.next );\n\t\t}\n\t});\n\n\tlet exportDeclaration = mod.exports[0];\n\n\tif ( exportDeclaration ) {\n\t\tswitch ( exportDeclaration.type ) {\n\t\t\tcase 'namedFunction':\n\t\t\tcase 'namedClass':\n\t\t\t\tmod.body.remove( exportDeclaration.start, exportDeclaration.valueStart );\n\t\t\t\tmod.body.replace( exportDeclaration.end, exportDeclaration.end, `\\nmodule.exports = ${exportDeclaration.node.declaration.id.name};` );\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tmod.body.replace( exportDeclaration.start, exportDeclaration.valueStart, 'module.exports = ' );\n\t\t\t\tbreak;\n\t\t}\n\t}\n\n\tif ( options.useStrict !== false ) {\n\t\tmod.body.prepend( \"'use strict';\\n\\n\" ).trimLines();\n\t}\n\n\treturn packageResult( mod, mod.body, options, 'toCjs' );\n}\n","import { globalify, req } from 'utils/mappers';\nimport processName from '../amd/processName';\nimport processIds from '../amd/processIds';\nimport getImportSummary from '../amd/getImportSummary';\n\nexport default function umdIntro ({ amdName, name, hasExports, imports, absolutePaths, externalDefaults, indentStr, strict, useStrict }) {\n\tconst useStrictPragma = useStrict ? ` 'use strict';` : '';\n\tlet intro;\n\n\tif ( !hasExports && !imports.length ) {\n\t\tintro =\n\t\t\t`(function (factory) {\n\t\t\t\t!(typeof exports === 'object' && typeof module !== 'undefined') &&\n\t\t\t\ttypeof define === 'function' && define.amd ? define(${processName(amdName)}factory) :\n\t\t\t\tfactory()\n\t\t\t}(function () {${useStrictPragma}\n\n\t\t\t`;\n\t}\n\n\telse {\n\t\tlet { ids, paths, names } = getImportSummary({ imports, name: amdName, absolutePaths });\n\n\t\tlet amdExport, cjsExport, globalExport, defaultsBlock;\n\n\t\tif ( strict ) {\n\t\t\tcjsExport = `factory(${( hasExports ? [ 'exports' ] : [] ).concat( paths.map( req ) ).join( ', ' )})`;\n\t\t\tlet globalDeps = ( hasExports ? [ `(global.${name} = {})` ] : [] ).concat( names.map( globalify ) ).join( ', ' );\n\t\t\tglobalExport = `factory(${globalDeps})`;\n\n\t\t\tif ( hasExports ) {\n\t\t\t\tids.unshift( 'exports' );\n\t\t\t\tnames.unshift( 'exports' );\n\t\t\t}\n\n\t\t\tamdExport = `define(${processName(amdName)}${processIds(ids)}factory)`;\n\t\t\tdefaultsBlock = '';\n\t\t\tif ( externalDefaults && externalDefaults.length > 0 ) {\n\t\t\t\tdefaultsBlock = externalDefaults.map( x =>\n\t\t\t\t\t'\\t' + ( x.needsNamed ? `var ${x.name}__default` : x.name ) +\n\t\t\t\t\t\t` = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`\n\t\t\t\t).join('\\n') + '\\n\\n';\n\t\t\t}\n\t\t} else {\n\t\t\tamdExport = `define(${processName(amdName)}${processIds(ids)}factory)`;\n\t\t\tcjsExport = ( hasExports ? 'module.exports = ' : '' ) + `factory(${paths.map( req ).join( ', ' )})`;\n\t\t\tglobalExport = ( hasExports ? `global.${name} = ` : '' ) + `factory(${names.map( globalify ).join( ', ' )})`;\n\n\t\t\tdefaultsBlock = '';\n\t\t}\n\n\t\tintro =\n\t\t\t`(function (global, factory) {\n\t\t\t\ttypeof exports === 'object' && typeof module !== 'undefined' ? ${cjsExport} :\n\t\t\t\ttypeof define === 'function' && define.amd ? ${amdExport} :\n\t\t\t\t${globalExport}\n\t\t\t}(this, function (${names.join( ', ' )}) {${useStrictPragma}\n\n\t\t\t${defaultsBlock}`;\n\n\t}\n\n\treturn intro.replace( /^\\t\\t\\t/gm, '' ).replace( /\\t/g, indentStr );\n}","var EsperantoError = function ( message, data ) {\n\tvar prop;\n\n\tthis.message = message;\n\tthis.stack = (new Error()).stack;\n\n\tfor ( prop in data ) {\n\t\tif ( data.hasOwnProperty( prop ) ) {\n\t\t\tthis[ prop ] = data[ prop ];\n\t\t}\n\t}\n};\n\nEsperantoError.prototype = new Error();\nEsperantoError.prototype.constructor = EsperantoError;\nEsperantoError.prototype.name = 'EsperantoError';\n\nexport default EsperantoError;","import EsperantoError from 'utils/EsperantoError';\n\nexport default function requireName ( options ) {\n\tif ( !options.name ) {\n\t\tthrow new EsperantoError( 'You must supply a `name` option for UMD modules', {\n\t\t\tcode: 'MISSING_NAME'\n\t\t});\n\t}\n}","import transformExportDeclaration from './utils/transformExportDeclaration';\nimport packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\n\nexport default function umd ( mod, options ) {\n\trequireName( options );\n\n\tmod.imports.forEach( x => {\n\t\tmod.body.remove( x.start, x.next );\n\t});\n\n\tlet intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformExportDeclaration( mod.exports[0], mod.body );\n\n\tmod.body.indent().prepend( intro ).trimLines().append( '\\n\\n}));' );\n\n\treturn packageResult( mod, mod.body, options, 'toUmd' );\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","export default function gatherImports ( imports ) {\n\tlet chains = {};\n\tlet identifierReplacements = {};\n\n\timports.forEach( x => {\n\t\tx.specifiers.forEach( s => {\n\t\t\tif ( s.isBatch ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tlet name = s.as;\n\t\t\tlet replacement = x.name + ( s.isDefault ? `['default']` : `.${s.name}` );\n\n\t\t\tif ( !x.passthrough ) {\n\t\t\t\tidentifierReplacements[ name ] = replacement;\n\t\t\t}\n\n\t\t\tchains[ name ] = replacement;\n\t\t});\n\t});\n\n\treturn [ chains, identifierReplacements ];\n}\n","export default function getExportNames ( exports ) {\n\tvar result = {};\n\n\texports.forEach( x => {\n\t\tif ( x.isDefault ) return;\n\n\t\tif ( x.hasDeclaration ) {\n\t\t\tresult[ x.name ] = x.name;\n\t\t\treturn;\n\t\t}\n\n\t\tx.specifiers.forEach( s => {\n\t\t\tresult[ s.name ] = s.as;\n\t\t});\n\t});\n\n\treturn result;\n}\n","import gatherImports from './gatherImports';\nimport getExportNames from './getExportNames';\nimport getReadOnlyIdentifiers from 'utils/getReadOnlyIdentifiers';\nimport traverseAst from 'utils/ast/traverse';\nimport hasOwnProp from 'utils/hasOwnProp';\n\nexport default function transformBody ( mod, body, options ) {\n\tlet [ chains, identifierReplacements ] = gatherImports( mod.imports );\n\tlet exportNames = getExportNames( mod.exports );\n\n\tlet [ importedBindings, importedNamespaces ] = getReadOnlyIdentifiers( mod.imports );\n\n\t// ensure no conflict with `exports`\n\tidentifierReplacements.exports = deconflict( 'exports', mod.ast._declared );\n\n\ttraverseAst( mod.ast, body, identifierReplacements, importedBindings, importedNamespaces, exportNames );\n\n\t// Remove import statements from the body of the module\n\tmod.imports.forEach( x => {\n\t\tbody.remove( x.start, x.next );\n\t});\n\n\t// Prepend require() statements (CommonJS output only)\n\tif ( options.header ) {\n\t\tbody.prepend( options.header + '\\n\\n' );\n\t}\n\n\t// Remove export statements (but keep declarations)\n\tmod.exports.forEach( x => {\n\t\tif ( x.isDefault ) {\n\t\t\tif ( /^named/.test( x.type ) ) {\n\t\t\t\t// export default function answer () { return 42; }\n\t\t\t\tbody.remove( x.start, x.valueStart );\n\t\t\t\tbody.insert( x.end, `\\nexports['default'] = ${x.name};` );\n\t\t\t} else {\n\t\t\t\t// everything else\n\t\t\t\tbody.replace( x.start, x.valueStart, 'exports[\\'default\\'] = ' );\n\t\t\t}\n\t\t}\n\n\t\telse {\n\t\t\tswitch ( x.type ) {\n\t\t\t\tcase 'varDeclaration': // export var answer = 42; (or let)\n\t\t\t\tcase 'namedFunction': // export function answer () {...}\n\t\t\t\tcase 'namedClass': // export class answer {...}\n\t\t\t\t\tbody.remove( x.start, x.valueStart );\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'named': // export { foo, bar };\n\t\t\t\t\tbody.remove( x.start, x.next );\n\t\t\t\t\tbreak;\n\n\t\t\t\tdefault:\n\t\t\t\t\tbody.replace( x.start, x.valueStart, 'exports[\\'default\\'] = ' );\n\t\t\t}\n\t\t}\n\t});\n\n\t// Append export block (this is the same for all module types, unlike imports)\n\tlet earlyExports = [];\n\tlet lateExports = [];\n\n\tObject.keys( exportNames ).forEach( name => {\n\t\tvar exportAs = exportNames[ name ];\n\n\t\tif ( chains.hasOwnProperty( name ) ) {\n\t\t\t// special case - a binding from another module\n\t\t\tif ( !options._evilES3SafeReExports ) {\n\t\t\t\tearlyExports.push( `Object.defineProperty(exports, '${exportAs}', { enumerable: true, get: function () { return ${chains[name]}; }});` );\n\t\t\t} else {\n\t\t\t\tlateExports.push( `exports.${exportAs} = ${chains[name]};` );\n\t\t\t}\n\t\t} else if ( ~mod.ast._topLevelFunctionNames.indexOf( name ) ) {\n\t\t\t// functions should be exported early, in\n\t\t\t// case of cyclic dependencies\n\t\t\tearlyExports.push( `exports.${exportAs} = ${name};` );\n\t\t} else {\n\t\t\tlateExports.push( `exports.${exportAs} = ${name};` );\n\t\t}\n\t});\n\n\t// Function exports should be exported immediately after 'use strict'\n\tif ( earlyExports.length ) {\n\t\tbody.trim().prepend( earlyExports.join( '\\n' ) + '\\n\\n' );\n\t}\n\n\t// Everything else should be exported at the end\n\tif ( lateExports.length ) {\n\t\tbody.trim().append( '\\n\\n' + lateExports.join( '\\n' ) );\n\t}\n\n\tif ( options.intro && options.outro ) {\n\t\tbody.indent().prepend( options.intro ).trimLines().append( options.outro );\n\t}\n}\n\nfunction deconflict ( name, declared ) {\n\twhile ( hasOwnProp.call( declared, name ) ) {\n\t\tname = '_' + name;\n\t}\n\n\treturn name;\n}\n","import packageResult from '../../../utils/packageResult';\nimport transformBody from './utils/transformBody';\nimport amdIntro from '../../../utils/amd/amdIntro';\n\nexport default function amd ( mod, options ) {\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\timports: mod.imports,\n\t\tindentStr: mod.body.getIndentString(),\n\t\thasExports: mod.exports.length,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody( mod, mod.body, {\n\t\tintro,\n\t\toutro: '\\n\\n});',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult( mod, mod.body, options, 'toAmd' );\n}\n","import packageResult from 'utils/packageResult';\nimport hasOwnProp from 'utils/hasOwnProp';\nimport transformBody from './utils/transformBody';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( mod, options ) {\n\tlet seen = {};\n\n\t// Create block of require statements\n\tlet importBlock = mod.imports.map( x => {\n\t\tif ( !hasOwnProp.call( seen, x.path ) ) {\n\t\t\tseen[ x.path ] = true;\n\n\t\t\tif ( x.isEmpty ) {\n\t\t\t\treturn `${req(x.path)};`;\n\t\t\t}\n\n\t\t\treturn `var ${x.name} = ${req(x.path)};`;\n\t\t}\n\t}).filter( Boolean ).join( '\\n' );\n\n\ttransformBody( mod, mod.body, {\n\t\theader: importBlock,\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\tif ( options.useStrict !== false ) {\n\t\tmod.body.prepend( \"'use strict';\\n\\n\" ).trimLines();\n\t}\n\n\treturn packageResult( mod, mod.body, options, 'toCjs' );\n}\n","import packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport transformBody from './utils/transformBody';\n\nexport default function umd ( mod, options ) {\n\trequireName( options );\n\n\tlet intro = umdIntro({\n\t\thasExports: mod.exports.length > 0,\n\t\timports: mod.imports,\n\t\tamdName: options.amdName,\n\t\tabsolutePaths: options.absolutePaths,\n\t\tname: options.name,\n\t\tindentStr: mod.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\ttransformBody( mod, mod.body, {\n\t\tintro: intro,\n\t\toutro: '\\n\\n}));',\n\t\t_evilES3SafeReExports: options._evilES3SafeReExports\n\t});\n\n\treturn packageResult( mod, mod.body, options, 'toUmd' );\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n","import packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\n\nexport default function amd ( bundle, options ) {\n\tlet defaultName = bundle.entryModule.identifierReplacements.default;\n\tif ( defaultName ) {\n\t\tbundle.body.append( `\\n\\nreturn ${defaultName};` );\n\t}\n\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend( intro ).trimLines().append( '\\n\\n});' );\n\treturn packageResult( bundle, bundle.body, options, 'toAmd', true );\n}","import packageResult from 'utils/packageResult';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( bundle, options ) {\n\tlet importBlock = bundle.externalModules.map( x => {\n\t\treturn `var ${x.name} = ${req(x.id)};`;\n\t}).join( '\\n' );\n\n\tif ( importBlock ) {\n\t\tbundle.body.prepend( importBlock + '\\n\\n' );\n\t}\n\n\tlet defaultName = bundle.entryModule.identifierReplacements.default;\n\tif ( defaultName ) {\n\t\tbundle.body.append( `\\n\\nmodule.exports = ${defaultName};` );\n\t}\n\n\tif ( options.useStrict !== false ) {\n\t\tbundle.body.prepend(\"'use strict';\\n\\n\").trimLines();\n\t}\n\n\treturn packageResult( bundle, bundle.body, options, 'toCjs', true );\n}\n","import packageResult from 'utils/packageResult';\nimport umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\n\nexport default function umd ( bundle, options ) {\n\trequireName( options );\n\n\tlet entry = bundle.entryModule;\n\n\tlet intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( `\\n\\nreturn ${entry.identifierReplacements.default};` );\n\t}\n\n\tbundle.body.indent().prepend( intro ).trimLines().append('\\n\\n}));');\n\n\treturn packageResult( bundle, bundle.body, options, 'toUmd', true );\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","export default function getExportBlock ( entry ) {\n\tlet name = entry.identifierReplacements.default;\n\treturn `exports['default'] = ${name};`;\n}\n","import packageResult from '../../../utils/packageResult';\nimport amdIntro from '../../../utils/amd/amdIntro';\nimport getExportBlock from './utils/getExportBlock';\n\nexport default function amd ( bundle, options ) {\n\tlet externalDefaults = bundle.externalModules.filter( needsDefault );\n\tlet entry = bundle.entryModule;\n\n\tif ( externalDefaults.length ) {\n\t\tlet defaultsBlock = externalDefaults.map( x => {\n\t\t\t// Case 1: default is used, and named is not\n\t\t\tif ( !x.needsNamed ) {\n\t\t\t\treturn `${x.name} = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`;\n\t\t\t}\n\n\t\t\t// Case 2: both default and named are used\n\t\t\treturn `var ${x.name}__default = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`;\n\t\t}).join( '\\n' );\n\n\t\tbundle.body.prepend( defaultsBlock + '\\n\\n' );\n\t}\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( '\\n\\n' + getExportBlock( entry ) );\n\t}\n\n\tlet intro = amdIntro({\n\t\tname: options.amdName,\n\t\timports: bundle.externalModules,\n\t\thasExports: entry.exports.length,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tbundle.body.indent().prepend( intro ).trimLines().append( '\\n\\n});' );\n\treturn packageResult( bundle, bundle.body, options, 'toAmd', true );\n}\n\nfunction needsDefault ( externalModule ) {\n\treturn externalModule.needsDefault;\n}\n","import packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\nimport { req } from 'utils/mappers';\n\nexport default function cjs ( bundle, options ) {\n\tlet entry = bundle.entryModule;\n\n\tlet importBlock = bundle.externalModules.map( x => {\n\t\tlet statement = `var ${x.name} = ${req(x.id)};`;\n\n\t\tif ( x.needsDefault ) {\n\t\t\tstatement += '\\n' +\n\t\t\t\t( x.needsNamed ? `var ${x.name}__default` : x.name ) +\n\t\t\t\t` = ('default' in ${x.name} ? ${x.name}['default'] : ${x.name});`;\n\t\t}\n\n\t\treturn statement;\n\t}).join( '\\n' );\n\n\tif ( importBlock ) {\n\t\tbundle.body.prepend( importBlock + '\\n\\n' );\n\t}\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( '\\n\\n' + getExportBlock( entry ) );\n\t}\n\n\tif ( options.useStrict !== false ) {\n\t\tbundle.body.prepend(\"'use strict';\\n\\n\").trimLines();\n\t}\n\n\treturn packageResult( bundle, bundle.body, options, 'toCjs', true );\n}\n","import umdIntro from 'utils/umd/umdIntro';\nimport requireName from 'utils/umd/requireName';\nimport packageResult from 'utils/packageResult';\nimport getExportBlock from './utils/getExportBlock';\n\nexport default function umd ( bundle, options ) {\n\trequireName( options );\n\n\tlet entry = bundle.entryModule;\n\n\tlet intro = umdIntro({\n\t\thasExports: entry.exports.length > 0,\n\t\timports: bundle.externalModules,\n\t\texternalDefaults: bundle.externalModules.filter( needsDefault ),\n\t\tamdName: options.amdName,\n\t\tname: options.name,\n\t\tindentStr: bundle.body.getIndentString(),\n\t\tstrict: true,\n\t\tuseStrict: options.useStrict !== false\n\t});\n\n\tif ( entry.defaultExport ) {\n\t\tbundle.body.append( '\\n\\n' + getExportBlock( entry ) );\n\t}\n\n\tbundle.body.indent().prepend( intro ).trimLines().append('\\n\\n}));');\n\n\treturn packageResult( bundle, bundle.body, options, 'toUmd', true );\n}\n\nfunction needsDefault ( externalModule ) {\n\treturn externalModule.needsDefault;\n}\n","import amd from './amd';\nimport cjs from './cjs';\nimport umd from './umd';\n\nexport default {\n\tamd: amd,\n\tcjs: cjs,\n\tumd: umd\n};\n","// TODO rewrite with named imports/exports\nimport defaultsMode from './defaultsMode';\nimport strictMode from './strictMode';\n\nexport default {\n\tdefaultsMode: defaultsMode,\n\tstrictMode: strictMode\n};\n","import packageResult from 'utils/packageResult';\n\nexport default function concat ( bundle, options ) {\n\t// This bundle must be self-contained - no imports or exports\n\tif ( bundle.externalModules.length || bundle.entryModule.exports.length ) {\n\t\tthrow new Error( `bundle.concat() can only be used with bundles that have no imports/exports (imports: [${bundle.externalModules.map(x=>x.id).join(', ')}], exports: [${bundle.entryModule.exports.join(', ')}])` );\n\t}\n\n\t// TODO test these options\n\tlet intro = 'intro' in options ? options.intro : `(function () { 'use strict';\\n\\n`;\n\tlet outro = 'outro' in options ? options.outro : '\\n\\n})();';\n\tlet indent;\n\n\tif ( !( 'indent' in options ) || options.indent === true ) {\n\t\tindent = bundle.body.getIndentString();\n\t} else {\n\t\tindent = options.indent || '';\n\t}\n\n\tbundle.body.trimLines().indent( indent ).prepend( intro ).append( outro );\n\n\treturn packageResult( bundle, bundle.body, options, 'toString', true );\n}\n","import hasNamedImports from 'utils/hasNamedImports';\nimport hasNamedExports from 'utils/hasNamedExports';\nimport getStandaloneModule from 'standalone/getModule';\nimport getBundle from 'bundler/getBundle';\nimport moduleBuilders from 'standalone/builders';\nimport bundleBuilders from 'bundler/builders';\nimport concat from 'bundler/builders/concat';\nimport { getName } from 'utils/mappers';\n\nlet deprecateMessage = 'options.defaultOnly has been deprecated, and is now standard behaviour. To use named imports/exports, pass `strict: true`.';\nlet alreadyWarned = false;\n\nfunction transpileMethod ( format ) {\n\treturn function ( source, options = {} ) {\n\t\tlet mod = getStandaloneModule({\n\t\t\tsource,\n\t\t\tgetModuleName: options.getModuleName,\n\t\t\tstrict: options.strict\n\t\t});\n\n\t\tif ( 'defaultOnly' in options && !alreadyWarned ) {\n\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\tconsole.log( deprecateMessage );\n\t\t\talreadyWarned = true;\n\t\t}\n\n\t\tif ( options.absolutePaths && !options.amdName ) {\n\t\t\tthrow new Error( 'You must specify an `amdName` in order to use the `absolutePaths` option' );\n\t\t}\n\n\t\tlet builder;\n\n\t\tif ( !options.strict ) {\n\t\t\t// ensure there are no named imports/exports. TODO link to a wiki page...\n\t\t\tif ( hasNamedImports( mod ) || hasNamedExports( mod ) ) {\n\t\t\t\tthrow new Error( 'You must be in strict mode (pass `strict: true`) to use named imports or exports' );\n\t\t\t}\n\n\t\t\tbuilder = moduleBuilders.defaultsMode[ format ];\n\t\t} else {\n\t\t\tbuilder = moduleBuilders.strictMode[ format ];\n\t\t}\n\n\t\treturn builder( mod, options );\n\t};\n}\n\nexport default {\n\ttoAmd: transpileMethod( 'amd' ),\n\ttoCjs: transpileMethod( 'cjs' ),\n\ttoUmd: transpileMethod( 'umd' ),\n\n\tbundle: function ( options ) {\n\t\treturn getBundle( options ).then( function ( bundle ) {\n\t\t\treturn {\n\t\t\t\timports: bundle.externalModules.map( mod => mod.id ),\n\t\t\t\texports: flattenExports( bundle.entryModule.exports ),\n\n\t\t\t\ttoAmd: options => transpile( 'amd', options ),\n\t\t\t\ttoCjs: options => transpile( 'cjs', options ),\n\t\t\t\ttoUmd: options => transpile( 'umd', options ),\n\n\t\t\t\tconcat: options => concat( bundle, options || {} )\n\t\t\t};\n\n\t\t\tfunction transpile ( format, options = {} ) {\n\t\t\t\tif ( 'defaultOnly' in options && !alreadyWarned ) {\n\t\t\t\t\t// TODO link to a wiki page explaining this, or something\n\t\t\t\t\tconsole.log( deprecateMessage );\n\t\t\t\t\talreadyWarned = true;\n\t\t\t\t}\n\n\t\t\t\tlet builder;\n\n\t\t\t\tif ( !options.strict ) {\n\t\t\t\t\t// ensure there are no named imports/exports\n\t\t\t\t\tif ( hasNamedExports( bundle.entryModule ) ) {\n\t\t\t\t\t\tthrow new Error( 'Entry module can only have named exports in strict mode (pass `strict: true`)' );\n\t\t\t\t\t}\n\n\t\t\t\t\tbundle.modules.forEach( mod => {\n\t\t\t\t\t\tmod.imports.forEach( x => {\n\t\t\t\t\t\t\tif ( x.module.isExternal && ( !x.isDefault && !x.isBatch ) ) {\n\t\t\t\t\t\t\t\tthrow new Error( 'You can only have named external imports in strict mode (pass `strict: true`)' );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\n\t\t\t\t\tbuilder = bundleBuilders.defaultsMode[ format ];\n\t\t\t\t} else {\n\t\t\t\t\tbuilder = bundleBuilders.strictMode[ format ];\n\t\t\t\t}\n\n\t\t\t\treturn builder( bundle, options );\n\t\t\t}\n\t\t});\n\t}\n};\n\nfunction flattenExports ( exports ) {\n\tlet flattened = [];\n\n\texports.forEach( x => {\n\t\tif ( x.isDefault ) {\n\t\t\tflattened.push( 'default' );\n\t\t}\n\n\t\telse if ( x.name ) {\n\t\t\tflattened.push( x.name );\n\t\t}\n\n\t\telse if ( x.specifiers ) {\n\t\t\tflattened.push.apply( flattened, x.specifiers.map( getName ) );\n\t\t}\n\t});\n\n\treturn flattened;\n}\n"],"names":[],"mappings":"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"}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: esperanto-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.34
4
+ version: 0.6.34.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryunosuke SATO
@@ -100,7 +100,9 @@ files:
100
100
  - vendor/acorn.js
101
101
  - vendor/base64.js
102
102
  - vendor/esperanto.browser.js
103
+ - vendor/esperanto.browser.js.map
103
104
  - vendor/esperanto.js
105
+ - vendor/esperanto.js.map
104
106
  homepage: https://github.com/tricknotes/ruby-esperanto-source
105
107
  licenses:
106
108
  - MIT