Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/syntax/walk.go

    		}
    
    	case *TypeDecl:
    		w.node(n.Name)
    		w.fieldList(n.TParamList)
    		w.node(n.Type)
    
    	case *VarDecl:
    		w.nameList(n.NameList)
    		if n.Type != nil {
    			w.node(n.Type)
    		}
    		if n.Values != nil {
    			w.node(n.Values)
    		}
    
    	case *FuncDecl:
    		if n.Recv != nil {
    			w.node(n.Recv)
    		}
    		w.node(n.Name)
    		w.fieldList(n.TParamList)
    		w.node(n.Type)
    		if n.Body != nil {
    			w.node(n.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/nodes.go

    		Values   Expr // nil means no values
    		decl
    	}
    
    	// Name Type
    	TypeDecl struct {
    		Group      *Group // nil means not part of a group
    		Pragma     Pragma
    		Name       *Name
    		TParamList []*Field // nil means no type parameters
    		Alias      bool
    		Type       Expr
    		decl
    	}
    
    	// NameList Type
    	// NameList Type = Values
    	// NameList      = Values
    	VarDecl struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top