From 1d118c85688a2706feae2fd59560c7662f0e61b2 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 30 Jul 2023 22:43:37 +0100 Subject: [PATCH] Remove notes --- notes | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 notes diff --git a/notes b/notes deleted file mode 100644 index ed642ce..0000000 --- a/notes +++ /dev/null @@ -1,41 +0,0 @@ -TOKENS - Symbols - Array notation - [ - ] - Object notation - { - } - : - Separator - , - String - " - \ (for escape sequences) - Numerical - - - . - eE (exponents only) - + (exponents only) - Keywords - true - false - null - Key - strings only - -Implement stack data structure for pushing and pulling states when necessary - -LEXER STATES - START - ERROR - END - VALUE - OBJECT_KEY - --------- - OBJECT | - ARRAY | - PRIMITIVES |------> Can be values - STRING--------|------> Only one that can be an object key - NUMBER | - ---------