| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package unused
- //go:generate go run golang.org/x/tools/cmd/stringer@master -type edgeKind
- type edgeKind uint64
- func (e edgeKind) is(o edgeKind) bool {
- return e&o != 0
- }
- const (
- edgeAlias edgeKind = 1 << iota
- edgeBlankField
- edgeAnonymousStruct
- edgeCgoExported
- edgeConstGroup
- edgeElementType
- edgeEmbeddedInterface
- edgeExportedConstant
- edgeExportedField
- edgeExportedFunction
- edgeExportedMethod
- edgeExportedType
- edgeExportedVariable
- edgeExtendsExportedFields
- edgeExtendsExportedMethodSet
- edgeFieldAccess
- edgeFunctionArgument
- edgeFunctionResult
- edgeFunctionSignature
- edgeImplements
- edgeInstructionOperand
- edgeInterfaceCall
- edgeInterfaceMethod
- edgeKeyType
- edgeLinkname
- edgeMainFunction
- edgeNamedType
- edgeNetRPCRegister
- edgeNoCopySentinel
- edgeProvidesMethod
- edgeReceiver
- edgeRuntimeFunction
- edgeSignature
- edgeStructConversion
- edgeTestSink
- edgeTupleElement
- edgeType
- edgeTypeName
- edgeUnderlyingType
- edgePointerType
- edgeUnsafeConversion
- edgeUsedConstant
- edgeVarDecl
- edgeIgnored
- edgeSamePointer
- edgeTypeParam
- edgeTypeArg
- edgeUnionTerm
- )
|