Interface Prim<PT, AT>

An AST node representing Michelson primitive.

interface Prim<PT, AT> {
    [sourceReference]?: SourceReference;
    annots?: string[];
    args?: AT;
    prim: PT;
}

Type Parameters

  • PT extends string = string
  • AT extends Expr[] = Expr[]

Hierarchy (view full)

Properties

[sourceReference]?: SourceReference
annots?: string[]
args?: AT
prim: PT