Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AssertExpr (0.12 sec)

  1. src/cmd/compile/internal/syntax/printer.go

    			p.printNode(i)
    		}
    		p.print(_Colon)
    		if j := n.Index[1]; j != nil {
    			p.printNode(j)
    		}
    		if k := n.Index[2]; k != nil {
    			p.print(_Colon, k)
    		}
    		p.print(_Rbrack)
    
    	case *AssertExpr:
    		p.print(n.X, _Dot, _Lparen, n.Type, _Rparen)
    
    	case *TypeSwitchGuard:
    		if n.Lhs != nil {
    			p.print(n.Lhs, blank, _Define, blank)
    		}
    		p.print(n.X, _Dot, _Lparen, _Type, _Rparen)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top