()
| 36 | private static instance: PathWin32; |
| 37 | private constructor() { super(); } |
| 38 | public static getInstance(): PathWin32 { |
| 39 | if (! this.instance) |
| 40 | this.instance = new PathWin32(); |
| 41 | return this.instance; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | export class PathPosix extends PathKind { |
no outgoing calls