https://github.com/regan-koopmans/compiler-project-lexer-and-parser
Repository for the compiler construction practical project.
https://github.com/regan-koopmans/compiler-project-lexer-and-parser
compiler construction java learning lexer parser tokenizer
Last synced: 9 months ago
JSON representation
Repository for the compiler construction practical project.
- Host: GitHub
- URL: https://github.com/regan-koopmans/compiler-project-lexer-and-parser
- Owner: Regan-Koopmans
- Created: 2017-02-16T08:48:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-04T05:29:38.000Z (over 9 years ago)
- Last Synced: 2025-10-05T00:58:32.827Z (9 months ago)
- Topics: compiler, construction, java, learning, lexer, parser, tokenizer
- Language: Java
- Size: 91.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# COS 341 - Lexer
Repository for the compiler construction practical project.
## Proposed classes
### Main
In this file we will deal with details such as reading the input file, invoking
the Lexer class, and possibly writing the serialized linked list file.
### Lexer
The lexer will read a stream of text and identify tokens. The lexer will further
construct a linked list data structure for the tokens and pass this back to the
class that invoked the lexer.