Interpreter Pattern
The Interpreter Pattern is a behavioral design pattern that defines a grammatical representation for a language and provides an interpreter that evaluates sentences in that language by walking an abstract syntax tree built from the grammar's rules.
3 resources across 2 libraries
Glossary Terms(2)
Interpreter Pattern
The Interpreter Pattern is a behavioral design pattern that defines a grammatical representation for a language and provides an interpreter that evaluates sent…
Visitor Pattern
The Visitor Pattern is a behavioral design pattern that lets you define a new operation on a set of related classes without modifying those classes, by moving…