niklasvh / php.js

PHP to JavaScript converter and VM written in JavaScript
http://phpjs.hertzen.com
MIT License
860 stars 115 forks source link

Doesn't support Goto #39

Open adamjimenez opened 11 years ago

adamjimenez commented 11 years ago

This code:

<?php
goto a;
echo 'Foo';

a:
echo 'Bar';
?>

Causes the error:

Parse error: Object [object Object] has no method 'Node_Stmt_Goto' in /console.htm on line undefined