Searched refs:fragBlock (Results 1 – 2 of 2) sorted by relevance
/third_party/jsframework/runtime/main/model/ |
D | compiler.ts | 456 const fragBlock: FragBlockInterface = createBlock(vm, dest); constant 457 fragBlock.children = []; 458 fragBlock.data = []; 459 fragBlock.vms = []; 460 bindRepeat(vm, target, fragBlock, { getter, key, value, trackBy }); 477 const fragBlock = createBlock(vm, dest); constant 479 dest.children.push(fragBlock); 484 bindShown(vm, target, fragBlock, newMeta); 746 function bindRepeat(vm: Vm, target: TemplateInterface, fragBlock: FragBlockInterface, info: any): v… 747 const vms = fragBlock.vms; [all …]
|
D | domHelper.ts | 190 function moveBlock(fragBlock: FragBlockInterface, after: Node): any { 193 let el = fragBlock.start as Node; 196 while (el && el !== fragBlock.end) { 247 function removeBlock(fragBlock: FragBlockInterface, preserveBlock?: boolean): void { 252 let el = fragBlock.start.nextSibling; 253 while (el && el !== fragBlock.end) { 258 removeElement(fragBlock.start); 264 removeElement(fragBlock.end);
|