OLD | NEW |
(Empty) | |
| 1 ; |
| 2 ; foo |
| 3 #comments-start |
| 4 foobar() |
| 5 #comments-end |
| 6 #cs |
| 7 foobar() |
| 8 #ce |
| 9 ;#comments-start |
| 10 foobar() |
| 11 ;#comments-end |
| 12 ;#cs |
| 13 foobar() |
| 14 ;#ce |
| 15 |
| 16 ---------------------------------------------------- |
| 17 |
| 18 [ |
| 19 ["comment", ";"], |
| 20 ["comment", "; foo"], |
| 21 ["comment", "#comments-start\r\n\tfoobar()\r\n#comments-end"], |
| 22 ["comment", "#cs\r\n\tfoobar()\r\n#ce"], |
| 23 ["comment", ";#comments-start"], |
| 24 ["function", "foobar"], ["punctuation", "("], ["punctuation", ")"], |
| 25 ["comment", ";#comments-end"], |
| 26 ["comment", ";#cs"], |
| 27 ["function", "foobar"], ["punctuation", "("], ["punctuation", ")"], |
| 28 ["comment", ";#ce"] |
| 29 ] |
| 30 |
| 31 ---------------------------------------------------- |
| 32 |
| 33 Checks for comments. |
OLD | NEW |