Addresses #7836: Noisy $fill widgets (#8930)

$fill widgets will get ignored when encountered by ts-raw slots
This commit is contained in:
Cameron Fischer
2025-02-14 12:57:06 -05:00
committed by GitHub
parent 3051e8dddc
commit 4425a891bc
2 changed files with 38 additions and 0 deletions

View File

@@ -24,6 +24,10 @@ Inherit from the base widget class
*/
FillWidget.prototype = new Widget();
FillWidget.prototype.execute = function() {
// Do nothing. Make no child widgets. $Fill widgets should be invisible when naturally encountered. Instead, their parseTreeNodes are made available to $slot widgets that want it.
};
exports.fill = FillWidget;
})();