You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Lexer/Readme.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,6 @@
6
6
7
7
Lexical analysis is the process of converting a string of characters into a sequence of tokens. A token is a string with an assigned and thus identified meaning. The sequence of tokens is called a token stream. The token stream is used as input for the parser.
8
8
9
-
## PPT and video links
10
-
11
-
## Language Specification
12
9
13
10
## Lexical Analysis
14
11
@@ -17,9 +14,17 @@ Lexical analysis is the process of converting a string of characters into a sequ
17
14
<!-- ### Finite Automata -->
18
15
19
16
### Lexical Analyzer
17
+
Recognizes all basic keywords such as cns,var,Tensor etc and operators used by our language
20
18
21
19
### Error Handling
22
-
20
+
Our lexer can recognize unclosed comments ,strings and overflows in constant values
23
21
### Testing
22
+
go inside the Lexer folder and then run
23
+
```console
24
+
make
25
+
make test
26
+
```
24
27
28
+
This should run the test cases and report their results
0 commit comments