Returns the line number where this AST node begins in the source file. Line numbers start from 1. Returns -1 if position information is not available (for synthetic or generated nodes). @return the starting line number, or -1 if not available
()
| 81 | * @return the starting line number, or -1 if not available |
| 82 | */ |
| 83 | public int getLineNumber() { |
| 84 | return lineNumber; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Sets the starting line number for this AST node in the source file. |
no outgoing calls