organic/src/parser/comment.rs

11 lines
311 B
Rust
Raw Normal View History

use super::Context;
use crate::parser::error::Res;
use crate::parser::util::start_of_line;
use crate::parser::Comment;
#[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!()
}