Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewDynamicType (0.32 sec)

  1. src/cmd/compile/internal/ir/type.go

    	//
    	// ITab is only used for assertions (including type switches) from
    	// non-empty interface type to a concrete (i.e., non-interface)
    	// type. For all other assertions, ITab is nil.
    	ITab Node
    }
    
    func NewDynamicType(pos src.XPos, rtype Node) *DynamicType {
    	n := &DynamicType{RType: rtype}
    	n.pos = pos
    	n.op = ODYNAMICTYPE
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top