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

com.pdsl.grammars.RegistryParserVisitor Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.7.2
Show newest version
// 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy