Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for BinaryExpr (0.1 sec)

  1. src/go/doc/exports.go

    	case *ast.StarExpr: // possibly an embedded type literal
    		r.filterType(nil, t.X)
    	case *ast.UnaryExpr:
    		if t.Op == token.TILDE { // approximation element
    			r.filterType(nil, t.X)
    		}
    	case *ast.BinaryExpr:
    		if t.Op == token.OR { // union
    			r.filterType(nil, t.X)
    			r.filterType(nil, t.Y)
    		}
    	case *ast.ArrayType:
    		r.filterType(nil, t.Elt)
    	case *ast.StructType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top