2023-04-15 16:34:33 -04:00
|
|
|
use super::Context;
|
|
|
|
use crate::parser::error::Res;
|
|
|
|
use crate::parser::util::start_of_line;
|
|
|
|
use crate::parser::Comment;
|
2023-04-15 16:31:38 -04:00
|
|
|
|
2023-04-15 16:34:33 -04:00
|
|
|
#[tracing::instrument(ret, level = "debug")]
|
|
|
|
pub fn comment<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s str, Comment<'s>> {
|
|
|
|
start_of_line(context, input)?;
|
|
|
|
todo!()
|
|
|
|
}
|