pr47 0.1.4-CHARLIE

A semi-experimental programming language. Still working in progress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::Parser;

use crate::syntax::stmt::ConcreteCompoundStmt;
use crate::syntax::token::{Token, TokenInner};

impl<'s, 'd> Parser<'s, 'd> {
    pub fn parse_compound_stmt(
        &mut self,
        _lbrace_token: Token<'s>,
        _failsafe_set: &[&[TokenInner<'_>]]
    ) -> Option<ConcreteCompoundStmt<'s>> {
        todo!();
    }
}