All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.lab515.utils.EvalOptions Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
package io.github.lab515.utils;

import java.util.Map;

public interface EvalOptions {
  void raiseErr(String err, String original, boolean fatal);
  String resolveVariable(String name, String resolved, boolean match);
  String handleCall(String name, String[] paraNames, String[] paraVals);
  String postEvaluate(String ret);
  void beforeEvaluate(Map vars);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy