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

org.snapscript.parse.SyntaxNode Maven / Gradle / Ivy

package org.snapscript.parse;

import java.util.List;

public interface SyntaxNode {
   List getNodes();
   String getGrammar();
   Token getToken();
   Line getLine();
   int getStart();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy