Files
DesignPatternsPHP/Behavioral/Interpreter
Roman Martinuk dea71e83b4 PHP 8
2021-04-13 00:29:24 +03:00
..
2021-04-13 00:16:23 +03:00
2021-04-13 00:16:23 +03:00
2021-04-13 00:16:23 +03:00
2021-04-13 00:29:24 +03:00
2021-04-13 00:16:23 +03:00
2021-04-13 00:29:24 +03:00
2021-04-13 00:16:23 +03:00
2021-04-13 00:29:24 +03:00

`Interpreter`__
============

Purpose
-------

For a given language, it defines the representation of its grammar,
as well as an interpreter for the sentences of that language.

Examples
--------

-  An example of a binary logic interpreter, each definition is defined by its own class

UML Diagram
-----------

.. image:: uml/uml.png
   :alt: Alt Interpreter UML Diagram
   :align: center

Code
----

You can also find this code on `GitHub`_

AbstractExp.php

.. literalinclude:: AbstractExp.php
   :language: php
   :linenos:

Context.php

.. literalinclude:: Context.php
   :language: php
   :linenos:


VariableExp.php

.. literalinclude:: VariableExp.php
   :language: php
   :linenos:


AndExp.php

.. literalinclude:: AndExp.php
   :language: php
   :linenos:


OrExp.php

.. literalinclude:: OrExp.php
   :language: php
   :linenos:

Test
----

Tests/InterpreterTest.php

.. literalinclude:: Tests/InterpreterTest.php
   :language: php
   :linenos:

.. _`GitHub`: https://github.com/domnikl/DesignPatternsPHP/tree/main/Behavioral/Interpreter
.. __: https://en.wikipedia.org/wiki/Interpreter_pattern