(value: string)
| 9 | const SIM_RUNTIME_ROOT = '<SIM_RUNTIME_ROOT>'; |
| 10 | |
| 11 | function isElementRef(value: string): boolean { |
| 12 | return /^e\d+$/.test(value); |
| 13 | } |
| 14 | |
| 15 | function isIosRuntimeLabel(value: string): boolean { |
| 16 | return /^iOS \d+(?:\.\d+)*$/.test(value); |