An open API service indexing awesome lists of open source software.

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.

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.