From 0e4c24958c93d29ff4e4d2acb433a5d108717862 Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Fri, 21 Apr 2023 19:51:40 +0300 Subject: [PATCH] Remove the access of scopes --- src/aeso_ast_infer_types.erl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/aeso_ast_infer_types.erl b/src/aeso_ast_infer_types.erl index d747323..0ab812b 100644 --- a/src/aeso_ast_infer_types.erl +++ b/src/aeso_ast_infer_types.erl @@ -106,8 +106,6 @@ -type field_info() :: #field_info{}. --type access() :: public | private | internal. - -type typedef() :: {[aeso_syntax:tvar()], aeso_syntax:typedef() | {contract_t, [aeso_syntax:field_t()]}} | {builtin, non_neg_integer()}. @@ -136,7 +134,6 @@ -record(scope, { funs = [] :: fun_env() , types = [] :: type_env() , consts = [] :: const_env() - , access = public :: access() , kind = namespace :: namespace | contract , ann = [{origin, system}] :: aeso_syntax:ann() }).