diff --git a/src/lexer.rs b/src/lexer.rs index 142725c..23d6c25 100644 --- a/src/lexer.rs +++ b/src/lexer.rs @@ -1,5 +1,5 @@ -//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>> +//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\ #[derive(PartialEq, Eq, Clone, Debug)] pub enum LadderTypeToken { @@ -20,7 +20,7 @@ pub enum LexError { InvalidChar, } -//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>> +//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\ #[derive(PartialEq, Eq, Clone, Debug)] enum LexerState { @@ -41,7 +41,7 @@ impl LexerState { } } -//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>> +//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\ pub struct LadderTypeLexer where It: std::iter::Iterator @@ -145,3 +145,5 @@ where It: Iterator } } +//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\ + diff --git a/src/term.rs b/src/term.rs index f42e56a..3420218 100644 --- a/src/term.rs +++ b/src/term.rs @@ -40,7 +40,7 @@ impl TypeTerm { pub fn arg(&mut self, t: impl Into) -> &mut Self { match self { TypeTerm::App(args) => { - args.push(t.into()); + args.push(t.into()); } _ => { @@ -63,3 +63,5 @@ impl TypeTerm { } } +//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\ + diff --git a/src/test/lexer.rs b/src/test/lexer.rs index 54faca0..8017262 100644 --- a/src/test/lexer.rs +++ b/src/test/lexer.rs @@ -1,5 +1,7 @@ use crate::lexer::*; +//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>\\ + #[test] fn test_lexer_symbol() { let mut lex = LadderTypeLexer::from("symbol".chars());