Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseAPIFile (0.11 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    var apiFileLineRegexp = regexp.MustCompile(`^pkg ([^ \t]+)[ \t]*(\([^)]+\))?, ([^#]*)(#\d+)?$`)
    
    // parseAPIFile parses a file in the api format and returns a list of the file's features.
    // A feature is represented by a single line that looks like
    //
    //	pkg PKG (BUILD) FEATURE #ISSUE
    //
    // where the BUILD and ISSUE may be absent.
    func parseAPIFile(fsys fs.FS, filename string) ([]APIFeature, error) {
    	f, err := fsys.Open(filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top