( long con )
| 1447 | */ |
| 1448 | private ConstantNode parseLiteral() { return con(_lexer.parseNumber()); } |
| 1449 | public static Node con( long con ) { return con==0 ? ZERO : con(TypeInteger.constant(con)); } |
| 1450 | public static ConstantNode con( Type t ) { return (ConstantNode)new ConstantNode(t).peephole(); } |
| 1451 | public Node peep( Node n ) { |
| 1452 | // Peephole, then improve with lexically scoped guards |
no test coverage detected