Class Binding.BindingPair

java.lang.Object
org.jfuncmachine.compiler.model.expr.Binding.BindingPair
Enclosing class:
Binding

public static class Binding.BindingPair extends Object
An association of a variable name with an expression value
  • Field Details

    • name

      public final String name
      The name of the variable
    • value

      public final Expression value
      The value the variable is bound to
  • Constructor Details

    • BindingPair

      public BindingPair(String name, Expression value)
      Create a new binding pair
      Parameters:
      name - The name of the variable
      value - The value the variable is bound to