AnnotatedSIR

scalus.compiler.sir.AnnotatedSIR
sealed trait AnnotatedSIR extends SIR

Attributes

Graph
Supertypes
trait SIR
class Object
trait Matchable
class Any
Known subtypes
class And
class Apply
class Builtin
class Cast
class Const
class Constr
class Error
class ExternalVar
class IfThenElse
class LamAbs
class Let
class Match
class Not
class Or
class Select
class Var
Show all

Members list

Value members

Abstract methods

Inherited methods

infix def $(arg: AnnotatedSIR): SIR

Applies this SIR term to an argument, creating an Apply node.

Applies this SIR term to an argument, creating an Apply node.

This method handles function application by:

  • Stripping any Decl wrappers from the function term
  • Extracting the result type from the function's type signature
  • Creating an Apply node with the unwrapped function and argument
  • Re-wrapping the result with the original Decl nodes

The method supports both simple function types (SIRType.Fun) and polymorphic functions wrapped in type lambdas (SIRType.TypeLambda).

Value parameters

arg

the argument to apply to this function term

Attributes

Returns

a SIR expression representing the function application, potentially wrapped in Decl nodes

Throws
RuntimeException

if the term's type is not a function type

Example
val f: SIR = ... // a function of type A -> B
val arg: AnnotatedSIR = ... // an argument of type A
val result: SIR = f $ arg // Apply(f, arg, B, anns)
Inherited from:
SIR
def ~=~(that: SIR): Boolean

Attributes

Inherited from:
SIR

Inherited and Abstract methods

def tp: SIRType

Attributes

Inherited from:
SIR