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

com.github.leeonky.interpreter.Node Maven / Gradle / Ivy

The newest version!
package com.github.leeonky.interpreter;

public interface Node> {

    default Object evaluate(C context) {
        throw new IllegalStateException();
    }

    int getPositionBegin();

    N setPositionBegin(int positionBegin);

    N setIndent(int indent);

    int getIndent();

    int getOperandPosition();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy