Class Argument

java.lang.Object
org.ek9lang.compiler.ir.Argument
All Implemented Interfaces:
INode

public final class Argument extends Object implements INode
Represents an argument to a call on a method or a function. Basically the same as a Parameter in every way. But decided to duplicate just so it's really obvious that 'Parameters' are defined as part of the function/method signature and 'Arguments' are types values that are passed to the function/method where the 'Arguments' match the 'Parameters'. All that checking and resolution is done in the 'front-end' and so at this point we are guaranteed a match (though there maybe promotions of types required).
  • Constructor Details

    • Argument

      public Argument(ISymbol symbol)
  • Method Details