Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for splitFunc (0.19 sec)

  1. src/cmd/fix/typecheck.go

    // Using strings makes this a little harder, but it makes
    // a lot of the rest of the code easier. This will all go away
    // when we can use go/typechecker directly.
    
    // splitFunc splits "func(x,y,z) (a,b,c)" into ["x", "y", "z"] and ["a", "b", "c"].
    func splitFunc(s string) (in, out []string) {
    	if !strings.HasPrefix(s, "func(") {
    		return nil, nil
    	}
    
    	i := len("func(") // index of beginning of 'in' arguments
    	nparen := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
Back to top