diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-04-23 15:17:02 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-04-23 15:17:02 +0200 |
commit | 06af2a476900cc20112dda69f36e5f27e323c060 (patch) | |
tree | 38f4955d7779a53a334740220874df746cef310b /Visitor | |
parent | bba4b1a8096ca8f061161b9f915cb5483de831b2 (diff) | |
download | Praspel-06af2a476900cc20112dda69f36e5f27e323c060.zip Praspel-06af2a476900cc20112dda69f36e5f27e323c060.tar.gz Praspel-06af2a476900cc20112dda69f36e5f27e323c060.tar.bz2 |
Fix a bug while interpreting an exception list.
Diffstat (limited to 'Visitor')
-rw-r--r-- | Visitor/Interpreter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Visitor/Interpreter.php b/Visitor/Interpreter.php index 22a03b6..ccbca14 100644 --- a/Visitor/Interpreter.php +++ b/Visitor/Interpreter.php @@ -175,7 +175,7 @@ class Interpreter implements \Hoa\Visitor\Visit { case '#exception_list': foreach($element->getChildren() as $child) $this->_clause->exception( - $child->accept($this, $handle, $eldnah) + $child->accept($this, $handle, false) ); break; |