Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for paramList (0.1 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				qual = &Qualifier{Name: "noexcept", Exprs: []AST{expr}}
    			case 'w':
    				st.advance(2)
    				parmlist := st.parmlist(false)
    				if len(st.str) == 0 || st.str[0] != 'E' {
    					st.fail("expected E after throw parameter list")
    				}
    				st.advance(1)
    				qual = &Qualifier{Name: "throw", Exprs: parmlist}
    			default:
    				break qualLoop
    			}
    			q = append([]AST{qual}, q...)
    		} else {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/object.go

    		case *Basic:
    			// Don't print anything more for basic types since there's
    			// no more information.
    			return
    		case *Named:
    			if t.TypeParams().Len() > 0 {
    				newTypeWriter(buf, qf).tParamList(t.TypeParams().list())
    			}
    		}
    		if tname.IsAlias() {
    			buf.WriteString(" =")
    			if alias, ok := typ.(*Alias); ok { // materialized? (gotypesalias=1)
    				typ = alias.fromRHS
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. src/go/types/object.go

    		case *Basic:
    			// Don't print anything more for basic types since there's
    			// no more information.
    			return
    		case *Named:
    			if t.TypeParams().Len() > 0 {
    				newTypeWriter(buf, qf).tParamList(t.TypeParams().list())
    			}
    		}
    		if tname.IsAlias() {
    			buf.WriteString(" =")
    			if alias, ok := typ.(*Alias); ok { // materialized? (gotypesalias=1)
    				typ = alias.fromRHS
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top