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>
88 lines
2.6 KiB
JavaScript
88 lines
2.6 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "Hub", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _hub.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "NodePath", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _index.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "Scope", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _index2.default;
|
|
}
|
|
});
|
|
exports.visitors = exports.default = void 0;
|
|
require("./path/context.js");
|
|
var visitors = require("./visitors.js");
|
|
exports.visitors = visitors;
|
|
var _t = require("@babel/types");
|
|
var cache = require("./cache.js");
|
|
var _traverseNode = require("./traverse-node.js");
|
|
var _index = require("./path/index.js");
|
|
var _index2 = require("./scope/index.js");
|
|
var _hub = require("./hub.js");
|
|
const {
|
|
VISITOR_KEYS,
|
|
removeProperties,
|
|
traverseFast
|
|
} = _t;
|
|
function traverse(parent, opts = {}, scope, state, parentPath, visitSelf) {
|
|
if (!parent) return;
|
|
if (!opts.noScope && !scope) {
|
|
if (parent.type !== "Program" && parent.type !== "File") {
|
|
throw new Error("You must pass a scope and parentPath unless traversing a Program/File. " + `Instead of that you tried to traverse a ${parent.type} node without ` + "passing scope and parentPath.");
|
|
}
|
|
}
|
|
if (!parentPath && visitSelf) {
|
|
throw new Error("visitSelf can only be used when providing a NodePath.");
|
|
}
|
|
if (!VISITOR_KEYS[parent.type]) {
|
|
return;
|
|
}
|
|
visitors.explode(opts);
|
|
(0, _traverseNode.traverseNode)(parent, opts, scope, state, parentPath, undefined, visitSelf);
|
|
}
|
|
var _default = exports.default = traverse;
|
|
traverse.visitors = visitors;
|
|
traverse.verify = visitors.verify;
|
|
traverse.explode = visitors.explode;
|
|
traverse.cheap = function (node, enter) {
|
|
traverseFast(node, enter);
|
|
return;
|
|
};
|
|
traverse.node = function (node, opts, scope, state, path, skipKeys) {
|
|
(0, _traverseNode.traverseNode)(node, opts, scope, state, path, skipKeys);
|
|
};
|
|
traverse.clearNode = function (node, opts) {
|
|
removeProperties(node, opts);
|
|
};
|
|
traverse.removeProperties = function (tree, opts) {
|
|
traverseFast(tree, traverse.clearNode, opts);
|
|
return tree;
|
|
};
|
|
traverse.hasType = function (tree, type, denylistTypes) {
|
|
if (denylistTypes != null && denylistTypes.includes(tree.type)) return false;
|
|
if (tree.type === type) return true;
|
|
return traverseFast(tree, function (node) {
|
|
if (denylistTypes != null && denylistTypes.includes(node.type)) {
|
|
return traverseFast.skip;
|
|
}
|
|
if (node.type === type) {
|
|
return traverseFast.stop;
|
|
}
|
|
});
|
|
};
|
|
traverse.cache = cache;
|
|
|
|
//# sourceMappingURL=index.js.map
|