package catala
Compiler and library for the literate programming language for tax code specification
Install
dune-project
Dependency
Authors
Maintainers
Sources
1.0.0-alpha.tar.gz
md5=2615968670ac21b1d00386a9b04b3843
sha512=eff292fdd75012f26ce7b17020f5a8374eef37cd4dd6ba60338dfbe89fbcad3443d1b409e44c182b740da9f58dff7e76dcb8ddefe47f9b2b160666d1c6930143
doc/src/catala.surface/ast.ml.html
Source file ast.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
(* This file is part of the Catala compiler, a specification language for tax and social benefits computation rules. Copyright (C) 2020 Inria, contributors: Denis Merigoux <denis.merigoux@inria.fr>, Emile Rolley <emile.rolley@tuta.io> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *) (** Abstract syntax tree built by the Catala parser *) open Catala_utils (** {1 Type definitions} *) type uident = string (** Constructors are CamelCase *) type lident = string (** Idents are snake_case *) type path = uident Mark.pos list type scope_var = lident Mark.pos list (** [foo.bar] in binding position: used to specify variables of subscopes *) type primitive_typ = | Integer | Decimal | Boolean | Money | Duration | Date | Position | External of lident | Named of path * uident Mark.pos | Var of lident Mark.pos option type base_typ_data = | Primitive of primitive_typ | Collection of base_typ_data Mark.pos | Option of base_typ_data Mark.pos | TTuple of base_typ_data Mark.pos list type base_typ = Condition | Data of base_typ_data type builtin_constr = Present | Absent type enum_constr = | CBuiltin of builtin_constr | CConstr of path * uident Mark.pos type func_typ = { arg_typ : (lident Mark.pos * base_typ Mark.pos) list; return_typ : base_typ Mark.pos; } type typ = naked_typ Mark.pos and naked_typ = Base of base_typ | Func of func_typ type struct_decl_field = { struct_decl_field_name : lident Mark.pos; struct_decl_field_typ : typ; } type struct_decl = { struct_decl_name : uident Mark.pos; struct_decl_fields : struct_decl_field Mark.pos list; } type enum_decl_case = { enum_decl_case_name : uident Mark.pos; enum_decl_case_typ : typ option; } type enum_decl = { enum_decl_name : uident Mark.pos; enum_decl_cases : enum_decl_case Mark.pos list; } type match_case_pattern = enum_constr Mark.pos list * lident Mark.pos option type op_kind = KPoly | KInt | KDec | KMoney | KDate | KDuration type binop = | And | Or | Xor | Add of op_kind | Sub of op_kind | Mult of op_kind | Div of op_kind | Lt of op_kind | Lte of op_kind | Gt of op_kind | Gte of op_kind | Eq | Neq | Concat type unop = Not | Minus of op_kind type builtin_expression = | Impossible | Cardinal | ToInteger | ToDecimal | ToMoney | Round type literal_date = { literal_date_day : int; literal_date_month : int; literal_date_year : int; } type literal_number = Int of string | Dec of string * string type literal_unit = Percent | Year | Month | Day type money_amount = { money_amount_sign : bool; (** true is positive *) money_amount_units : string; money_amount_cents : string; } type literal = | LNumber of literal_number Mark.pos * literal_unit Mark.pos option | LBool of bool | LMoneyAmount of money_amount | LDate of literal_date type collection_op = | Member of { element : expression } | Exists of { predicate : lident Mark.pos list * expression } | Forall of { predicate : lident Mark.pos list * expression } | Map of { f : lident Mark.pos list * expression } | Filter of { f : lident Mark.pos list * expression } | AggregateSum of { typ : primitive_typ } (* it would be nice to remove the need for specifying the and here like for extremums, but we need an additionl overload for "neutral element for addition across types" *) | AggregateExtremum of { max : bool; default : expression option } | AggregateArgExtremum of { max : bool; default : expression option; f : lident Mark.pos list * expression; } | Fold of { f : lident Mark.pos list * lident Mark.pos list * expression; init : expression; } and explicit_match_case = { match_case_pattern : match_case_pattern Mark.pos; match_case_expr : expression; } and match_case = WildCard of expression | MatchCase of explicit_match_case and match_cases = match_case Mark.pos list and expression = naked_expression Mark.pos and naked_expression = | Paren of expression | MatchWith of expression * match_cases Mark.pos | IfThenElse of expression * expression * expression | Binop of binop Mark.pos * expression * expression | Unop of unop Mark.pos * expression | CollectionOp of collection_op Mark.pos * expression | TestMatchCase of expression * match_case_pattern Mark.pos | FunCall of expression * expression list | ScopeCall of (path * uident Mark.pos) Mark.pos * (lident Mark.pos * expression) list | LetIn of lident Mark.pos list * expression * expression | Builtin of builtin_expression | Literal of literal | EnumInject of enum_constr Mark.pos * expression option | StructLit of (path * uident Mark.pos) Mark.pos * (lident Mark.pos * expression) list | StructReplace of expression * (lident Mark.pos * expression) list | ArrayLit of expression list | Tuple of expression list | Ident of path * lident Mark.pos * lident Mark.pos option (* path, ident, state *) | Dotted of expression * (path * lident Mark.pos) Mark.pos (** Dotted is for both struct field projection and sub-scope variables *) | TupleAccess of expression * int Mark.pos type exception_to = | NotAnException | UnlabeledException | ExceptionToLabel of lident Mark.pos type rule = { rule_label : lident Mark.pos option; rule_exception_to : exception_to; rule_parameter : lident Mark.pos list Mark.pos option; rule_condition : expression option; rule_name : scope_var Mark.pos; rule_id : Shared_ast.RuleName.t; rule_consequence : bool Mark.pos; rule_state : lident Mark.pos option; } type definition = { definition_label : lident Mark.pos option; definition_exception_to : exception_to; definition_name : scope_var Mark.pos; definition_parameter : lident Mark.pos list Mark.pos option; definition_condition : expression option; definition_id : Shared_ast.RuleName.t; definition_expr : expression; definition_state : lident Mark.pos option; } type variation_typ = Increasing | Decreasing type assertion = { assertion_condition : expression option; assertion_content : expression; } type scope_use_item = | Rule of rule | Definition of definition | Assertion of assertion | DateRounding of variation_typ Mark.pos type scope_use = { scope_use_condition : expression option; scope_use_name : uident Mark.pos; scope_use_items : scope_use_item Mark.pos list; } type io_input = Input | Context | Internal type scope_decl_context_io = { scope_decl_context_io_input : io_input Mark.pos; scope_decl_context_io_output : bool Mark.pos; } type scope_decl_context_scope = { scope_decl_context_scope_name : lident Mark.pos; scope_decl_context_scope_sub_scope : (path * uident Mark.pos) Mark.pos; scope_decl_context_scope_attribute : scope_decl_context_io; } type scope_decl_context_data = { scope_decl_context_item_name : lident Mark.pos; scope_decl_context_item_typ : typ; scope_decl_context_item_parameters : (lident Mark.pos * typ) list Mark.pos option; scope_decl_context_item_attribute : scope_decl_context_io; scope_decl_context_item_states : lident Mark.pos list; } type scope_decl_context_item = | ContextData of scope_decl_context_data | ContextScope of scope_decl_context_scope type scope_decl = { scope_decl_name : uident Mark.pos; scope_decl_context : scope_decl_context_item Mark.pos list; } type top_def = { topdef_name : lident Mark.pos; topdef_args : (lident Mark.pos * base_typ Mark.pos) list Mark.pos option; (** Empty list if this is not a function *) topdef_type : typ; topdef_expr : expression option; } type code_item = | ScopeUse of scope_use | ScopeDecl of scope_decl | StructDecl of struct_decl | EnumDecl of enum_decl | Topdef of top_def type code_block = code_item Mark.pos list type source_repr = string Mark.pos type law_heading = { law_heading_name : string Mark.pos; law_heading_id : string option; law_heading_is_archive : bool; law_heading_precedence : int; } type law_include = | PdfFile of string Mark.pos * int option | CatalaFile of string Mark.pos | LegislativeText of string Mark.pos type law_structure = | LawInclude of law_include | ModuleDef of uident Mark.pos * bool (* External if true *) | ModuleUse of uident Mark.pos * uident Mark.pos option | LawHeading of law_heading * law_structure list | LawText of string | CodeBlock of code_block * source_repr * bool (* Metadata if true *) type module_use = { mod_use_name : uident Mark.pos; mod_use_alias : uident Mark.pos; } type program_module = { module_name : uident Mark.pos; module_external : bool } type program = { program_module : program_module option; program_items : law_structure list; program_source_files : string list; program_used_modules : module_use list; program_lang : Global.backend_lang; } type source_file = law_structure list type Shared_ast.attr_value += Expression of expression type module_items = | Code of law_structure list (** Used in whole-program to gather all module code *) | Interface of (code_item Mark.pos * Shared_ast.visibility) list (** Invariant: an interface shall only contain [*Decl] elements, or [Topdef] elements with [topdef_expr = None] (metadata only). The visibility is determined from the presence of the item in a [metadata] block, but might later be promoted due to test annotations or dependencies *) type module_content = { module_modname : program_module; module_items : module_items; module_submodules : module_use list; }
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>