thSoft / elysium

LilyPond IDE for Eclipse
http://elysium.thsoft.hu
14 stars 3 forks source link

Support for Scheme single-line comments #20

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently, Scheme single-line comments are not supported entirely because the 
corresponding terminal rule would conflict with semicolons in e.g. lyrics.

Original issue reported on code.google.com by harmathdenes on 1 Mar 2011 at 11:34

GoogleCodeExporter commented 9 years ago
As of now, semicolons are just recognized as text, so tokens are not consumed 
until the end of line. E.g. a failing input:

#(begin;)
)

Original comment by harmathdenes on 2 Mar 2011 at 12:16

GoogleCodeExporter commented 9 years ago
6e7317291e98     provides a partial fix for comments starting with ;; - this is 
the convention in Scheme code embedded in LilyPond.

Original comment by harmathdenes on 5 Jul 2011 at 11:05