( long con )
| 1536 | */ |
| 1537 | private ConstantNode parseLiteral() { return con(_lexer.parseNumber()); } |
| 1538 | public static Node con( long con ) { return con==0 ? ZERO : con(TypeInteger.constant(con)); } |
| 1539 | public static ConstantNode con( Type t ) { return (ConstantNode)new ConstantNode(t).peephole(); } |
| 1540 | public Node peep( Node n ) { |
| 1541 | // Peephole, then improve with lexically scoped guards |
no test coverage detected