grammar XdrCommentsGrammar

rule ampersand_line
  "%" content:(!"\n" .)* "\n"?
end

rule block_comment
  "/*" content:(!"*/" .)*  "*/"
end

rule line_comment
  "//" content:(!"\n" .)* "\n"?
end

end