@return the column of where a Node is defined in source. If the column is -1, it was never initialized. One-based. May be overridden by sub classes
()
| 1277 | * <p>May be overridden by sub classes |
| 1278 | */ |
| 1279 | public int getColumn() { |
| 1280 | return column; |
| 1281 | } |
| 1282 | |
| 1283 | protected int type = Token.ERROR; // type of the node, e.g. Token.NAME |
| 1284 | protected Node next; // next sibling |
no outgoing calls