Class Vm

java.lang.Object
org.kink_lang.kink.Vm

public class Vm extends Object
A Kink vm, or runtime.
  • Field Details

  • Method Details

    • newVm

      public static Vm newVm()
      Returns a new vm.
      Returns:
      a new vm.
    • newVal

      public final Val newVal()
      Returns a new val.
      Returns:
      a new val.
    • newVal

      public final Val newVal(SharedVars sharedVars)
      Returns a new val with the shared vars.
      Parameters:
      sharedVars - shared vars as the initial variable mapping.
      Returns:
      a new val.
    • run

      public <T> T run(HostFunAction bootstrapAction, Function<? super Val,? extends T> onReturned, Function<? super ExceptionVal,? extends T> onRaised)
      Runs a new execution stack which starts from the bootstrap action.

      The execution starts from bootstrapAction.

      If the execution succeeds with a result, the method invokes onReturned with the result val. If the execution fails, the method invokes onRaised with the exception.

      Example:

       FunVal fun = ...;
       boolean isSuccess = vm.run(
            c -> c.call(fun).args(x, y),
            result -> { System.out.printf("OK!: %s%n", result); return true; },
            exc -> { System.out.printf("Bad: %s", exc); return false; }
       );
       
      Type Parameters:
      T - the result type of onReturned and onRaised.
      Parameters:
      bootstrapAction - the action which is called to start the execution.
      onReturned - called when the execution succeeds with a result.
      onRaised - called when the execution fails with an exception.
      Returns:
      the result of onReturned or onRaised.