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

com.xlrit.gears.engine.snel.EvaluatorContext Maven / Gradle / Ivy

package com.xlrit.gears.engine.snel;

import com.xlrit.gears.engine.meta.Printer;

public record EvaluatorContext(Printer printer, EvaluatorScope scope) {
	public String print(Object value) {
		return printer.print(value);
	}

	public Result getValue(String name) {
		return scope.getValue(name);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy