Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errorList (0.21 sec)

  1. src/cmd/cgo/ast.go

    	"os"
    	"strings"
    )
    
    func parse(name string, src []byte, flags parser.Mode) *ast.File {
    	ast1, err := parser.ParseFile(fset, name, src, flags)
    	if err != nil {
    		if list, ok := err.(scanner.ErrorList); ok {
    			// If err is a scanner.ErrorList, its String will print just
    			// the first error and then (+n more errors).
    			// Instead, turn it into a new Error that will return
    			// details for all the errors.
    			for _, e := range list {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 14 15:47:06 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg go/scanner, method (Error) Error() string
    pkg go/scanner, method (ErrorList) Err() error
    pkg go/scanner, method (ErrorList) Error() string
    pkg go/scanner, method (ErrorList) Len() int
    pkg go/scanner, method (ErrorList) Less(int, int) bool
    pkg go/scanner, method (ErrorList) Sort()
    pkg go/scanner, method (ErrorList) Swap(int, int)
    pkg go/scanner, type Error struct
    pkg go/scanner, type Error struct, Msg string
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top