summaryrefslogtreecommitdiff
path: root/test/files/neg/t5856.check
Commit message (Collapse)AuthorAgeFilesLines
* Revert "SI-10133 Require escaped single quote char lit"Adriaan Moors2017-02-211-1/+1
|
* SI-10120 Extra advice on unclosed char literalSom Snytt2017-01-081-1/+1
| | | | | | | | | | Folks from other languages might mistakenly enclose a string in single quotes. Since this presents as a symbol literal followed by the unpaired single quote, we can add a syntax reminder. Also polish the wording for bad string interpolation.
* SI-7271 fixes positions of string interpolation partsEugene Burmako2013-04-271-1/+1
| | | | | | | | | Positions of static parts are now set explicitly during parsing rather than filled in wholesale during subsequent atPos after parsing. I also had to change the offsets that scanner uses for initial static parts of string interpolations so that they no longer point to the opening double quote, but rather to the actual beginning of the part.
* changes error message generated by compilerDominik Gruntz2012-07-171-1/+1
|
* SI-5856 enables use of $this in string interpolationDominik Gruntz2012-07-171-0/+31
This pull request fixes SI-5856. The scanner has been modified to return the correct token if keywords appear in $-expressions. The parser has been modified to issue an error and to only accept $<identifier>, $this and $block.