From 7e50a6ab47516319227c6c7e9e196e5cae008cfc 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 0d37704e8..f0436350a 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.