( Node n )
| 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 |
| 1542 | return _scope.upcastGuard(n.peephole()); |
| 1543 | } |
| 1544 | |
| 1545 | // Parse a string or null |
| 1546 | private String parseString() { |
no test coverage detected