https://github.com/yjhmelody/compiler-lab
My complier course's lab
https://github.com/yjhmelody/compiler-lab
compiler-principles lexer
Last synced: 19 days ago
JSON representation
My complier course's lab
- Host: GitHub
- URL: https://github.com/yjhmelody/compiler-lab
- Owner: yjhmelody
- License: mit
- Created: 2017-10-22T04:17:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T09:00:32.000Z (over 7 years ago)
- Last Synced: 2024-06-20T10:22:03.401Z (10 months ago)
- Topics: compiler-principles, lexer
- Language: Go
- Size: 1.43 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Compiler lab with golang
The rule's notes of each's part is written to the corresponding source code
The lab reports may be uploaded soon
## lexer* lexer.go
* scanner.go## Syntax
* syntax.go LL(1) grammar
## Semantic
* symbol.go symbol table
* rd.go recusive descent method## stack
* stack.go is a util package## others
JUST FOR STUDY