Other.php
<?php
/**
*
* This fails because \' is not being handled ... I think
*
*/
[
'Const.Simple'=>[
'ast.type'=>'class_body',
'start'=>['php_code'],
'input'=>'const blm = "This"."is".\'a\'."const";',
'expect'=>[
'const'=>[
0=>[
'type'=>'const',
// 'modifiers'=>['public'],
'name'=>'blm',
// 'docblock'=> '',
'declaration'=>'const blm = "This"."is".\'a\'."const";',
'value'=>'"This"."is".\'a\'."const"',
],
],
],
],
];