Home
last modified time | relevance | path

Searched refs:extendCollection (Results 1 – 2 of 2) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dvalidate_ui_syntax.ts967 export function preprocessExtend(content: string, extendCollection?: Set<string>): string {
972 if (extendCollection) {
973 extendCollection.add(item3);
979 export function preprocessNewExtend(content: string, extendCollection?: Set<string>): string {
982 if (extendCollection) {
983 extendCollection.add(item1);
Dets_checker.ts722 export const extendCollection: Set<string> = new Set(); constant
733 props.push(...dollarCollection, ...decoratorParamsCollection, ...extendCollection);
913 source = preprocessExtend(source, extendCollection);
914 source = preprocessNewExtend(source, extendCollection);