MCPcopy Create free account
hub / github.com/llir/llvm / Type

Method Type

ir/constant/expr_binary.go:543–549  ·  view source on GitHub ↗

Type returns the type of the constant expression.

()

Source from the content-addressed store, hash-verified

541
542// Type returns the type of the constant expression.
543func (e *ExprFRem) Type() types.Type {
544 // Cache type if not present.
545 if e.Typ == nil {
546 e.Typ = e.X.Type()
547 }
548 return e.Typ
549}
550
551// Ident returns the identifier associated with the constant expression.
552func (e *ExprFRem) Ident() string {

Callers 2

NewFRemFunction · 0.95
StringMethod · 0.95

Calls 1

TypeMethod · 0.65

Tested by

no test coverage detected