com.pdsl.grammars.RegistryParserVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdsl Show documentation
Show all versions of pdsl Show documentation
The Polymorphic DSL test framework was designed to solve the challenges with testing large, complex systems. Modern architecture requires software to run as distrubited systems or on multiple platforms. The conventional cost of testing these systems is quite high.
PDSL allows a user to describe the system under test using a DSL of some kind: a picture,
sentences in natural languages, graphs, etc. Using a common DSL allows someone to make deeply scalable tests. A simple change to the DSL could generate dozens of tests providing coverage through many layers of the test pyramid or even multiple applications.
// Generated from com/pdsl/grammars/RegistryParser.g4 by ANTLR 4.9.1
package com.pdsl.grammars;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link RegistryParser}.
*
* @param The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface RegistryParserVisitor extends ParseTreeVisitor {
/**
* Visit a parse tree produced by {@link RegistryParser#polymorphicDslAllRules}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitPolymorphicDslAllRules(RegistryParser.PolymorphicDslAllRulesContext ctx);
/**
* Visit a parse tree produced by {@link RegistryParser#mathematical_expression}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitMathematical_expression(RegistryParser.Mathematical_expressionContext ctx);
/**
* Visit a parse tree produced by {@link RegistryParser#helloWorld}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitHelloWorld(RegistryParser.HelloWorldContext ctx);
}