Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for funcString (0.08 sec)

  1. src/cmd/compile/internal/types2/lookup.go

    			}
    		case wrongName:
    			fs, ms := check.funcString(f, false), check.funcString(m, false)
    			*cause = check.sprintf("(missing method %s)\n\t\thave %s\n\t\twant %s", m.Name(), fs, ms)
    		case unexported:
    			*cause = check.sprintf("(unexported method %s)", m.Name())
    		case wrongSig:
    			fs, ms := check.funcString(f, false), check.funcString(m, false)
    			if fs == ms {
    				// Don't report "want Foo, have Foo".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/go/types/lookup.go

    			}
    		case wrongName:
    			fs, ms := check.funcString(f, false), check.funcString(m, false)
    			*cause = check.sprintf("(missing method %s)\n\t\thave %s\n\t\twant %s", m.Name(), fs, ms)
    		case unexported:
    			*cause = check.sprintf("(unexported method %s)", m.Name())
    		case wrongSig:
    			fs, ms := check.funcString(f, false), check.funcString(m, false)
    			if fs == ms {
    				// Don't report "want Foo, have Foo".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top