summary refs log tree commit diff
path: root/source/mod_student/parser.mly
diff options
context:
space:
mode:
Diffstat (limited to 'source/mod_student/parser.mly')
-rw-r--r--source/mod_student/parser.mly7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/mod_student/parser.mly b/source/mod_student/parser.mly
index 3eacf51..d2216a6 100644
--- a/source/mod_student/parser.mly
+++ b/source/mod_student/parser.mly
@@ -30,7 +30,14 @@ let mkTag =
  *)
 
 %token EOF
+%token LPAREN
+%token RPAREN
+%token LBRACKET
+%token RBRACKET
+%token <int>INT
 %token <string>IDENTIFIER
+%token <char>CHAR
+%token <bool>BOOL
 
 (* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ----------------------------------------------------------------------------- *)