( create: IcuCreateOpCodes, marker: null | ICU_MARKER | ELEMENT_MARKER, text: string, appendToParentIdx: number, createAtIdx: number, )
| 959 | } |
| 960 | |
| 961 | function addCreateNodeAndAppend( |
| 962 | create: IcuCreateOpCodes, |
| 963 | marker: null | ICU_MARKER | ELEMENT_MARKER, |
| 964 | text: string, |
| 965 | appendToParentIdx: number, |
| 966 | createAtIdx: number, |
| 967 | ) { |
| 968 | if (marker !== null) { |
| 969 | create.push(marker); |
| 970 | } |
| 971 | create.push( |
| 972 | text, |
| 973 | createAtIdx, |
| 974 | icuCreateOpCode(IcuCreateOpCode.AppendChild, appendToParentIdx, createAtIdx), |
| 975 | ); |
| 976 | } |
| 977 | |
| 978 | function addCreateAttribute( |
| 979 | create: IcuCreateOpCodes, |
no test coverage detected
searching dependent graphs…