Returns the column number where this AST node begins in the source file. Column numbers are 0-indexed. Returns -1 if position information is unavailable (for synthetic or generated nodes). @return the starting column number, or -1 if not available
()
| 102 | * @return the starting column number, or -1 if not available |
| 103 | */ |
| 104 | public int getColumnNumber() { |
| 105 | return columnNumber; |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Sets the starting column number for this AST node in the source file. |
no outgoing calls
no test coverage detected