-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7ba40a
commit 36426c2
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Analizator lexical pentru limbajul Haskell | ||
|
||
Această temă definește un analizator lexical folosind [flex](https://github.com/westes/flex/), | ||
care poate descompune un fișier de intrare `.hs` în lexemele corespunzătoare. | ||
|
||
## Rulare | ||
|
||
Apelați comanda `make` din terminal pentru a compila analizatorul | ||
și pentru a-l rula pe un exemplu. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Parser pentru limbajul Java | ||
|
||
Această temă implementează un parser pentru o parte din limbajul Java. | ||
|
||
Folosește `flex` pentru a genera un analizator lexical | ||
și `bison` pentru a defini analizatorul sintactic. | ||
|
||
## Rulare | ||
|
||
Rulați comanda `make` pentru a compila proiectul și pentru a rula programul | ||
pe un fișier de test. |