amilner42/viva-doc

Rust comment parser

Opened this issue · 2 comments

Rust comment parser

Actually not entirely "free", because Rust permits nested multi-line comments unlike our other langauges.

This would require a slightly different parser (ours will not allow:)

/* 
this is all one comment
/*  nester */

*/

Swift (the new apple lang) follows this format, so we'll get more than one lang if we support nested comments.