From 0779c4f3e2389a3c390073ff7f3bdce33ac799f3 Mon Sep 17 00:00:00 2001 From: Alexander 'NeonXP' Kiryukhin Date: Sun, 17 Mar 2013 07:26:33 +0400 Subject: + Added token parser + Added functions support ~ Rewrited most of code --- NXP/Classes/Operand.php | 85 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 NXP/Classes/Operand.php (limited to 'NXP/Classes/Operand.php') diff --git a/NXP/Classes/Operand.php b/NXP/Classes/Operand.php new file mode 100644 index 0000000..3329679 --- /dev/null +++ b/NXP/Classes/Operand.php @@ -0,0 +1,85 @@ +association = $association; + $this->symbol = $symbol; + $this->type = $type; + $this->priority = $priority; + $this->callback = $callback; + } + + public function getAssociation() + { + return $this->association; + } + + public function getSymbol() + { + return $this->symbol; + } + + public function getType() + { + return $this->type; + } + + public function getCallback() + { + return $this->callback; + } + + public function getPriority() + { + return $this->priority; + } + +} \ No newline at end of file -- cgit v1.2.3