aboutsummaryrefslogtreecommitdiff
path: root/interpreter/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/parse.c')
-rw-r--r--interpreter/parse.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/interpreter/parse.c b/interpreter/parse.c
index f751321..3a611e8 100644
--- a/interpreter/parse.c
+++ b/interpreter/parse.c
@@ -21,11 +21,6 @@ token_list* parse_name(char** name, token_list* list) {
token_list* parse_simple_expression(expression* expr, token_list* list) {
expression* _expr;
- if (list->elem.kind == TOKEN_STRICT) {
- expr->is_strict = 1;
- list = list->rest;
- }
-
switch (list->elem.kind) {
case TOKEN_INT:
expr->kind = EXPR_INT;