Uses of Package
it.tugamer89.autogex.regex.ast
Packages that use it.tugamer89.autogex.regex.ast
Package
Description
- Classes in it.tugamer89.autogex.regex.ast used by it.tugamer89.autogex.algorithmsClassDescriptionBase interface for all nodes in the Regular Expression Abstract Syntax Tree (AST).
- Classes in it.tugamer89.autogex.regex.ast used by it.tugamer89.autogex.regex.astClassDescriptionBase interface for all nodes in the Regular Expression Abstract Syntax Tree (AST).Represents the concatenation of two regular expressions (e.g., "ab").Represents a single literal character in the regex (e.g., 'a', 'b').Represents the Kleene Star operator, allowing zero or more repetitions (e.g., "a*").Represents the union (OR) of two regular expressions (e.g., "a|b").The Visitor interface for the AST nodes.
- Classes in it.tugamer89.autogex.regex.ast used by it.tugamer89.autogex.regex.parserClassDescriptionBase interface for all nodes in the Regular Expression Abstract Syntax Tree (AST).