Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Ut (0.02 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Num int
    }
    
    func (ut *UnnamedType) print(ps *printState) {
    	if ps.llvmStyle {
    		if ut.Num == 0 {
    			ps.writeString("'unnamed'")
    		} else {
    			ps.writeString(fmt.Sprintf("'unnamed%d'", ut.Num-1))
    		}
    	} else {
    		ps.writeString(fmt.Sprintf("{unnamed type#%d}", ut.Num+1))
    	}
    }
    
    func (ut *UnnamedType) Traverse(fn func(AST) bool) {
    	fn(ut)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top