chore: remove ignored files from tracking

This commit is contained in:
2026-03-24 23:26:37 +01:00
parent a69394a05b
commit 8e5a4b08bb
1604 changed files with 0 additions and 885227 deletions

View File

@@ -1,26 +0,0 @@
import Node from './shared/Node.js';
import map_children from './shared/map_children.js';
import TemplateScope from './shared/TemplateScope.js';
/** @extends Node<'Fragment'> */
export default class Fragment extends Node {
/** @type {import('../render_dom/Block.js').default} */
block;
/** @type {import('./interfaces.js').INode[]} */
children;
/** @type {import('./shared/TemplateScope.js').default} */
scope;
/**
* @param {import('../Component.js').default} component
* @param {import('../../interfaces.js').TemplateNode} info
*/
constructor(component, info) {
const scope = new TemplateScope();
super(component, null, scope, info);
this.scope = scope;
this.children = map_children(component, this, scope, info.children);
}
}