Example usage for org.antlr.v4.runtime ParserRuleContext toString

List of usage examples for org.antlr.v4.runtime ParserRuleContext toString

Introduction

In this page you can find the example usage for org.antlr.v4.runtime ParserRuleContext toString.

Prototype

@Override
    public String toString() 

Source Link

Usage

From source file:ManejadorBD.Context.java

@Override
public void enterEveryRule(ParserRuleContext ctx) {
    System.out.println(ctx.toString());
}

From source file:net.cpollet.thorium.analysis.ObserverRegistry.java

License:Apache License

private void log(String prefix, ParserRuleContext observer, T observable) {
    LOG.debug(prefix + " " + observer.getClass().getSimpleName() + observer.toString() + "@"
            + System.identityHashCode(observer) + ": " + observer.getText() + " for " + observable.toString());
}

From source file:org.jarvis.main.exception.AimlParsingError.java

License:Apache License

public AimlParsingError(ParserRuleContext context) {
    super(context.toString());
}

From source file:org.jarvis.main.exception.AimlTransformParsingError.java

License:Apache License

public AimlTransformParsingError(ParserRuleContext context) {
    super(context.toString());
}

From source file:sqll.Soporte.java

public void enterEveryRule(ParserRuleContext ctx) {
    System.out.println(ctx.toString());
}