Skip to content

Commit 921a8a2

Browse files
authored
Updated lexer readme
1 parent 07dd6f6 commit 921a8a2

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Lexer/Readme.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
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.
88

9-
## PPT and video links
10-
11-
## Language Specification
129

1310
## Lexical Analysis
1411

@@ -17,9 +14,17 @@ Lexical analysis is the process of converting a string of characters into a sequ
1714
<!-- ### Finite Automata -->
1815

1916
### Lexical Analyzer
17+
Recognizes all basic keywords such as cns,var,Tensor etc and operators used by our language
2018

2119
### Error Handling
22-
20+
Our lexer can recognize unclosed comments ,strings and overflows in constant values
2321
### Testing
22+
go inside the Lexer folder and then run
23+
```console
24+
make
25+
make test
26+
```
2427

28+
This should run the test cases and report their results
2529
## References
30+
C Lexer

0 commit comments

Comments
 (0)