Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gofmtLine (0.2 sec)

  1. src/cmd/cgo/godefs.go

    	"{\n", "{",
    	",\n", ",",
    	".\n", ". ",
    	":\n", ": ", // not possible in gofmt today
    
    	"\n", ";",
    )
    
    // gofmtLine returns the gofmt-formatted string for an AST node,
    // ensuring that it is on a single line.
    func gofmtLine(n interface{}) string {
    	return gofmtLineReplacer.Replace(gofmt(n))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 08 14:33:35 GMT 2022
    - 4.5K bytes
    - Viewed (0)
Back to top