(cursor: TreeCursor, depth: number)
| 122 | } |
| 123 | |
| 124 | private printCursorLocationInfo(cursor: TreeCursor, depth: number) { |
| 125 | const field = cursor.currentFieldName(); |
| 126 | const fieldText = field != null ? `${field}: ` : ""; |
| 127 | console.debug(">".repeat(depth + 1), `${fieldText}${cursor.nodeType}`); |
| 128 | } |
| 129 | } |
no test coverage detected