You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
566 B
27 lines
566 B
/* |
|
MIT License http://www.opensource.org/licenses/mit-license.php |
|
*/ |
|
|
|
"use strict"; |
|
|
|
const RuntimeGlobals = require("../RuntimeGlobals"); |
|
const RuntimeModule = require("../RuntimeModule"); |
|
|
|
class ChunkNameRuntimeModule extends RuntimeModule { |
|
/** |
|
* @param {string} chunkName the chunk's name |
|
*/ |
|
constructor(chunkName) { |
|
super("chunkName"); |
|
this.chunkName = chunkName; |
|
} |
|
|
|
/** |
|
* @returns {string} runtime code |
|
*/ |
|
generate() { |
|
return `${RuntimeGlobals.chunkName} = ${JSON.stringify(this.chunkName)};`; |
|
} |
|
} |
|
|
|
module.exports = ChunkNameRuntimeModule;
|
|
|