niklasvh / php.js

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

breaks on nowdoc syntax #46

Open adamjimenez opened 10 years ago

adamjimenez commented 10 years ago

Syntax error, unexpected T_SL on line 2

from: http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.nowdoc

<?php
$str = <<<'EOD'
Example of string
spanning multiple lines
using nowdoc syntax.
EOD;