Add semantic token highlighting for 'that' variable and comment file references in VS Code extension Add Phone_Text_Input and Currency_Input components with formatting utilities Implement client widgets, form standardization, and soft delete functionality Add modal scroll lock and update documentation Implement comprehensive modal system with form integration and validation Fix modal component instantiation using jQuery plugin API Implement modal system with responsive sizing, queuing, and validation support Implement form submission with validation, error handling, and loading states Implement country/state selectors with dynamic data loading and Bootstrap styling Revert Rsx::Route() highlighting in Blade/PHP files Target specific PHP scopes for Rsx::Route() highlighting in Blade Expand injection selector for Rsx::Route() highlighting Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls Update jqhtml packages to v2.2.165 Add bundle path validation for common mistakes (development mode only) Create Ajax_Select_Input widget and Rsx_Reference_Data controller Create Country_Select_Input widget with default country support Initialize Tom Select on Select_Input widgets Add Tom Select bundle for enhanced select dropdowns Implement ISO 3166 geographic data system for country/region selection Implement widget-based form system with disabled state support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
196 lines
5.7 KiB
JavaScript
Executable File
196 lines
5.7 KiB
JavaScript
Executable File
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const {
|
|
DEFAULT_EXPORT,
|
|
NAMESPACE_OBJECT_EXPORT
|
|
} = require("./util/concatenate");
|
|
|
|
/** @typedef {import("./Chunk")} Chunk */
|
|
/** @typedef {import("./Module")} Module */
|
|
/** @typedef {import("./optimize/ConcatenatedModule").ConcatenatedModuleInfo} ConcatenatedModuleInfo */
|
|
/** @typedef {import("./optimize/ConcatenatedModule").ModuleInfo} ModuleInfo */
|
|
/** @typedef {import("./optimize/ConcatenatedModule").ExportName} Ids */
|
|
|
|
const MODULE_REFERENCE_REGEXP =
|
|
/^__WEBPACK_MODULE_REFERENCE__(\d+)_([\da-f]+|ns)(_call)?(_directImport)?(_deferredImport)?(?:_asiSafe(\d))?__$/;
|
|
|
|
/**
|
|
* @typedef {object} ModuleReferenceOptions
|
|
* @property {Ids} ids the properties/exports of the module
|
|
* @property {boolean} call true, when this referenced export is called
|
|
* @property {boolean} directImport true, when this referenced export is directly imported (not via property access)
|
|
* @property {boolean} deferredImport true, when this referenced export is deferred
|
|
* @property {boolean | undefined} asiSafe if the position is ASI safe or unknown
|
|
*/
|
|
|
|
class ConcatenationScope {
|
|
/**
|
|
* @param {ModuleInfo[] | Map<Module, ModuleInfo>} modulesMap all module info by module
|
|
* @param {ConcatenatedModuleInfo} currentModule the current module info
|
|
* @param {Set<string>} usedNames all used names
|
|
*/
|
|
constructor(modulesMap, currentModule, usedNames) {
|
|
this._currentModule = currentModule;
|
|
if (Array.isArray(modulesMap)) {
|
|
const map = new Map();
|
|
for (const info of modulesMap) {
|
|
map.set(info.module, info);
|
|
}
|
|
modulesMap = map;
|
|
}
|
|
this.usedNames = usedNames;
|
|
this._modulesMap = modulesMap;
|
|
}
|
|
|
|
/**
|
|
* @param {Module} module the referenced module
|
|
* @returns {boolean} true, when it's in the scope
|
|
*/
|
|
isModuleInScope(module) {
|
|
return this._modulesMap.has(module);
|
|
}
|
|
|
|
/**
|
|
* @param {string} exportName name of the export
|
|
* @param {string} symbol identifier of the export in source code
|
|
*/
|
|
registerExport(exportName, symbol) {
|
|
if (!this._currentModule.exportMap) {
|
|
this._currentModule.exportMap = new Map();
|
|
}
|
|
if (!this._currentModule.exportMap.has(exportName)) {
|
|
this._currentModule.exportMap.set(exportName, symbol);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} exportName name of the export
|
|
* @param {string} expression expression to be used
|
|
*/
|
|
registerRawExport(exportName, expression) {
|
|
if (!this._currentModule.rawExportMap) {
|
|
this._currentModule.rawExportMap = new Map();
|
|
}
|
|
if (!this._currentModule.rawExportMap.has(exportName)) {
|
|
this._currentModule.rawExportMap.set(exportName, expression);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} exportName name of the export
|
|
* @returns {string | undefined} the expression of the export
|
|
*/
|
|
getRawExport(exportName) {
|
|
if (!this._currentModule.rawExportMap) {
|
|
return undefined;
|
|
}
|
|
return this._currentModule.rawExportMap.get(exportName);
|
|
}
|
|
|
|
/**
|
|
* @param {string} exportName name of the export
|
|
* @param {string} expression expression to be used
|
|
*/
|
|
setRawExportMap(exportName, expression) {
|
|
if (!this._currentModule.rawExportMap) {
|
|
this._currentModule.rawExportMap = new Map();
|
|
}
|
|
if (this._currentModule.rawExportMap.has(exportName)) {
|
|
this._currentModule.rawExportMap.set(exportName, expression);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} symbol identifier of the export in source code
|
|
*/
|
|
registerNamespaceExport(symbol) {
|
|
this._currentModule.namespaceExportSymbol = symbol;
|
|
}
|
|
|
|
/**
|
|
* @param {string} symbol identifier of the export in source code
|
|
* @returns {boolean} registered success
|
|
*/
|
|
registerUsedName(symbol) {
|
|
if (this.usedNames.has(symbol)) {
|
|
return false;
|
|
}
|
|
this.usedNames.add(symbol);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param {Module} module the referenced module
|
|
* @param {Partial<ModuleReferenceOptions>} options options
|
|
* @returns {string} the reference as identifier
|
|
*/
|
|
createModuleReference(
|
|
module,
|
|
{
|
|
ids = undefined,
|
|
call = false,
|
|
directImport = false,
|
|
deferredImport = false,
|
|
asiSafe = false
|
|
}
|
|
) {
|
|
const info = /** @type {ModuleInfo} */ (this._modulesMap.get(module));
|
|
const callFlag = call ? "_call" : "";
|
|
const directImportFlag = directImport ? "_directImport" : "";
|
|
const deferredImportFlag = deferredImport ? "_deferredImport" : "";
|
|
const asiSafeFlag = asiSafe
|
|
? "_asiSafe1"
|
|
: asiSafe === false
|
|
? "_asiSafe0"
|
|
: "";
|
|
const exportData = ids
|
|
? Buffer.from(JSON.stringify(ids), "utf8").toString("hex")
|
|
: "ns";
|
|
// a "._" is appended to allow "delete ...", which would cause a SyntaxError in strict mode
|
|
return `__WEBPACK_MODULE_REFERENCE__${info.index}_${exportData}${callFlag}${directImportFlag}${deferredImportFlag}${asiSafeFlag}__._`;
|
|
}
|
|
|
|
/**
|
|
* @param {string} name the identifier
|
|
* @returns {boolean} true, when it's an module reference
|
|
*/
|
|
static isModuleReference(name) {
|
|
return MODULE_REFERENCE_REGEXP.test(name);
|
|
}
|
|
|
|
/**
|
|
* @param {string} name the identifier
|
|
* @returns {ModuleReferenceOptions & { index: number } | null} parsed options and index
|
|
*/
|
|
static matchModuleReference(name) {
|
|
const match = MODULE_REFERENCE_REGEXP.exec(name);
|
|
if (!match) return null;
|
|
const index = Number(match[1]);
|
|
const asiSafe = match[6];
|
|
return {
|
|
index,
|
|
ids:
|
|
match[2] === "ns"
|
|
? []
|
|
: JSON.parse(Buffer.from(match[2], "hex").toString("utf8")),
|
|
call: Boolean(match[3]),
|
|
directImport: Boolean(match[4]),
|
|
deferredImport: Boolean(match[5]),
|
|
asiSafe: asiSafe ? asiSafe === "1" : undefined
|
|
};
|
|
}
|
|
}
|
|
|
|
ConcatenationScope.DEFAULT_EXPORT = DEFAULT_EXPORT;
|
|
ConcatenationScope.NAMESPACE_OBJECT_EXPORT = NAMESPACE_OBJECT_EXPORT;
|
|
|
|
/** @type {WeakMap<Chunk, Set<string>>} */
|
|
ConcatenationScope.chunkUsedNames = new WeakMap();
|
|
|
|
module.exports = ConcatenationScope;
|