Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 520 Bytes

Interpreter.md

File metadata and controls

11 lines (6 loc) · 520 Bytes

Interpreter

Pattern

Represent for grammar language rule, specify how to evaluate the expression. The syntax of grammar language usually present by a tree of expressions by composite pattern. The expression could be a single node (terminal expression) or a composite of others expression (compound expression)

Example