( Type type, boolean xfinal, Parser.Lexer loc )
| 40 | public boolean isFRef() { return _fref; } |
| 41 | |
| 42 | public void defFRef( Type type, boolean xfinal, Parser.Lexer loc ) { |
| 43 | assert isFRef() && xfinal; |
| 44 | _type = type; |
| 45 | _final = true; |
| 46 | _fref = false; |
| 47 | _loc = loc; |
| 48 | } |
| 49 | |
| 50 | @Override public String toString() { |
| 51 | return _type.toString()+(_final ? " ": " !")+_name; |