( Node n )
| 1764 | public static ConstantNode con( Type t ) { return (ConstantNode)new ConstantNode(t).peephole(); } |
| 1765 | public static ConFldOffNode off( TypeStruct base, String fname ) { return (ConFldOffNode)(new ConFldOffNode(base._name,fname).peephole()); } |
| 1766 | public Node peep( Node n ) { |
| 1767 | // Peephole, then improve with lexically scoped guards |
| 1768 | return _scope.upcastGuard(n.peephole()); |
| 1769 | } |
| 1770 | |
| 1771 | // Parse a string or null |
| 1772 | private String parseString() { |
no test coverage detected