(CodeGen code, TypeInteger arg)
| 92 | |
| 93 | |
| 94 | public Parser(CodeGen code, TypeInteger arg) { |
| 95 | _code = code; |
| 96 | _scope = new ScopeNode(); |
| 97 | _continueScope = _breakScope = null; |
| 98 | ZERO = con(TypeInteger.ZERO).keep(); |
| 99 | NIL = con(Type.NIL).keep(); |
| 100 | XCTRL= new XCtrlNode().peephole().keep(); |
| 101 | TYPES = defaultTypes(); |
| 102 | INITS = new HashMap<>(); |
| 103 | } |
| 104 | |
| 105 | @Override |
| 106 | public String toString() { return _lexer.toString(); } |
nothing calls this directly
no test coverage detected