(view: View)
| 2226 | } |
| 2227 | |
| 2228 | function nativeScriptViewType(view: View): string { |
| 2229 | return stringValue((view as any).typeName) || constructorName(view); |
| 2230 | } |
| 2231 | |
| 2232 | function normalizeSourceRoot(sourceRoot: string | undefined): string { |
| 2233 | const root = stringValue(sourceRoot).replace(/\/+$/, ""); |
no test coverage detected