(parts: string)
| 79 | constructor(public value: string) {} |
| 80 | |
| 81 | append(parts: string): CodeActionKind { |
| 82 | return new CodeActionKind(this.value ? `${this.value}.${parts}` : parts) |
| 83 | } |
| 84 | |
| 85 | intersects(other: CodeActionKind): boolean { |
| 86 | return this.contains(other) || other.contains(this) |
no outgoing calls
no test coverage detected