X-Git-Url: https://git.xandkar.net/?p=tiger.ml.git;a=blobdiff_plain;f=compiler%2Fsrc%2Flib%2Ftiger%2Ftiger_error.ml;h=b4ec7195315b93b8a6380b0fe33e28545732b558;hp=f49bca41152e70a0d2284db727a353e5e4913f14;hb=789ef466bebb54a589039a8100147a11ea6f9719;hpb=80c3c410b1bdc70e7c13a76c77717c509353bb96 diff --git a/compiler/src/lib/tiger/tiger_error.ml b/compiler/src/lib/tiger/tiger_error.ml index f49bca4..b4ec719 100644 --- a/compiler/src/lib/tiger/tiger_error.ml +++ b/compiler/src/lib/tiger/tiger_error.ml @@ -213,3 +213,25 @@ let is_wrong_type t = | Invalid_operand_type _ | Different_operand_types _ -> false + +let is_invalid_syntax t = + match t with + | Invalid_syntax _ -> + true + | Wrong_type _ + | Unknown_type _ + | Unknown_id _ + | Id_is_a_function _ + | Id_not_a_function _ + | No_such_field_in_record _ + | Exp_not_a_record _ + | Exp_not_an_array _ + | Wrong_type_of_expression_in_var_dec _ + | Wrong_type_used_as_array _ + | Wrong_type_used_as_record _ + | Wrong_type_of_field_value _ + | Wrong_type_of_arg _ + | Wrong_number_of_args _ + | Invalid_operand_type _ + | Different_operand_types _ -> + false