decode_comment

Function decode_comment 

Source
pub(crate) fn decode_comment(raw: Raw<'_>, error: &mut dyn ErrorSink)
Expand description

Parse comment

;; Comment

comment-start-symbol = %x23 ; #
non-ascii = %x80-D7FF / %xE000-10FFFF
non-eol = %x09 / %x20-7F / non-ascii

comment = comment-start-symbol *non-eol