Returns the line number where this AST node ends in the source file. Line numbers start from 1. Returns -1 if position information is unavailable. The end position is typically inclusive (last line of the node's span). @return the ending line number, or -1 if not available
()
| 123 | * @return the ending line number, or -1 if not available |
| 124 | */ |
| 125 | public int getLastLineNumber() { |
| 126 | return lastLineNumber; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Sets the ending line number for this AST node in the source file. |
no outgoing calls
no test coverage detected