From b46fe5900bcd4a40e16def4ab5455f16d0b412bf Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Fri, 3 Mar 2023 23:43:24 +0900 Subject: [PATCH] Remove mention to lexer/parser refactoring Signed-off-by: Yuki Okushi --- src/the-parser.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/the-parser.md b/src/the-parser.md index 0d37704e..f0436350 100644 --- a/src/the-parser.md +++ b/src/the-parser.md @@ -1,8 +1,5 @@ # Lexing and Parsing -As of January 2021, the lexer and parser are undergoing -refactoring to allow extracting them into libraries. - The very first thing the compiler does is take the program (in Unicode characters) and turn it into something the compiler can work with more conveniently than strings. This happens in two stages: Lexing and Parsing.