Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findImportGroupStarts (0.23 sec)

  1. src/go/doc/example.go

    			has = true
    			return false
    		}
    		return true
    	})
    	return has
    }
    
    // findImportGroupStarts finds the start positions of each sequence of import
    // specs that are not separated by a blank line.
    func findImportGroupStarts(imps []*ast.ImportSpec) []token.Pos {
    	startImps := findImportGroupStarts1(imps)
    	groupStarts := make([]token.Pos, len(startImps))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top