github.com/llir/llvm@v0.3.6/ir/ir.go (about)

     1  // Package ir declares the types used to represent LLVM IR modules.
     2  package ir
     3  
     4  // LLStringer is implemented by any value that has a LLString method, which
     5  // defines the LLVM syntax for that value.
     6  type LLStringer interface {
     7  	// LLString returns the LLVM syntax representation of the value.
     8  	LLString() string
     9  }