Example #1
0
File: op.go Project: tsavola/wag
func (info opInfo) secondaryType() types.T {
	return types.T(info >> 8)
}
Example #2
0
File: op.go Project: tsavola/wag
func (info opInfo) primaryType() types.T {
	return types.T(uint8(info))
}