( create: IcuCreateOpCodes, newIndex: number, attrName: string, attrValue: string, )
| 976 | } |
| 977 | |
| 978 | function addCreateAttribute( |
| 979 | create: IcuCreateOpCodes, |
| 980 | newIndex: number, |
| 981 | attrName: string, |
| 982 | attrValue: string, |
| 983 | ) { |
| 984 | create.push((newIndex << IcuCreateOpCode.SHIFT_REF) | IcuCreateOpCode.Attr, attrName, attrValue); |
| 985 | } |
| 986 | |
| 987 | function splitNsName(elementName: string, fatal: boolean = true): [string | null, string] { |
| 988 | if (elementName[0] != ':') { |
no test coverage detected
searching dependent graphs…