Closed
Description
The AST of encapsed properties is badformed :
PHP Script :
<?php
$this->foo_$bar;
AST Structure :
{
"kind": "program",
"children": [
{
"kind": "propertylookup",
"what": {
"kind": "variable",
"name": "this",
"byref": false
},
"offset": [
"bin",
".",
{
"kind": "constref",
"name": "foo_"
},
[
"var",
"bar"
]
]
}
],
"errors": []
}
Related Issues :
HvyIndustries/crane#150
#62