mirror of
https://github.com/macocianradu/RosettaHaskellCompiler.git
synced 2026-07-16 10:58:47 +00:00
Parser and type checker almost completely working
Added testing env
This commit is contained in:
Executable
+4
@@ -0,0 +1,4 @@
|
||||
enum PeriodEnum: <"The enumerated values to specified the period, e.g. day, week.">
|
||||
D displayName "day" <"Day">
|
||||
M displayName "month" <"Month">
|
||||
Y displayName "year" <"Year">
|
||||
Executable
+4
@@ -0,0 +1,4 @@
|
||||
enum EnumWithoutDisplay: <"The enumerated values to specified the period, e.g. day, week.">
|
||||
D <"Day">
|
||||
M <"Month">
|
||||
Y <"Year">
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
enum EnumWithoutDescription:
|
||||
X displayName "xs"
|
||||
Y displayName "ys"
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
enum Wrong:
|
||||
A <"asd"> displayName "dsa"
|
||||
B <"xyz"> displayName "zyx"
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
enum Wrong2
|
||||
A <"asd"> displayName "dsa"
|
||||
B <"xyz"> displayName "zyx"
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
enum Wrong3::
|
||||
A <"asd"> displayName "dsa"
|
||||
B <"xyz"> displayName "zyx"
|
||||
Reference in New Issue
Block a user