diff --git a/setup.py b/setup.py index 39558de62..7e0b8f31f 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,10 @@ setup( install_requires=[ "prettytable>=0.7.2", "pysha3>=1.0.2", - "crytic-compile>=0.2.1", - # "crytic-compile", + # "crytic-compile>=0.2.1", + "crytic-compile", ], - # dependency_links=["git+https://github.com/crytic/crytic-compile.git@master#egg=crytic-compile"], + dependency_links=["git+https://github.com/crytic/crytic-compile.git@master#egg=crytic-compile"], license="AGPL-3.0", long_description=open("README.md").read(), entry_points={ diff --git a/slither/analyses/data_dependency/data_dependency.py b/slither/analyses/data_dependency/data_dependency.py index 582216ec2..638b1fc78 100644 --- a/slither/analyses/data_dependency/data_dependency.py +++ b/slither/analyses/data_dependency/data_dependency.py @@ -13,6 +13,7 @@ from slither.core.declarations import ( SolidityVariableComposed, Structure, ) +from slither.core.declarations.solidity_import_placeholder import SolidityImportPlaceHolder from slither.core.variables.variable import Variable from slither.slithir.operations import Index, OperationWithLValue, InternalCall from slither.slithir.variables import ( @@ -408,6 +409,7 @@ def convert_variable_to_non_ssa(v): Structure, Function, Type, + SolidityImportPlaceHolder, ), ) return v diff --git a/slither/core/declarations/import_directive.py b/slither/core/declarations/import_directive.py index bf3ce67d0..2e17432a6 100644 --- a/slither/core/declarations/import_directive.py +++ b/slither/core/declarations/import_directive.py @@ -1,16 +1,34 @@ +from pathlib import Path from typing import Optional from slither.core.source_mapping.source_mapping import SourceMapping class Import(SourceMapping): - def __init__(self, filename: str): + def __init__(self, filename: Path): super().__init__() - self._filename = filename + self._filename: Path = filename self._alias: Optional[str] = None @property def filename(self) -> str: + """ + Return the absolute filename + + :return: + :rtype: + """ + return str(self._filename) + + @property + def filename_path(self) -> Path: + """ + Return the absolute filename + + :return: + :rtype: + """ + return self._filename @property diff --git a/slither/core/declarations/solidity_import_placeholder.py b/slither/core/declarations/solidity_import_placeholder.py new file mode 100644 index 000000000..070d3fff3 --- /dev/null +++ b/slither/core/declarations/solidity_import_placeholder.py @@ -0,0 +1,41 @@ +""" +Special variable to model import with renaming +""" +from slither.core.declarations import Import +from slither.core.solidity_types import ElementaryType +from slither.core.variables.variable import Variable + + +class SolidityImportPlaceHolder(Variable): + """ + Placeholder for import on top level objects + See the example at https://blog.soliditylang.org/2020/09/02/solidity-0.7.1-release-announcement/ + In the long term we should remove this and better integrate import aliases + """ + + def __init__(self, import_directive: Import): + super().__init__() + assert import_directive.alias is not None + self._import_directive = import_directive + self._name = import_directive.alias + self._type = ElementaryType("string") + self._initialized = True + self._visibility = "private" + self._is_constant = True + + @property + def type(self) -> ElementaryType: + return ElementaryType("string") + + def __eq__(self, other): + return ( + self.__class__ == other.__class__ + and self._import_directive.filename == self._import_directive.filename + ) + + @property + def import_directive(self) -> Import: + return self._import_directive + + def __hash__(self): + return hash(str(self.import_directive)) diff --git a/slither/core/declarations/solidity_variables.py b/slither/core/declarations/solidity_variables.py index 4018e8d67..5a2218d18 100644 --- a/slither/core/declarations/solidity_variables.py +++ b/slither/core/declarations/solidity_variables.py @@ -6,7 +6,7 @@ from slither.core.solidity_types import ElementaryType, TypeInformation from slither.exceptions import SlitherException if TYPE_CHECKING: - from slither.core.declarations import Import + pass SOLIDITY_VARIABLES = { "now": "uint256", @@ -184,37 +184,3 @@ class SolidityFunction: def __hash__(self): return hash(self.name) - - -class SolidityImportPlaceHolder(SolidityVariable): - """ - Placeholder for import on top level objects - See the example at https://blog.soliditylang.org/2020/09/02/solidity-0.7.1-release-announcement/ - In the long term we should remove this and better integrate import aliases - """ - - def __init__(self, import_directive: "Import"): - assert import_directive.alias is not None - super().__init__(import_directive.alias) - self._import_directive = import_directive - - def _check_name(self, name: str): - return True - - @property - def type(self) -> ElementaryType: - return ElementaryType("string") - - def __eq__(self, other): - return ( - self.__class__ == other.__class__ - and self.name == other.name - and self._import_directive.filename == self._import_directive.filename - ) - - @property - def import_directive(self) -> "Import": - return self._import_directive - - def __hash__(self): - return hash(str(self.import_directive)) diff --git a/slither/slithir/convert.py b/slither/slithir/convert.py index 95354e269..b9bc85c70 100644 --- a/slither/slithir/convert.py +++ b/slither/slithir/convert.py @@ -1,4 +1,5 @@ import logging +from pathlib import Path from typing import List, TYPE_CHECKING, Union, Optional # pylint: disable= too-many-lines,import-outside-toplevel,too-many-branches,too-many-statements,too-many-nested-blocks @@ -13,6 +14,7 @@ from slither.core.declarations import ( Structure, ) from slither.core.declarations.function_contract import FunctionContract +from slither.core.declarations.solidity_import_placeholder import SolidityImportPlaceHolder from slither.core.expressions import Identifier, Literal from slither.core.solidity_types import ( ArrayType, @@ -386,7 +388,11 @@ def propagate_type_and_convert_call(result, node): ins = result[idx] if isinstance(ins, TmpCall): - new_ins = extract_tmp_call(ins, node.function.contract) + # If the node.function is a FunctionTopLevel, then it does not have a contract + contract = ( + node.function.contract if isinstance(node.function, FunctionContract) else None + ) + new_ins = extract_tmp_call(ins, contract) if new_ins: new_ins.set_node(ins.node) ins = new_ins @@ -558,7 +564,11 @@ def propagate_types(ir, node: "Node"): # pylint: disable=too-many-locals elif isinstance(ir, InternalCall): # if its not a tuple, return a singleton if ir.function is None: - convert_type_of_high_and_internal_level_call(ir, node.function.contract) + func = node.function + function_contract = ( + func.contract if isinstance(func, FunctionContract) else None + ) + convert_type_of_high_and_internal_level_call(ir, function_contract) return_type = ir.function.return_type if return_type: if len(return_type) == 1: @@ -735,7 +745,7 @@ def propagate_types(ir, node: "Node"): # pylint: disable=too-many-locals return None -def extract_tmp_call(ins, contract): # pylint: disable=too-many-locals +def extract_tmp_call(ins: TmpCall, contract: Optional[Contract]): # pylint: disable=too-many-locals assert isinstance(ins, TmpCall) if isinstance(ins.called, Variable) and isinstance(ins.called.type, FunctionType): # If the call is made to a variable member, where the member is this @@ -749,7 +759,7 @@ def extract_tmp_call(ins, contract): # pylint: disable=too-many-locals return call if isinstance(ins.ori, Member): # If there is a call on an inherited contract, it is an internal call or an event - if ins.ori.variable_left in contract.inheritance + [contract]: + if contract and ins.ori.variable_left in contract.inheritance + [contract]: if str(ins.ori.variable_right) in [f.name for f in contract.functions]: internalcall = InternalCall( (ins.ori.variable_right, ins.ori.variable_left.name), @@ -865,6 +875,33 @@ def extract_tmp_call(ins, contract): # pylint: disable=too-many-locals to_log = "Slither does not support dynamic functions to libraries if functions have the same name" to_log += f"{[candidate.full_name for candidate in candidates]}" raise SlithIRError(to_log) + if isinstance(ins.ori.variable_left, SolidityImportPlaceHolder): + # For top level import, where the import statement renames the filename + # See https://blog.soliditylang.org/2020/09/02/solidity-0.7.1-release-announcement/ + + current_path = Path(ins.ori.variable_left.source_mapping["filename_absolute"]).parent + target = str( + Path(current_path, ins.ori.variable_left.import_directive.filename).absolute() + ) + top_level_function_targets = [ + f + for f in ins.compilation_unit.functions_top_level + if f.source_mapping["filename_absolute"] == target + and f.name == ins.ori.variable_right + and len(f.parameters) == ins.nbr_arguments + ] + + internalcall = InternalCall( + (ins.ori.variable_right, ins.ori.variable_left.name), + ins.nbr_arguments, + ins.lvalue, + ins.type_call, + ) + internalcall.set_expression(ins.expression) + internalcall.call_id = ins.call_id + internalcall.function_candidates = top_level_function_targets + return internalcall + msgcall = HighLevelCall( ins.ori.variable_left, ins.ori.variable_right, @@ -1355,22 +1392,30 @@ def _convert_to_structure_to_list(return_type: Type) -> List[Type]: return [return_type.type] -def convert_type_of_high_and_internal_level_call(ir: Operation, contract: Contract): +def convert_type_of_high_and_internal_level_call(ir: Operation, contract: Optional[Contract]): func = None if isinstance(ir, InternalCall): - candidates = [ - f - for f in contract.functions - if f.name == ir.function_name - and f.contract_declarer.name == ir.contract_name - and len(f.parameters) == len(ir.arguments) - ] + + if ir.function_candidates: + # This path is taken only for SolidityImportPlaceHolder + # Here we have already done a filtering on the potential targets + candidates = ir.function_candidates + else: + candidates = [ + f + for f in contract.functions + if f.name == ir.function_name + and f.contract_declarer.name == ir.contract_name + and len(f.parameters) == len(ir.arguments) + ] func = _find_function_from_parameter(ir, candidates) if not func: + assert contract func = contract.get_state_variable_from_name(ir.function_name) else: assert isinstance(ir, HighLevelCall) + assert contract candidates = [ f diff --git a/slither/slithir/operations/internal_call.py b/slither/slithir/operations/internal_call.py index c9092bdc5..7945bdd37 100644 --- a/slither/slithir/operations/internal_call.py +++ b/slither/slithir/operations/internal_call.py @@ -1,3 +1,4 @@ +from typing import Union, Tuple, List, Optional from slither.core.declarations import Modifier from slither.core.declarations.function import Function from slither.core.declarations.function_contract import FunctionContract @@ -6,7 +7,9 @@ from slither.slithir.operations.lvalue import OperationWithLValue class InternalCall(Call, OperationWithLValue): # pylint: disable=too-many-instance-attributes - def __init__(self, function, nbr_arguments, result, type_call): + def __init__( + self, function: Union[Function, Tuple[str, str]], nbr_arguments, result, type_call + ): super().__init__() self._contract_name = "" if isinstance(function, Function): @@ -21,6 +24,10 @@ class InternalCall(Call, OperationWithLValue): # pylint: disable=too-many-insta self._nbr_arguments = nbr_arguments self._type_call = type_call self._lvalue = result + # function_candidates is only used as an helper to retrieve the "function" object + # For top level function called through a import renamed + # See SolidityImportPlaceHolder usages + self.function_candidates: Optional[List[Function]] = None @property def read(self): diff --git a/slither/slithir/operations/member.py b/slither/slithir/operations/member.py index 1ea59a166..86ea1fb60 100644 --- a/slither/slithir/operations/member.py +++ b/slither/slithir/operations/member.py @@ -1,5 +1,6 @@ from slither.core.declarations import Contract, Function from slither.core.declarations.enum import Enum +from slither.core.declarations.solidity_import_placeholder import SolidityImportPlaceHolder from slither.slithir.operations.lvalue import OperationWithLValue from slither.slithir.utils.utils import is_valid_rvalue from slither.slithir.variables.constant import Constant @@ -20,8 +21,9 @@ class Member(OperationWithLValue): # } # } assert is_valid_rvalue(variable_left) or isinstance( - variable_left, (Contract, Enum, Function) + variable_left, (Contract, Enum, Function, SolidityImportPlaceHolder) ) + assert isinstance(variable_right, Constant) assert isinstance(result, ReferenceVariable) super().__init__() diff --git a/slither/slithir/utils/ssa.py b/slither/slithir/utils/ssa.py index 5b21e123e..44c52794a 100644 --- a/slither/slithir/utils/ssa.py +++ b/slither/slithir/utils/ssa.py @@ -9,6 +9,7 @@ from slither.core.declarations import ( SolidityVariable, Structure, ) +from slither.core.declarations.solidity_import_placeholder import SolidityImportPlaceHolder from slither.core.solidity_types.type import Type from slither.core.variables.local_variable import LocalVariable from slither.core.variables.state_variable import StateVariable @@ -610,6 +611,7 @@ def get( Structure, Function, Type, + SolidityImportPlaceHolder, ), ) # type for abi.decode(.., t) return variable diff --git a/slither/solc_parsing/expressions/expression_parsing.py b/slither/solc_parsing/expressions/expression_parsing.py index 0fb32458c..46515b14f 100644 --- a/slither/solc_parsing/expressions/expression_parsing.py +++ b/slither/solc_parsing/expressions/expression_parsing.py @@ -1,19 +1,10 @@ import logging import re -from typing import Dict, TYPE_CHECKING, Optional, Union, List, Tuple +from typing import Dict, TYPE_CHECKING -from slither.core.declarations import Event, Enum, Structure -from slither.core.declarations.contract import Contract -from slither.core.declarations.function import Function -from slither.core.declarations.function_contract import FunctionContract from slither.core.declarations.solidity_variables import ( - SOLIDITY_FUNCTIONS, - SOLIDITY_VARIABLES, SOLIDITY_VARIABLES_COMPOSED, - SolidityFunction, - SolidityVariable, SolidityVariableComposed, - SolidityImportPlaceHolder, ) from slither.core.expressions.assignment_operation import ( AssignmentOperation, @@ -41,359 +32,18 @@ from slither.core.expressions.unary_operation import UnaryOperation, UnaryOperat from slither.core.solidity_types import ( ArrayType, ElementaryType, - FunctionType, - MappingType, ) -from slither.core.variables.variable import Variable -from slither.exceptions import SlitherError from slither.solc_parsing.exceptions import ParsingError, VariableNotFound +from slither.solc_parsing.expressions.find_variable import CallerContext, find_variable from slither.solc_parsing.solidity_types.type_parsing import UnknownType, parse_type if TYPE_CHECKING: from slither.core.expressions.expression import Expression - from slither.solc_parsing.declarations.function import FunctionSolc - from slither.solc_parsing.declarations.contract import ContractSolc - from slither.solc_parsing.slither_compilation_unit_solc import SlitherCompilationUnitSolc - from slither.core.compilation_unit import SlitherCompilationUnit logger = logging.getLogger("ExpressionParsing") # pylint: disable=anomalous-backslash-in-string,import-outside-toplevel,too-many-branches,too-many-locals -################################################################################### -################################################################################### -# region Helpers -################################################################################### -################################################################################### - -CallerContext = Union["ContractSolc", "FunctionSolc"] - - -def get_pointer_name(variable: Variable): - curr_type = variable.type - while isinstance(curr_type, (ArrayType, MappingType)): - if isinstance(curr_type, ArrayType): - curr_type = curr_type.type - else: - assert isinstance(curr_type, MappingType) - curr_type = curr_type.type_to - - if isinstance(curr_type, FunctionType): - return variable.name + curr_type.parameters_signature - return None - - -def _find_variable_from_ref_declaration( - referenced_declaration: Optional[int], - all_contracts: List["Contract"], - all_functions_parser: List["FunctionSolc"], -) -> Optional[Union[Contract, Function]]: - if referenced_declaration is None: - return None - # id of the contracts is the referenced declaration - # This is not true for the functions, as we dont always have the referenced_declaration - # But maybe we could? (TODO) - for contract_candidate in all_contracts: - if contract_candidate.id == referenced_declaration: - return contract_candidate - for function_candidate in all_functions_parser: - if ( - function_candidate.referenced_declaration == referenced_declaration - and not function_candidate.underlying_function.is_shadowed - ): - return function_candidate.underlying_function - return None - - -def _find_variable_in_function_parser( - var_name: str, - function_parser: Optional["FunctionSolc"], - referenced_declaration: Optional[int] = None, -) -> Optional[Variable]: - if function_parser is None: - return None - # We look for variable declared with the referencedDeclaration attr - func_variables_renamed = function_parser.variables_renamed - if referenced_declaration and referenced_declaration in func_variables_renamed: - return func_variables_renamed[referenced_declaration].underlying_variable - # If not found, check for name - func_variables = function_parser.underlying_function.variables_as_dict - if var_name in func_variables: - return func_variables[var_name] - # A local variable can be a pointer - # for example - # function test(function(uint) internal returns(bool) t) interna{ - # Will have a local variable t which will match the signature - # t(uint256) - func_variables_ptr = { - get_pointer_name(f): f for f in function_parser.underlying_function.variables - } - if var_name and var_name in func_variables_ptr: - return func_variables_ptr[var_name] - - return None - - -def _find_top_level( - var_name: str, sl: "SlitherCompilationUnit" -) -> Optional[Union[Enum, Structure, SolidityVariable]]: - structures_top_level = sl.structures_top_level - for st in structures_top_level: - if st.name == var_name: - return st - - enums_top_level = sl.enums_top_level - for enum in enums_top_level: - if enum.name == var_name: - return enum - - for import_directive in sl.import_directives: - if import_directive.alias == var_name: - return SolidityImportPlaceHolder(import_directive) - - return None - - -def _find_in_contract( - var_name: str, - contract: Optional[Contract], - contract_declarer: Optional[Contract], - is_super: bool, -) -> Optional[Union[Variable, Function, Contract, Event, Enum, Structure,]]: - if contract is None or contract_declarer is None: - return None - - # variable are looked from the contract declarer - contract_variables = contract_declarer.variables_as_dict - if var_name in contract_variables: - return contract_variables[var_name] - - # A state variable can be a pointer - conc_variables_ptr = {get_pointer_name(f): f for f in contract_declarer.variables} - if var_name and var_name in conc_variables_ptr: - return conc_variables_ptr[var_name] - - if is_super: - getter_available = lambda f: f.functions_declared - d = {f.canonical_name: f for f in contract.functions} - functions = { - f.full_name: f - for f in contract_declarer.available_elements_from_inheritances( - d, getter_available - ).values() - } - else: - functions = contract.available_functions_as_dict() - if var_name in functions: - return functions[var_name] - - if is_super: - getter_available = lambda m: m.modifiers_declared - d = {m.canonical_name: m for m in contract.modifiers} - modifiers = { - m.full_name: m - for m in contract_declarer.available_elements_from_inheritances( - d, getter_available - ).values() - } - else: - modifiers = contract.available_modifiers_as_dict() - if var_name in modifiers: - return modifiers[var_name] - - # structures are looked on the contract declarer - structures = contract.structures_as_dict - if var_name in structures: - return structures[var_name] - - events = contract.events_as_dict - if var_name in events: - return events[var_name] - - enums = contract.enums_as_dict - if var_name in enums: - return enums[var_name] - - # If the enum is refered as its name rather than its canonicalName - enums = {e.name: e for e in contract.enums} - if var_name in enums: - return enums[var_name] - - return None - - -def _find_variable_init( - caller_context: CallerContext, -) -> Tuple[ - List[Contract], - Union[List["FunctionSolc"]], - "SlitherCompilationUnit", - "SlitherCompilationUnitSolc", -]: - from slither.solc_parsing.slither_compilation_unit_solc import SlitherCompilationUnitSolc - from slither.solc_parsing.declarations.contract import ContractSolc - from slither.solc_parsing.declarations.function import FunctionSolc - - direct_contracts: List[Contract] - direct_functions_parser: List[FunctionSolc] - - if isinstance(caller_context, SlitherCompilationUnitSolc): - direct_contracts = [] - direct_functions_parser = [] - sl = caller_context.compilation_unit - sl_parser = caller_context - elif isinstance(caller_context, ContractSolc): - direct_contracts = [caller_context.underlying_contract] - direct_functions_parser = caller_context.functions_parser + caller_context.modifiers_parser - sl = caller_context.slither_parser.compilation_unit - sl_parser = caller_context.slither_parser - elif isinstance(caller_context, FunctionSolc): - if caller_context.contract_parser: - direct_contracts = [caller_context.contract_parser.underlying_contract] - direct_functions_parser = ( - caller_context.contract_parser.functions_parser - + caller_context.contract_parser.modifiers_parser - ) - else: - # Top level functions - direct_contracts = [] - direct_functions_parser = [] - sl = caller_context.underlying_function.compilation_unit - sl_parser = caller_context.slither_parser - else: - raise SlitherError( - f"{type(caller_context)} ({caller_context} is not valid for find_variable" - ) - - return direct_contracts, direct_functions_parser, sl, sl_parser - - -def find_variable( - var_name: str, - caller_context: CallerContext, - referenced_declaration: Optional[int] = None, - is_super=False, -) -> Union[ - Variable, - Function, - Contract, - SolidityVariable, - SolidityFunction, - Event, - Enum, - Structure, -]: - from slither.solc_parsing.declarations.function import FunctionSolc - from slither.solc_parsing.declarations.contract import ContractSolc - - # variable are looked from the contract declarer - # functions can be shadowed, but are looked from the contract instance, rather than the contract declarer - # the difference between function and variable come from the fact that an internal call, or an variable access - # in a function does not behave similariy, for example in: - # contract C{ - # function f(){ - # state_var = 1 - # f2() - # } - # state_var will refer to C.state_var, no mater if C is inherited - # while f2() will refer to the function definition of the inherited contract (C.f2() in the context of C, or - # the contract inheriting from C) - # for events it's unclear what should be the behavior, as they can be shadowed, but there is not impact - # structure/enums cannot be shadowed - - direct_contracts, direct_functions_parser, sl, sl_parser = _find_variable_init(caller_context) - - all_contracts = sl.contracts - all_functions_parser = sl_parser.all_functions_and_modifiers_parser - - # Only look for reference declaration in the direct contract, see comment at the end - # Reference looked are split between direct and all - # Because functions are copied between contracts, two functions can have the same ref - # So we need to first look with respect to the direct context - - ret = _find_variable_from_ref_declaration( - referenced_declaration, direct_contracts, direct_functions_parser - ) - if ret: - return ret - - function_parser: Optional[FunctionSolc] = ( - caller_context if isinstance(caller_context, FunctionSolc) else None - ) - ret = _find_variable_in_function_parser(var_name, function_parser, referenced_declaration) - if ret: - return ret - - contract: Optional[Contract] = None - contract_declarer: Optional[Contract] = None - if isinstance(caller_context, ContractSolc): - contract = caller_context.underlying_contract - contract_declarer = caller_context.underlying_contract - elif isinstance(caller_context, FunctionSolc): - underlying_func = caller_context.underlying_function - # If contract_parser is set to None, then underlying_function is a functionContract - assert isinstance(underlying_func, FunctionContract) - contract = underlying_func.contract - contract_declarer = underlying_func.contract_declarer - - ret = _find_in_contract(var_name, contract, contract_declarer, is_super) - if ret: - return ret - - # Could refer to any enum - all_enumss = [c.enums_as_dict for c in sl.contracts] - all_enums = {k: v for d in all_enumss for k, v in d.items()} - if var_name in all_enums: - return all_enums[var_name] - - contracts = sl.contracts_as_dict - if var_name in contracts: - return contracts[var_name] - - if var_name in SOLIDITY_VARIABLES: - return SolidityVariable(var_name) - - if var_name in SOLIDITY_FUNCTIONS: - return SolidityFunction(var_name) - - # Top level must be at the end, if nothing else was found - ret = _find_top_level(var_name, sl) - if ret: - return ret - - # Look from reference declaration in all the contracts at the end - # Because they are many instances where this can't be trusted - # For example in - # contract A{ - # function _f() internal view returns(uint){ - # return 1; - # } - # - # function get() public view returns(uint){ - # return _f(); - # } - # } - # - # contract B is A{ - # function _f() internal view returns(uint){ - # return 2; - # } - # - # } - # get's AST will say that the ref declaration for _f() is A._f(), but in the context of B, its not - - ret = _find_variable_from_ref_declaration( - referenced_declaration, all_contracts, all_functions_parser - ) - if ret: - return ret - - raise VariableNotFound("Variable not found: {} (context {})".format(var_name, caller_context)) - - -# endregion -################################################################################### -################################################################################### # region Filtering ################################################################################### ################################################################################### @@ -799,7 +449,9 @@ def parse_expression(expression: Dict, caller_context: CallerContext) -> "Expres else: referenced_declaration = None - var = find_variable(value, caller_context, referenced_declaration) + var, was_created = find_variable(value, caller_context, referenced_declaration) + if was_created: + var.set_offset(src, caller_context.compilation_unit) identifier = Identifier(var) identifier.set_offset(src, caller_context.compilation_unit) @@ -849,9 +501,11 @@ def parse_expression(expression: Dict, caller_context: CallerContext) -> "Expres member_expression = parse_expression(children[0], caller_context) if str(member_expression) == "super": super_name = parse_super_name(expression, is_compact_ast) - var = find_variable(super_name, caller_context, is_super=True) + var, was_created = find_variable(super_name, caller_context, is_super=True) if var is None: raise VariableNotFound("Variable not found: {}".format(super_name)) + if was_created: + var.set_offset(src, caller_context.compilation_unit) sup = SuperIdentifier(var) sup.set_offset(src, caller_context.compilation_unit) return sup @@ -975,7 +629,9 @@ def parse_expression(expression: Dict, caller_context: CallerContext) -> "Expres else: referenced_declaration = None - var = find_variable(value, caller_context, referenced_declaration) + var, was_created = find_variable(value, caller_context, referenced_declaration) + if was_created: + var.set_offset(src, caller_context.compilation_unit) identifier = Identifier(var) identifier.set_offset(src, caller_context.compilation_unit) diff --git a/slither/solc_parsing/expressions/find_variable.py b/slither/solc_parsing/expressions/find_variable.py new file mode 100644 index 000000000..3edb29d98 --- /dev/null +++ b/slither/solc_parsing/expressions/find_variable.py @@ -0,0 +1,387 @@ +from typing import TYPE_CHECKING, Optional, Union, List, Tuple + +from slither.core.declarations import Event, Enum, Structure +from slither.core.declarations.contract import Contract +from slither.core.declarations.function import Function +from slither.core.declarations.function_contract import FunctionContract +from slither.core.declarations.function_top_level import FunctionTopLevel +from slither.core.declarations.solidity_import_placeholder import SolidityImportPlaceHolder +from slither.core.declarations.solidity_variables import ( + SOLIDITY_FUNCTIONS, + SOLIDITY_VARIABLES, + SolidityFunction, + SolidityVariable, +) +from slither.core.solidity_types import ( + ArrayType, + FunctionType, + MappingType, +) +from slither.core.variables.variable import Variable +from slither.exceptions import SlitherError +from slither.solc_parsing.exceptions import VariableNotFound + +if TYPE_CHECKING: + from slither.solc_parsing.declarations.function import FunctionSolc + from slither.solc_parsing.declarations.contract import ContractSolc + from slither.solc_parsing.slither_compilation_unit_solc import SlitherCompilationUnitSolc + from slither.core.compilation_unit import SlitherCompilationUnit + +# pylint: disable=import-outside-toplevel,too-many-branches,too-many-locals + + +CallerContext = Union["ContractSolc", "FunctionSolc"] + + +def _get_pointer_name(variable: Variable): + curr_type = variable.type + while isinstance(curr_type, (ArrayType, MappingType)): + if isinstance(curr_type, ArrayType): + curr_type = curr_type.type + else: + assert isinstance(curr_type, MappingType) + curr_type = curr_type.type_to + + if isinstance(curr_type, FunctionType): + return variable.name + curr_type.parameters_signature + return None + + +def _find_variable_from_ref_declaration( + referenced_declaration: Optional[int], + all_contracts: List["Contract"], + all_functions_parser: List["FunctionSolc"], +) -> Optional[Union[Contract, Function]]: + if referenced_declaration is None: + return None + # id of the contracts is the referenced declaration + # This is not true for the functions, as we dont always have the referenced_declaration + # But maybe we could? (TODO) + for contract_candidate in all_contracts: + if contract_candidate.id == referenced_declaration: + return contract_candidate + for function_candidate in all_functions_parser: + if ( + function_candidate.referenced_declaration == referenced_declaration + and not function_candidate.underlying_function.is_shadowed + ): + return function_candidate.underlying_function + return None + + +def _find_variable_in_function_parser( + var_name: str, + function_parser: Optional["FunctionSolc"], + referenced_declaration: Optional[int] = None, +) -> Optional[Variable]: + if function_parser is None: + return None + # We look for variable declared with the referencedDeclaration attr + func_variables_renamed = function_parser.variables_renamed + if referenced_declaration and referenced_declaration in func_variables_renamed: + return func_variables_renamed[referenced_declaration].underlying_variable + # If not found, check for name + func_variables = function_parser.underlying_function.variables_as_dict + if var_name in func_variables: + return func_variables[var_name] + # A local variable can be a pointer + # for example + # function test(function(uint) internal returns(bool) t) interna{ + # Will have a local variable t which will match the signature + # t(uint256) + func_variables_ptr = { + _get_pointer_name(f): f for f in function_parser.underlying_function.variables + } + if var_name and var_name in func_variables_ptr: + return func_variables_ptr[var_name] + + return None + + +def _find_top_level( + var_name: str, sl: "SlitherCompilationUnit" +) -> Tuple[Optional[Union[Enum, Structure, SolidityImportPlaceHolder]], bool]: + """ + Return the top level variable use, and a boolean indicating if the variable returning was cretead + If the variable was created, it has no source_mapping + + :param var_name: + :type var_name: + :param sl: + :type sl: + :return: + :rtype: + """ + structures_top_level = sl.structures_top_level + for st in structures_top_level: + if st.name == var_name: + return st, False + + enums_top_level = sl.enums_top_level + for enum in enums_top_level: + if enum.name == var_name: + return enum, False + + for import_directive in sl.import_directives: + if import_directive.alias == var_name: + new_val = SolidityImportPlaceHolder(import_directive) + return new_val, True + + return None, False + + +def _find_in_contract( + var_name: str, + contract: Optional[Contract], + contract_declarer: Optional[Contract], + is_super: bool, +) -> Optional[Union[Variable, Function, Contract, Event, Enum, Structure,]]: + + if contract is None or contract_declarer is None: + return None + + # variable are looked from the contract declarer + contract_variables = contract_declarer.variables_as_dict + if var_name in contract_variables: + return contract_variables[var_name] + + # A state variable can be a pointer + conc_variables_ptr = {_get_pointer_name(f): f for f in contract_declarer.variables} + if var_name and var_name in conc_variables_ptr: + return conc_variables_ptr[var_name] + + if is_super: + getter_available = lambda f: f.functions_declared + d = {f.canonical_name: f for f in contract.functions} + functions = { + f.full_name: f + for f in contract_declarer.available_elements_from_inheritances( + d, getter_available + ).values() + } + else: + functions = contract.available_functions_as_dict() + if var_name in functions: + return functions[var_name] + + if is_super: + getter_available = lambda m: m.modifiers_declared + d = {m.canonical_name: m for m in contract.modifiers} + modifiers = { + m.full_name: m + for m in contract_declarer.available_elements_from_inheritances( + d, getter_available + ).values() + } + else: + modifiers = contract.available_modifiers_as_dict() + if var_name in modifiers: + return modifiers[var_name] + + # structures are looked on the contract declarer + structures = contract.structures_as_dict + if var_name in structures: + return structures[var_name] + + events = contract.events_as_dict + if var_name in events: + return events[var_name] + + enums = contract.enums_as_dict + if var_name in enums: + return enums[var_name] + + # If the enum is refered as its name rather than its canonicalName + enums = {e.name: e for e in contract.enums} + if var_name in enums: + return enums[var_name] + + return None + + +def _find_variable_init( + caller_context: CallerContext, +) -> Tuple[ + List[Contract], + Union[List["FunctionSolc"]], + "SlitherCompilationUnit", + "SlitherCompilationUnitSolc", +]: + from slither.solc_parsing.slither_compilation_unit_solc import SlitherCompilationUnitSolc + from slither.solc_parsing.declarations.contract import ContractSolc + from slither.solc_parsing.declarations.function import FunctionSolc + + direct_contracts: List[Contract] + direct_functions_parser: List[FunctionSolc] + + if isinstance(caller_context, SlitherCompilationUnitSolc): + direct_contracts = [] + direct_functions_parser = [] + sl = caller_context.compilation_unit + sl_parser = caller_context + elif isinstance(caller_context, ContractSolc): + direct_contracts = [caller_context.underlying_contract] + direct_functions_parser = caller_context.functions_parser + caller_context.modifiers_parser + sl = caller_context.slither_parser.compilation_unit + sl_parser = caller_context.slither_parser + elif isinstance(caller_context, FunctionSolc): + if caller_context.contract_parser: + direct_contracts = [caller_context.contract_parser.underlying_contract] + direct_functions_parser = ( + caller_context.contract_parser.functions_parser + + caller_context.contract_parser.modifiers_parser + ) + else: + # Top level functions + direct_contracts = [] + direct_functions_parser = [] + sl = caller_context.underlying_function.compilation_unit + sl_parser = caller_context.slither_parser + else: + raise SlitherError( + f"{type(caller_context)} ({caller_context} is not valid for find_variable" + ) + + return direct_contracts, direct_functions_parser, sl, sl_parser + + +def find_variable( + var_name: str, + caller_context: CallerContext, + referenced_declaration: Optional[int] = None, + is_super=False, +) -> Tuple[ + Union[ + Variable, + Function, + Contract, + SolidityVariable, + SolidityFunction, + Event, + Enum, + Structure, + ], + bool, +]: + """ + Return the variable found and a boolean indicating if the variable was created + If the variable was created, it has no source mapping, and it the caller must add it + + :param var_name: + :type var_name: + :param caller_context: + :type caller_context: + :param referenced_declaration: + :type referenced_declaration: + :param is_super: + :type is_super: + :return: + :rtype: + """ + from slither.solc_parsing.declarations.function import FunctionSolc + from slither.solc_parsing.declarations.contract import ContractSolc + + # variable are looked from the contract declarer + # functions can be shadowed, but are looked from the contract instance, rather than the contract declarer + # the difference between function and variable come from the fact that an internal call, or an variable access + # in a function does not behave similariy, for example in: + # contract C{ + # function f(){ + # state_var = 1 + # f2() + # } + # state_var will refer to C.state_var, no mater if C is inherited + # while f2() will refer to the function definition of the inherited contract (C.f2() in the context of C, or + # the contract inheriting from C) + # for events it's unclear what should be the behavior, as they can be shadowed, but there is not impact + # structure/enums cannot be shadowed + + direct_contracts, direct_functions_parser, sl, sl_parser = _find_variable_init(caller_context) + + all_contracts = sl.contracts + all_functions_parser = sl_parser.all_functions_and_modifiers_parser + + # Only look for reference declaration in the direct contract, see comment at the end + # Reference looked are split between direct and all + # Because functions are copied between contracts, two functions can have the same ref + # So we need to first look with respect to the direct context + + ret = _find_variable_from_ref_declaration( + referenced_declaration, direct_contracts, direct_functions_parser + ) + if ret: + return ret, False + + function_parser: Optional[FunctionSolc] = ( + caller_context if isinstance(caller_context, FunctionSolc) else None + ) + ret = _find_variable_in_function_parser(var_name, function_parser, referenced_declaration) + if ret: + return ret, False + + contract: Optional[Contract] = None + contract_declarer: Optional[Contract] = None + if isinstance(caller_context, ContractSolc): + contract = caller_context.underlying_contract + contract_declarer = caller_context.underlying_contract + elif isinstance(caller_context, FunctionSolc): + underlying_func = caller_context.underlying_function + if isinstance(underlying_func, FunctionContract): + contract = underlying_func.contract + contract_declarer = underlying_func.contract_declarer + else: + assert isinstance(underlying_func, FunctionTopLevel) + + ret = _find_in_contract(var_name, contract, contract_declarer, is_super) + if ret: + return ret, False + + # Could refer to any enum + all_enumss = [c.enums_as_dict for c in sl.contracts] + all_enums = {k: v for d in all_enumss for k, v in d.items()} + if var_name in all_enums: + return all_enums[var_name], False + + contracts = sl.contracts_as_dict + if var_name in contracts: + return contracts[var_name], False + + if var_name in SOLIDITY_VARIABLES: + return SolidityVariable(var_name), False + + if var_name in SOLIDITY_FUNCTIONS: + return SolidityFunction(var_name), False + + # Top level must be at the end, if nothing else was found + ret, var_was_created = _find_top_level(var_name, sl) + if ret: + return ret, var_was_created + + # Look from reference declaration in all the contracts at the end + # Because they are many instances where this can't be trusted + # For example in + # contract A{ + # function _f() internal view returns(uint){ + # return 1; + # } + # + # function get() public view returns(uint){ + # return _f(); + # } + # } + # + # contract B is A{ + # function _f() internal view returns(uint){ + # return 2; + # } + # + # } + # get's AST will say that the ref declaration for _f() is A._f(), but in the context of B, its not + + ret = _find_variable_from_ref_declaration( + referenced_declaration, all_contracts, all_functions_parser + ) + if ret: + return ret, False + + raise VariableNotFound("Variable not found: {} (context {})".format(var_name, caller_context)) diff --git a/slither/solc_parsing/slither_compilation_unit_solc.py b/slither/solc_parsing/slither_compilation_unit_solc.py index e7ff8d099..35c94e493 100644 --- a/slither/solc_parsing/slither_compilation_unit_solc.py +++ b/slither/solc_parsing/slither_compilation_unit_solc.py @@ -2,6 +2,7 @@ import json import logging import os import re +from pathlib import Path from typing import List, Dict from slither.analyses.data_dependency.data_dependency import compute_dependency @@ -181,12 +182,28 @@ class SlitherCompilationUnitSolc: self._compilation_unit.pragma_directives.append(pragma) elif top_level_data[self.get_key()] == "ImportDirective": if self.is_compact_ast: - import_directive = Import(top_level_data["absolutePath"]) + import_directive = Import( + Path( + self._compilation_unit.crytic_compile.working_dir, + top_level_data["absolutePath"], + ) + ) # TODO investigate unitAlias in version < 0.7 and legacy ast if "unitAlias" in top_level_data: import_directive.alias = top_level_data["unitAlias"] else: - import_directive = Import(top_level_data["attributes"].get("absolutePath", "")) + import_directive = Import( + Path( + self._compilation_unit.crytic_compile.working_dir, + top_level_data["attributes"].get("absolutePath", ""), + ) + ) + # TODO investigate unitAlias in version < 0.7 and legacy ast + if ( + "attributes" in top_level_data + and "unitAlias" in top_level_data["attributes"] + ): + import_directive.alias = top_level_data["attributes"]["unitAlias"] import_directive.set_offset(top_level_data["src"], self._compilation_unit) self._compilation_unit.import_directives.append(import_directive) @@ -211,6 +228,7 @@ class SlitherCompilationUnitSolc: self._variables_top_level_parser.append(var_parser) elif top_level_data[self.get_key()] == "FunctionDefinition": func = FunctionTopLevel(self._compilation_unit) + func.set_offset(top_level_data["src"], self._compilation_unit) func_parser = FunctionSolc(func, top_level_data, None, self) self._compilation_unit.functions_top_level.append(func) diff --git a/tests/ast-parsing/compile/assembly-0.4.0-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.0-legacy.zip index 1b056ef32..c70d30b3a 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.0-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.1-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.1-legacy.zip index 36a5e15f7..c1fbc769e 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.1-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.10-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.10-legacy.zip index cb7b9fe4f..4b9b387e3 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.10-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.11-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.11-legacy.zip index 04cc71959..979d4c77b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.11-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.12-compact.zip b/tests/ast-parsing/compile/assembly-0.4.12-compact.zip index f8ea06a85..bee7c1a4e 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.12-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.12-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.12-legacy.zip index 3032f48e6..b9c77da51 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.12-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.13-compact.zip b/tests/ast-parsing/compile/assembly-0.4.13-compact.zip index d7f7d0bc7..825c8ea17 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.13-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.13-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.13-legacy.zip index a6217362c..d5416527c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.13-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.14-compact.zip b/tests/ast-parsing/compile/assembly-0.4.14-compact.zip index 30223594e..10b9d9f71 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.14-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.14-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.14-legacy.zip index 623006342..5f85d1bfc 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.14-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.15-compact.zip b/tests/ast-parsing/compile/assembly-0.4.15-compact.zip index bcda4b75d..fd69f9106 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.15-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.15-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.15-legacy.zip index 89070231a..831fcd577 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.15-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.16-compact.zip b/tests/ast-parsing/compile/assembly-0.4.16-compact.zip index f07bcc904..f110c49a7 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.16-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.16-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.16-legacy.zip index b2a8ac4f4..9b29b3b34 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.16-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.17-compact.zip b/tests/ast-parsing/compile/assembly-0.4.17-compact.zip index 5d698a490..c1c84aefe 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.17-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.17-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.17-legacy.zip index ff2f0c1ee..94383648b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.17-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.18-compact.zip b/tests/ast-parsing/compile/assembly-0.4.18-compact.zip index 642abd8eb..f72f784c6 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.18-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.18-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.18-legacy.zip index 023320a98..ef987c3ad 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.18-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.19-compact.zip b/tests/ast-parsing/compile/assembly-0.4.19-compact.zip index 30e5b7037..0a6e85a20 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.19-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.19-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.19-legacy.zip index 97e27b59a..d2768511b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.19-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.2-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.2-legacy.zip index b24de3d11..c2973954e 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.2-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.20-compact.zip b/tests/ast-parsing/compile/assembly-0.4.20-compact.zip index 4ea367952..a50e5050f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.20-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.20-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.20-legacy.zip index 52d6167a3..0653f43ed 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.20-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.21-compact.zip b/tests/ast-parsing/compile/assembly-0.4.21-compact.zip index 7d935d3bb..f981690a2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.21-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.21-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.21-legacy.zip index 81ff8f43a..1ed1f16f2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.21-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.22-compact.zip b/tests/ast-parsing/compile/assembly-0.4.22-compact.zip index a501604bd..4507be2e3 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.22-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.22-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.22-legacy.zip index 04c580c5e..b6c787653 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.22-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.23-compact.zip b/tests/ast-parsing/compile/assembly-0.4.23-compact.zip index 340dbedb0..e9bfd9dad 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.23-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.23-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.23-legacy.zip index a4bdd7fa7..0d1fd6b91 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.23-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.24-compact.zip b/tests/ast-parsing/compile/assembly-0.4.24-compact.zip index cfde7197d..304c62d84 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.24-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.24-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.24-legacy.zip index 0ed83c4f3..47095b282 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.24-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.25-compact.zip b/tests/ast-parsing/compile/assembly-0.4.25-compact.zip index 7af8925c6..44a4e7ed6 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.25-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.25-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.25-legacy.zip index 4c7161ce8..f15575a25 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.25-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.26-compact.zip b/tests/ast-parsing/compile/assembly-0.4.26-compact.zip index 48ad0f46f..44cee3a3f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.26-compact.zip and b/tests/ast-parsing/compile/assembly-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.26-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.26-legacy.zip index 269c8648d..7d6bb6694 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.26-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.3-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.3-legacy.zip index 823a03d90..ccd00700b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.3-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.4-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.4-legacy.zip index e15e4e111..c243f2b3b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.4-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.5-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.5-legacy.zip index 5eb7f6458..9dffb9c11 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.5-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.6-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.6-legacy.zip index 1eb882152..9abc1f5a1 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.6-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.7-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.7-legacy.zip index 053435819..e732efcf5 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.7-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.8-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.8-legacy.zip index de8b88be9..766f9902d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.8-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.4.9-legacy.zip b/tests/ast-parsing/compile/assembly-0.4.9-legacy.zip index d3e2269fe..55a630291 100644 Binary files a/tests/ast-parsing/compile/assembly-0.4.9-legacy.zip and b/tests/ast-parsing/compile/assembly-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.0-compact.zip b/tests/ast-parsing/compile/assembly-0.5.0-compact.zip index 07a17b538..a330af78c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.0-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.0-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.0-legacy.zip index 39df94151..4021fa979 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.0-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.1-compact.zip b/tests/ast-parsing/compile/assembly-0.5.1-compact.zip index 9fd669642..fcd177b93 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.1-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.1-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.1-legacy.zip index 0b9941718..f4b2845f2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.1-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.10-compact.zip b/tests/ast-parsing/compile/assembly-0.5.10-compact.zip index 62a61c732..bb09ca37b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.10-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.10-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.10-legacy.zip index 99794f612..456a2c649 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.10-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.11-compact.zip b/tests/ast-parsing/compile/assembly-0.5.11-compact.zip index af8ac638c..c9db7a6a9 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.11-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.11-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.11-legacy.zip index 2e6be908e..d1bd39ceb 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.11-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.12-compact.zip b/tests/ast-parsing/compile/assembly-0.5.12-compact.zip index d1c0b575e..e8ba8a77f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.12-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.12-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.12-legacy.zip index bcc629cc0..aab9c15fc 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.12-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.13-compact.zip b/tests/ast-parsing/compile/assembly-0.5.13-compact.zip index 753f692d0..df79d3195 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.13-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.13-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.13-legacy.zip index d8e9d7727..0f169ef0f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.13-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.14-compact.zip b/tests/ast-parsing/compile/assembly-0.5.14-compact.zip index aae09d98c..f653e1ac2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.14-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.14-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.14-legacy.zip index b77893f01..c73c057ce 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.14-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.15-compact.zip b/tests/ast-parsing/compile/assembly-0.5.15-compact.zip index 7ae8196cb..c9d11a696 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.15-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.15-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.15-legacy.zip index 336969c5b..20cf2ace2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.15-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.16-compact.zip b/tests/ast-parsing/compile/assembly-0.5.16-compact.zip index 60f2f439d..4f3bf5a3d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.16-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.16-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.16-legacy.zip index e96869057..0241ecd4c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.16-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.17-compact.zip b/tests/ast-parsing/compile/assembly-0.5.17-compact.zip index 1298b180b..fbfc22d95 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.17-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.17-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.17-legacy.zip index 5938f1e75..a9cf06ef0 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.17-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.2-compact.zip b/tests/ast-parsing/compile/assembly-0.5.2-compact.zip index 665e8db26..a6fe4b5b5 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.2-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.2-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.2-legacy.zip index a0d4824f8..1d226da6f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.2-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.3-compact.zip b/tests/ast-parsing/compile/assembly-0.5.3-compact.zip index dcafc0b9b..b620bc41d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.3-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.3-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.3-legacy.zip index 87f21db3e..75b4b42a0 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.3-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.4-compact.zip b/tests/ast-parsing/compile/assembly-0.5.4-compact.zip index bf1c04e1d..96ed7ce9c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.4-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.4-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.4-legacy.zip index b1d357d8f..d21ca1290 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.4-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.5-compact.zip b/tests/ast-parsing/compile/assembly-0.5.5-compact.zip index 2b3d194da..4b529a3db 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.5-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.5-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.5-legacy.zip index 92b033f01..96438be2f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.5-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.6-compact.zip b/tests/ast-parsing/compile/assembly-0.5.6-compact.zip index 52c6cae8f..8af546a56 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.6-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.6-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.6-legacy.zip index 0ae6bdfa2..e370cece3 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.6-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.7-compact.zip b/tests/ast-parsing/compile/assembly-0.5.7-compact.zip index 2b8569c6f..c23a2f2da 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.7-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.7-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.7-legacy.zip index 08b4b9e28..4259aba00 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.7-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.8-compact.zip b/tests/ast-parsing/compile/assembly-0.5.8-compact.zip index 6a64c78b8..26b87486c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.8-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.8-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.8-legacy.zip index 2502741c1..9a70c5afc 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.8-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.9-compact.zip b/tests/ast-parsing/compile/assembly-0.5.9-compact.zip index 98712d9c6..eb64e3329 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.9-compact.zip and b/tests/ast-parsing/compile/assembly-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.5.9-legacy.zip b/tests/ast-parsing/compile/assembly-0.5.9-legacy.zip index fd1148208..d7bbbd748 100644 Binary files a/tests/ast-parsing/compile/assembly-0.5.9-legacy.zip and b/tests/ast-parsing/compile/assembly-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.0-compact.zip b/tests/ast-parsing/compile/assembly-0.6.0-compact.zip index aac28c783..ce759f8bb 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.0-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.0-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.0-legacy.zip index fe546de3b..91b50ae85 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.0-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.1-compact.zip b/tests/ast-parsing/compile/assembly-0.6.1-compact.zip index a981e01a7..5771edc04 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.1-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.1-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.1-legacy.zip index 48c7cd4f4..327fe62fb 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.1-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.10-compact.zip b/tests/ast-parsing/compile/assembly-0.6.10-compact.zip index 80e63780d..f2b3c9ddd 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.10-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.10-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.10-legacy.zip index 3983579a2..e46d5acf2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.10-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.11-compact.zip b/tests/ast-parsing/compile/assembly-0.6.11-compact.zip index dc2cf5da4..39e0b55ee 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.11-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.11-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.11-legacy.zip index 3ace50315..8095249f8 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.11-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.12-compact.zip b/tests/ast-parsing/compile/assembly-0.6.12-compact.zip index bb8e9cd23..819299a7b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.12-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.12-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.12-legacy.zip index 78fe87a45..0296ad51e 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.12-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.2-compact.zip b/tests/ast-parsing/compile/assembly-0.6.2-compact.zip index d6cb28033..ed9f11e2d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.2-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.2-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.2-legacy.zip index 6a626e384..b7a04f14a 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.2-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.3-compact.zip b/tests/ast-parsing/compile/assembly-0.6.3-compact.zip index 108923b64..42cec4931 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.3-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.3-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.3-legacy.zip index 213dc9722..4ddb3790d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.3-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.4-compact.zip b/tests/ast-parsing/compile/assembly-0.6.4-compact.zip index b14dd41c5..b849c7cb6 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.4-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.4-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.4-legacy.zip index 541bd4e6e..bb4c9e8ee 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.4-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.5-compact.zip b/tests/ast-parsing/compile/assembly-0.6.5-compact.zip index 2a368d55f..9e7d9677c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.5-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.5-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.5-legacy.zip index 249333c09..0474094c1 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.5-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.6-compact.zip b/tests/ast-parsing/compile/assembly-0.6.6-compact.zip index 419fe579c..46b3fbbb0 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.6-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.6-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.6-legacy.zip index 1acf7ccaf..790c958a4 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.6-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.7-compact.zip b/tests/ast-parsing/compile/assembly-0.6.7-compact.zip index 05a294bea..1006b7c76 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.7-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.7-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.7-legacy.zip index f7f61229f..3cce97c89 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.7-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.8-compact.zip b/tests/ast-parsing/compile/assembly-0.6.8-compact.zip index fac62c0e9..db943243d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.8-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.8-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.8-legacy.zip index 1243a9b1e..736e3c4c7 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.8-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.9-compact.zip b/tests/ast-parsing/compile/assembly-0.6.9-compact.zip index b92e26b50..8f9da5c5d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.9-compact.zip and b/tests/ast-parsing/compile/assembly-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.6.9-legacy.zip b/tests/ast-parsing/compile/assembly-0.6.9-legacy.zip index 17988cbb0..7da187c26 100644 Binary files a/tests/ast-parsing/compile/assembly-0.6.9-legacy.zip and b/tests/ast-parsing/compile/assembly-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.0-compact.zip b/tests/ast-parsing/compile/assembly-0.7.0-compact.zip index 302a8962e..c8925d07d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.0-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.0-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.0-legacy.zip index 1754e3142..c08283311 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.0-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.1-compact.zip b/tests/ast-parsing/compile/assembly-0.7.1-compact.zip index a675e0220..70ab51dc5 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.1-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.1-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.1-legacy.zip index 86a99dd11..b0dc522ba 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.1-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.2-compact.zip b/tests/ast-parsing/compile/assembly-0.7.2-compact.zip index b7e4aa8d4..2114c7e9b 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.2-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.2-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.2-legacy.zip index a58cb4534..2122a1e14 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.2-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.3-compact.zip b/tests/ast-parsing/compile/assembly-0.7.3-compact.zip index ad83698da..f4711444e 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.3-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.3-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.3-legacy.zip index 5a325d6b2..f42776511 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.3-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.4-compact.zip b/tests/ast-parsing/compile/assembly-0.7.4-compact.zip index 22ef83ab5..79398c3d9 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.4-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.4-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.4-legacy.zip index 4509c636e..25514391d 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.4-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.5-compact.zip b/tests/ast-parsing/compile/assembly-0.7.5-compact.zip index f2ef3005f..00907d846 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.5-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.5-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.5-legacy.zip index a60a3f5ed..89da20fdc 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.5-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.6-compact.zip b/tests/ast-parsing/compile/assembly-0.7.6-compact.zip index 31d507f2d..0f8eac60a 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.6-compact.zip and b/tests/ast-parsing/compile/assembly-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.7.6-legacy.zip b/tests/ast-parsing/compile/assembly-0.7.6-legacy.zip index a456f5b7d..f27554725 100644 Binary files a/tests/ast-parsing/compile/assembly-0.7.6-legacy.zip and b/tests/ast-parsing/compile/assembly-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.0-compact.zip b/tests/ast-parsing/compile/assembly-0.8.0-compact.zip index ae5e5602d..25e1797c2 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.0-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.1-compact.zip b/tests/ast-parsing/compile/assembly-0.8.1-compact.zip index 28387eb4b..94622f138 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.1-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.2-compact.zip b/tests/ast-parsing/compile/assembly-0.8.2-compact.zip index 1dbe77c0a..2f144cb36 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.2-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.3-compact.zip b/tests/ast-parsing/compile/assembly-0.8.3-compact.zip index 9e29eef69..9964edb1c 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.3-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.4-compact.zip b/tests/ast-parsing/compile/assembly-0.8.4-compact.zip index 61632e8c0..124df458f 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.4-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.5-compact.zip b/tests/ast-parsing/compile/assembly-0.8.5-compact.zip index e7c3588b1..f088844a6 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.5-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.6-compact.zip b/tests/ast-parsing/compile/assembly-0.8.6-compact.zip index ed00a6852..39259e552 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.6-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assembly-0.8.7-compact.zip b/tests/ast-parsing/compile/assembly-0.8.7-compact.zip index 4e2c495ff..648c1745e 100644 Binary files a/tests/ast-parsing/compile/assembly-0.8.7-compact.zip and b/tests/ast-parsing/compile/assembly-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.0-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.0-legacy.zip index a8f782ba6..82e798f10 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.0-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.1-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.1-legacy.zip index 7d7c41328..894b8dbe1 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.1-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.10-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.10-legacy.zip index e3f7f9979..d4504fd7b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.10-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.11-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.11-legacy.zip index 85b5cbb30..89793349b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.11-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.12-compact.zip b/tests/ast-parsing/compile/assignment-0.4.12-compact.zip index 4d82342fb..1d143212c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.12-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.12-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.12-legacy.zip index 55348f11d..d99e1b22b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.12-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.13-compact.zip b/tests/ast-parsing/compile/assignment-0.4.13-compact.zip index 76879da28..87da12889 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.13-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.13-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.13-legacy.zip index f35235a75..42c81e986 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.13-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.14-compact.zip b/tests/ast-parsing/compile/assignment-0.4.14-compact.zip index 38751f7c5..c37f91372 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.14-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.14-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.14-legacy.zip index 9a83859b0..cb098b03c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.14-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.15-compact.zip b/tests/ast-parsing/compile/assignment-0.4.15-compact.zip index 8dc6e8d3f..0c7e63b19 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.15-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.15-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.15-legacy.zip index c7190e81a..7390efe6e 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.15-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.16-compact.zip b/tests/ast-parsing/compile/assignment-0.4.16-compact.zip index da0b920b3..5884e3c6a 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.16-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.16-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.16-legacy.zip index 27e968a72..2c8dbfb7c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.16-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.17-compact.zip b/tests/ast-parsing/compile/assignment-0.4.17-compact.zip index 3b1d402e6..c34eccf62 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.17-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.17-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.17-legacy.zip index 17890b749..77850cab1 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.17-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.18-compact.zip b/tests/ast-parsing/compile/assignment-0.4.18-compact.zip index 2658fb1e4..f3510018d 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.18-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.18-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.18-legacy.zip index bb01411e6..33e8c5109 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.18-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.19-compact.zip b/tests/ast-parsing/compile/assignment-0.4.19-compact.zip index d650d8bf0..d47ab1b9c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.19-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.19-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.19-legacy.zip index 7889ae1c9..758ecd17e 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.19-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.2-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.2-legacy.zip index bcfd290b1..0bae3737c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.2-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.20-compact.zip b/tests/ast-parsing/compile/assignment-0.4.20-compact.zip index 833e2ca17..f496b7588 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.20-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.20-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.20-legacy.zip index bf806c0b8..69e4227ee 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.20-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.21-compact.zip b/tests/ast-parsing/compile/assignment-0.4.21-compact.zip index 8cf1fb9b4..99402939e 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.21-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.21-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.21-legacy.zip index 8887d49aa..6787c135e 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.21-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.22-compact.zip b/tests/ast-parsing/compile/assignment-0.4.22-compact.zip index 29fee1218..f2ba26a1f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.22-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.22-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.22-legacy.zip index 065a5e4a6..90eb12ea1 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.22-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.23-compact.zip b/tests/ast-parsing/compile/assignment-0.4.23-compact.zip index f2b8790db..19afc1385 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.23-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.23-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.23-legacy.zip index 7d86026c3..85e14017f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.23-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.24-compact.zip b/tests/ast-parsing/compile/assignment-0.4.24-compact.zip index d51ed2111..c58ca3fc8 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.24-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.24-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.24-legacy.zip index 2fe6e9fcc..6c88d9157 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.24-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.25-compact.zip b/tests/ast-parsing/compile/assignment-0.4.25-compact.zip index c1ca8ee7f..c3ceebc54 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.25-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.25-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.25-legacy.zip index 65bc7b1b2..6c569af86 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.25-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.26-compact.zip b/tests/ast-parsing/compile/assignment-0.4.26-compact.zip index 29c8bde79..7b9e2ea7b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.26-compact.zip and b/tests/ast-parsing/compile/assignment-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.26-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.26-legacy.zip index c7141e823..3395948cf 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.26-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.3-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.3-legacy.zip index 80d4c879d..bd89cdda4 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.3-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.4-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.4-legacy.zip index 57a902651..9aaa4d5f8 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.4-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.5-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.5-legacy.zip index d49b2c698..a9110078a 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.5-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.6-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.6-legacy.zip index 140db1563..5caa4ac40 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.6-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.7-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.7-legacy.zip index eed2c4239..ac82d4b4f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.7-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.8-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.8-legacy.zip index 11863d53c..3dea52774 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.8-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.4.9-legacy.zip b/tests/ast-parsing/compile/assignment-0.4.9-legacy.zip index 91cae3867..4ca39b111 100644 Binary files a/tests/ast-parsing/compile/assignment-0.4.9-legacy.zip and b/tests/ast-parsing/compile/assignment-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.0-compact.zip b/tests/ast-parsing/compile/assignment-0.5.0-compact.zip index 2493c3dc2..59ee89cce 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.0-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.0-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.0-legacy.zip index 373e9cd35..e93a03637 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.0-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.1-compact.zip b/tests/ast-parsing/compile/assignment-0.5.1-compact.zip index e01b4beb8..2da582e61 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.1-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.1-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.1-legacy.zip index f3c3b9743..2dc6c851a 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.1-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.10-compact.zip b/tests/ast-parsing/compile/assignment-0.5.10-compact.zip index 53f8e9ee5..49262b102 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.10-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.10-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.10-legacy.zip index 705d0ec3c..cfd0c8370 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.10-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.11-compact.zip b/tests/ast-parsing/compile/assignment-0.5.11-compact.zip index 8dc9e7c2b..42918b791 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.11-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.11-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.11-legacy.zip index 1073e1e55..dc4ed0c2b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.11-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.12-compact.zip b/tests/ast-parsing/compile/assignment-0.5.12-compact.zip index 1abc3a8e1..9f7baa86a 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.12-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.12-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.12-legacy.zip index 50ea7272d..758a902a1 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.12-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.13-compact.zip b/tests/ast-parsing/compile/assignment-0.5.13-compact.zip index 9d461ddc7..92e2b7dd4 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.13-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.13-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.13-legacy.zip index 4dd052354..d138511e9 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.13-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.14-compact.zip b/tests/ast-parsing/compile/assignment-0.5.14-compact.zip index 1ca308359..48c2ba3d1 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.14-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.14-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.14-legacy.zip index 68b6a5812..13547d29f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.14-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.15-compact.zip b/tests/ast-parsing/compile/assignment-0.5.15-compact.zip index d8ad929af..7cad7c957 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.15-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.15-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.15-legacy.zip index 557b09f00..dac07d7db 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.15-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.16-compact.zip b/tests/ast-parsing/compile/assignment-0.5.16-compact.zip index 34972e716..f089be6fa 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.16-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.16-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.16-legacy.zip index f4bfbadc3..dbc997922 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.16-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.17-compact.zip b/tests/ast-parsing/compile/assignment-0.5.17-compact.zip index 6cafcc210..47b84ea9f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.17-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.17-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.17-legacy.zip index 52285a344..3ab7b9179 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.17-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.2-compact.zip b/tests/ast-parsing/compile/assignment-0.5.2-compact.zip index eab1266be..3611255d2 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.2-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.2-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.2-legacy.zip index 587ff093a..787ae53d3 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.2-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.3-compact.zip b/tests/ast-parsing/compile/assignment-0.5.3-compact.zip index 0241fed11..ed61de5e0 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.3-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.3-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.3-legacy.zip index e3fe7202c..59b858b54 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.3-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.4-compact.zip b/tests/ast-parsing/compile/assignment-0.5.4-compact.zip index 4397f7e06..284e452c7 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.4-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.4-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.4-legacy.zip index f41867fcd..8ff678c8b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.4-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.5-compact.zip b/tests/ast-parsing/compile/assignment-0.5.5-compact.zip index 097540b44..1d3e6b335 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.5-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.5-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.5-legacy.zip index 4d21c9f8a..bfe9c3759 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.5-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.6-compact.zip b/tests/ast-parsing/compile/assignment-0.5.6-compact.zip index 531cc6616..210d96846 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.6-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.6-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.6-legacy.zip index 66bcecb38..8b4988ad7 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.6-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.7-compact.zip b/tests/ast-parsing/compile/assignment-0.5.7-compact.zip index 32cd02f0c..23b54891d 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.7-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.7-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.7-legacy.zip index 12be76334..fc0eedb26 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.7-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.8-compact.zip b/tests/ast-parsing/compile/assignment-0.5.8-compact.zip index 62f437c80..b5b4033c2 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.8-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.8-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.8-legacy.zip index 4adccaebf..cc8467782 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.8-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.9-compact.zip b/tests/ast-parsing/compile/assignment-0.5.9-compact.zip index 0111315fb..06c1246ab 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.9-compact.zip and b/tests/ast-parsing/compile/assignment-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.5.9-legacy.zip b/tests/ast-parsing/compile/assignment-0.5.9-legacy.zip index 2cae4fe96..7c09d364f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.5.9-legacy.zip and b/tests/ast-parsing/compile/assignment-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.0-compact.zip b/tests/ast-parsing/compile/assignment-0.6.0-compact.zip index a826350d2..a6387dd2c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.0-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.0-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.0-legacy.zip index 642c47a04..ae1d50b61 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.0-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.1-compact.zip b/tests/ast-parsing/compile/assignment-0.6.1-compact.zip index e1c5e8212..749cf8172 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.1-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.1-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.1-legacy.zip index 2b11c7486..580148eca 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.1-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.10-compact.zip b/tests/ast-parsing/compile/assignment-0.6.10-compact.zip index d4e9d6711..ecd0a9883 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.10-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.10-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.10-legacy.zip index e00014b4d..94038322e 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.10-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.11-compact.zip b/tests/ast-parsing/compile/assignment-0.6.11-compact.zip index 3ba827ea6..52abf01cf 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.11-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.11-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.11-legacy.zip index 53fe0f50a..81cefeffd 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.11-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.12-compact.zip b/tests/ast-parsing/compile/assignment-0.6.12-compact.zip index 317749698..85586208d 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.12-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.12-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.12-legacy.zip index 91df0228c..ddeb03fbc 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.12-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.2-compact.zip b/tests/ast-parsing/compile/assignment-0.6.2-compact.zip index 5cface731..9edf5727b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.2-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.2-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.2-legacy.zip index f07f15122..bc04efdff 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.2-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.3-compact.zip b/tests/ast-parsing/compile/assignment-0.6.3-compact.zip index 7ee44da09..955134191 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.3-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.3-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.3-legacy.zip index 71d474584..3ef8771a2 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.3-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.4-compact.zip b/tests/ast-parsing/compile/assignment-0.6.4-compact.zip index d53d3d263..b73c4b0b6 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.4-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.4-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.4-legacy.zip index 204814d9f..e4e83b330 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.4-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.5-compact.zip b/tests/ast-parsing/compile/assignment-0.6.5-compact.zip index 4c161a442..9561855eb 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.5-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.5-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.5-legacy.zip index 583b3a90e..1ddc095dc 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.5-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.6-compact.zip b/tests/ast-parsing/compile/assignment-0.6.6-compact.zip index bed9e94c5..5ab12f3d9 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.6-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.6-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.6-legacy.zip index b7be080fe..921c4c00d 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.6-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.7-compact.zip b/tests/ast-parsing/compile/assignment-0.6.7-compact.zip index 542022675..17fe3ca10 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.7-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.7-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.7-legacy.zip index 0526ee6c9..ab4dcbccd 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.7-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.8-compact.zip b/tests/ast-parsing/compile/assignment-0.6.8-compact.zip index d8e24ca73..96e57b712 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.8-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.8-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.8-legacy.zip index 07a31ef69..0ac0a25b9 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.8-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.9-compact.zip b/tests/ast-parsing/compile/assignment-0.6.9-compact.zip index c75fec65f..f95934dad 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.9-compact.zip and b/tests/ast-parsing/compile/assignment-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.6.9-legacy.zip b/tests/ast-parsing/compile/assignment-0.6.9-legacy.zip index 1c7586767..520c46038 100644 Binary files a/tests/ast-parsing/compile/assignment-0.6.9-legacy.zip and b/tests/ast-parsing/compile/assignment-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.0-compact.zip b/tests/ast-parsing/compile/assignment-0.7.0-compact.zip index c22accb9f..eeae8955d 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.0-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.0-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.0-legacy.zip index ed23f201d..cae4fb14d 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.0-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.1-compact.zip b/tests/ast-parsing/compile/assignment-0.7.1-compact.zip index 7b79c1959..e5656377c 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.1-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.1-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.1-legacy.zip index 6c9ef5b1c..3b3edaf4b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.1-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.2-compact.zip b/tests/ast-parsing/compile/assignment-0.7.2-compact.zip index 96404ce50..f531b31e0 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.2-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.2-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.2-legacy.zip index 1dda660fe..501801ab9 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.2-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.3-compact.zip b/tests/ast-parsing/compile/assignment-0.7.3-compact.zip index 17af83477..44153decf 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.3-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.3-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.3-legacy.zip index b205038df..c7e43b8ff 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.3-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.4-compact.zip b/tests/ast-parsing/compile/assignment-0.7.4-compact.zip index fe369dab8..9839433fa 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.4-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.4-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.4-legacy.zip index 5923b7e37..b001775d2 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.4-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.5-compact.zip b/tests/ast-parsing/compile/assignment-0.7.5-compact.zip index e5bc88c27..79be4cbc1 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.5-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.5-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.5-legacy.zip index 51ef74872..60610a61b 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.5-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.6-compact.zip b/tests/ast-parsing/compile/assignment-0.7.6-compact.zip index ab560abcf..bce9e0489 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.6-compact.zip and b/tests/ast-parsing/compile/assignment-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.7.6-legacy.zip b/tests/ast-parsing/compile/assignment-0.7.6-legacy.zip index 03a8bfa0a..5306b37ef 100644 Binary files a/tests/ast-parsing/compile/assignment-0.7.6-legacy.zip and b/tests/ast-parsing/compile/assignment-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.0-compact.zip b/tests/ast-parsing/compile/assignment-0.8.0-compact.zip index 896f34831..a3b4abe40 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.0-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.1-compact.zip b/tests/ast-parsing/compile/assignment-0.8.1-compact.zip index 0656546c6..c6b67ad1f 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.1-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.2-compact.zip b/tests/ast-parsing/compile/assignment-0.8.2-compact.zip index 8f24aedc3..1494009b7 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.2-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.3-compact.zip b/tests/ast-parsing/compile/assignment-0.8.3-compact.zip index bbfc75fbd..ed48160b8 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.3-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.4-compact.zip b/tests/ast-parsing/compile/assignment-0.8.4-compact.zip index 184972eff..09c2e4a75 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.4-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.5-compact.zip b/tests/ast-parsing/compile/assignment-0.8.5-compact.zip index c1909f134..7001d77f8 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.5-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.6-compact.zip b/tests/ast-parsing/compile/assignment-0.8.6-compact.zip index ef1e6fa62..f246592a0 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.6-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/assignment-0.8.7-compact.zip b/tests/ast-parsing/compile/assignment-0.8.7-compact.zip index cccea124c..0ccda2501 100644 Binary files a/tests/ast-parsing/compile/assignment-0.8.7-compact.zip and b/tests/ast-parsing/compile/assignment-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.0-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.0-legacy.zip index baf3e7e13..391b34f39 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.0-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.1-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.1-legacy.zip index fbeb6b1c7..7b6bb6f00 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.1-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.10-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.10-legacy.zip index 8fe13c009..4098027fa 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.10-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.11-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.11-legacy.zip index e75bd78bc..f07c5b2e2 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.11-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.12-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.12-compact.zip index b43fd4913..b30f89a02 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.12-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.12-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.12-legacy.zip index 1d1f7002f..c1b8195c2 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.12-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.13-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.13-compact.zip index 7229ef584..d93b4b236 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.13-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.13-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.13-legacy.zip index 210e7fd13..e9ab871b6 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.13-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.14-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.14-compact.zip index a69f39714..46e641010 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.14-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.14-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.14-legacy.zip index 3aeb742fb..adce97201 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.14-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.15-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.15-compact.zip index 338fdd53b..3b245b91e 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.15-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.15-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.15-legacy.zip index fae3b351e..01bcd2d00 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.15-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.16-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.16-compact.zip index b7720320e..dab02f4ac 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.16-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.16-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.16-legacy.zip index b020a2e7f..cdb7c6b06 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.16-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.17-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.17-compact.zip index f7d41e798..f2f8131bc 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.17-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.17-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.17-legacy.zip index ff21583cf..bdfdd3e7f 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.17-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.18-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.18-compact.zip index 9c8f05aeb..1cf23cfb7 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.18-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.18-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.18-legacy.zip index 830920312..aaece479f 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.18-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.19-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.19-compact.zip index 41590e0ab..ca22243b0 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.19-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.19-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.19-legacy.zip index f897048fe..883898b2b 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.19-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.2-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.2-legacy.zip index 6780b9921..bfc5c5837 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.2-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.20-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.20-compact.zip index 47dad93a7..59142075e 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.20-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.20-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.20-legacy.zip index 80809fab7..70e32026d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.20-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.21-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.21-compact.zip index 466738c38..48ae40f70 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.21-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.21-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.21-legacy.zip index 6eb6572bb..67f1d3b2a 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.21-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.22-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.22-compact.zip index 12a9c43a4..26bb67473 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.22-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.22-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.22-legacy.zip index 408860acb..26ce55364 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.22-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.23-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.23-compact.zip index 0c91cd273..c7819b4a4 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.23-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.23-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.23-legacy.zip index fae49266d..45fd31ec0 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.23-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.24-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.24-compact.zip index e68110085..635d209d5 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.24-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.24-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.24-legacy.zip index b7d468bad..22046d31b 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.24-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.25-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.25-compact.zip index 6fc895fe6..b78469c03 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.25-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.25-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.25-legacy.zip index 68f99996c..068f22859 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.25-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.26-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.4.26-compact.zip index 1093f90d1..bca737e78 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.26-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.26-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.26-legacy.zip index edec997c1..2ad51efeb 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.26-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.3-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.3-legacy.zip index 81b1832ad..79af88c0c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.3-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.4-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.4-legacy.zip index 94ea6bbc4..11cc38410 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.4-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.5-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.5-legacy.zip index 2e697666d..a4102130f 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.5-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.6-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.6-legacy.zip index 639f69be7..4ffce37de 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.6-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.7-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.7-legacy.zip index e48943e28..21ea80b5c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.7-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.8-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.8-legacy.zip index 556c4252c..f8693db61 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.8-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.4.9-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.4.9-legacy.zip index 8a84d520e..b8c1bf7c9 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.4.9-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.0-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.0-compact.zip index e6494811a..b3e6170d6 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.0-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.0-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.0-legacy.zip index b74e00236..ae3b03b4c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.0-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.1-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.1-compact.zip index 6de3463d9..b3c070d33 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.1-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.1-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.1-legacy.zip index a20f3d7fe..13f3f8203 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.1-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.10-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.10-compact.zip index 5a87e4979..925dc748a 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.10-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.10-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.10-legacy.zip index aaa7a5e37..c3789268c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.10-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.11-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.11-compact.zip index 218d915c2..61883cdf2 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.11-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.11-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.11-legacy.zip index a2b63a76b..e165334da 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.11-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.12-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.12-compact.zip index 785b39476..4430b632d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.12-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.12-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.12-legacy.zip index b782da1de..cbaa183ad 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.12-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.13-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.13-compact.zip index c91593159..552aa0ce4 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.13-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.13-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.13-legacy.zip index 8b6b26b1f..d8690de00 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.13-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.14-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.14-compact.zip index ebb200fe7..1b79c4cff 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.14-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.14-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.14-legacy.zip index 5c8985d4b..7affbac2b 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.14-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.15-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.15-compact.zip index 26322e7a4..e5bca3cd7 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.15-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.15-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.15-legacy.zip index 6f28cb5cb..1898d1f1b 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.15-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.16-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.16-compact.zip index e744a1788..cdd022446 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.16-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.16-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.16-legacy.zip index 96b6b1420..343b3af6f 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.16-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.17-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.17-compact.zip index 14f60178f..c6a989298 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.17-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.17-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.17-legacy.zip index 3b81edfd0..1a68791a8 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.17-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.2-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.2-compact.zip index af2856f75..9dd60f001 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.2-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.2-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.2-legacy.zip index f70a1f399..1c9055758 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.2-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.3-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.3-compact.zip index 82895cf9b..f4cafa5cc 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.3-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.3-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.3-legacy.zip index b2126c9cb..518c44bd3 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.3-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.4-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.4-compact.zip index 53a559a48..76fa9d9d0 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.4-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.4-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.4-legacy.zip index cdaddfcf0..e6089ff5a 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.4-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.5-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.5-compact.zip index c23ef5f1f..cb33d79c9 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.5-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.5-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.5-legacy.zip index 634c57c5f..86ae6436c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.5-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.6-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.6-compact.zip index ce58054d2..36efec382 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.6-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.6-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.6-legacy.zip index 38eb718dc..2a5db0848 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.6-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.7-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.7-compact.zip index 49d09796f..dfcc14bc6 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.7-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.7-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.7-legacy.zip index 30cac2e07..df70288e4 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.7-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.8-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.8-compact.zip index 888a43183..d05d794e7 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.8-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.8-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.8-legacy.zip index c35109f74..2517920af 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.8-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.9-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.5.9-compact.zip index 5ba57a60a..804263825 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.9-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.5.9-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.5.9-legacy.zip index b8a2b53e3..4bba0e2f6 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.5.9-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.0-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.0-compact.zip index 11dcbe221..a2d519ad8 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.0-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.0-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.0-legacy.zip index f8df77ae5..a7f83ac34 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.0-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.1-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.1-compact.zip index 68001e1fc..1bc936aae 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.1-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.1-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.1-legacy.zip index e3834369a..8d829e455 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.1-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.10-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.10-compact.zip index 8731c2438..2f29c167e 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.10-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.10-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.10-legacy.zip index 7b64ec5e1..4edf54104 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.10-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.11-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.11-compact.zip index 3049155ec..6dbcfe7de 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.11-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.11-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.11-legacy.zip index 65ece355f..fd14d5ca1 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.11-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.12-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.12-compact.zip index a5551725e..7d66d1041 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.12-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.12-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.12-legacy.zip index 7e77e2aea..12906cec1 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.12-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.2-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.2-compact.zip index e0025eaec..a7b1ffef0 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.2-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.2-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.2-legacy.zip index 153dd91a1..c453ca082 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.2-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.3-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.3-compact.zip index f8ac69f28..b549e2f58 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.3-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.3-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.3-legacy.zip index 00ac2cc54..33b5f311c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.3-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.4-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.4-compact.zip index 7a088d530..8d668e8b3 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.4-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.4-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.4-legacy.zip index c083a10ba..0ead0379d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.4-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.5-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.5-compact.zip index 5eb16b836..d22df55f8 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.5-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.5-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.5-legacy.zip index f768e4d60..5259a5695 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.5-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.6-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.6-compact.zip index 1130aead5..960edd66d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.6-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.6-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.6-legacy.zip index c586da4f9..1029a6805 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.6-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.7-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.7-compact.zip index 014eba989..e164f994c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.7-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.7-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.7-legacy.zip index 84270a93c..de4b89749 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.7-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.8-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.8-compact.zip index 04ce470ca..36ef7725a 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.8-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.8-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.8-legacy.zip index f0c062fdd..73d084e79 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.8-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.9-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.6.9-compact.zip index 856c8b2d0..e1823fef8 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.9-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.6.9-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.6.9-legacy.zip index 0493f6f64..f77b24ebc 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.6.9-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.0-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.0-compact.zip index 83d15c5ea..5e353116c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.0-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.0-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.0-legacy.zip index 3122633a9..397490fc2 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.0-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.1-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.1-compact.zip index 6275ed181..61686fd91 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.1-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.1-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.1-legacy.zip index 894a7f7d1..8a39b7a3d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.1-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.2-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.2-compact.zip index 9d7867552..8ca77ee2c 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.2-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.2-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.2-legacy.zip index a71ef4561..92eb6d277 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.2-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.3-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.3-compact.zip index bb474f88f..fa06aa41f 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.3-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.3-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.3-legacy.zip index bb3d58cb8..8ff6a9364 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.3-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.4-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.4-compact.zip index b575b78dd..302aac436 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.4-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.4-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.4-legacy.zip index 1d9a2df6a..5bcf7f440 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.4-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.5-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.5-compact.zip index 0f88c280a..c4b07b6de 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.5-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.5-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.5-legacy.zip index e39efccee..a6088e46b 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.5-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.6-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.7.6-compact.zip index 41d682b7b..eaff0181d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.6-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.7.6-legacy.zip b/tests/ast-parsing/compile/binaryoperation-0.7.6-legacy.zip index 0ff853b0d..92f44e309 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.7.6-legacy.zip and b/tests/ast-parsing/compile/binaryoperation-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.0-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.0-compact.zip index 1c9a21541..4b9f88dea 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.0-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.1-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.1-compact.zip index be284e4dc..62c0cde5d 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.1-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.2-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.2-compact.zip index 0dc9fedaa..c4603f7d1 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.2-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.3-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.3-compact.zip index c116baed3..6830a9bf3 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.3-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.4-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.4-compact.zip index e4b41cc1c..b281b6027 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.4-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.5-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.5-compact.zip index e55da257c..02e50c3a3 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.5-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.6-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.6-compact.zip index f8179767b..c7d0c3d41 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.6-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/binaryoperation-0.8.7-compact.zip b/tests/ast-parsing/compile/binaryoperation-0.8.7-compact.zip index 5dea30a87..853887b35 100644 Binary files a/tests/ast-parsing/compile/binaryoperation-0.8.7-compact.zip and b/tests/ast-parsing/compile/binaryoperation-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.0-legacy.zip b/tests/ast-parsing/compile/break-0.4.0-legacy.zip index 88324b782..3206866f8 100644 Binary files a/tests/ast-parsing/compile/break-0.4.0-legacy.zip and b/tests/ast-parsing/compile/break-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.1-legacy.zip b/tests/ast-parsing/compile/break-0.4.1-legacy.zip index 48ea867b7..186858d48 100644 Binary files a/tests/ast-parsing/compile/break-0.4.1-legacy.zip and b/tests/ast-parsing/compile/break-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.10-legacy.zip b/tests/ast-parsing/compile/break-0.4.10-legacy.zip index 711aac78a..501edc033 100644 Binary files a/tests/ast-parsing/compile/break-0.4.10-legacy.zip and b/tests/ast-parsing/compile/break-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.11-legacy.zip b/tests/ast-parsing/compile/break-0.4.11-legacy.zip index 5bbe9c881..32caebf62 100644 Binary files a/tests/ast-parsing/compile/break-0.4.11-legacy.zip and b/tests/ast-parsing/compile/break-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.12-compact.zip b/tests/ast-parsing/compile/break-0.4.12-compact.zip index f8208a3fb..566a632c7 100644 Binary files a/tests/ast-parsing/compile/break-0.4.12-compact.zip and b/tests/ast-parsing/compile/break-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.12-legacy.zip b/tests/ast-parsing/compile/break-0.4.12-legacy.zip index d242f87dc..0faa1c1ef 100644 Binary files a/tests/ast-parsing/compile/break-0.4.12-legacy.zip and b/tests/ast-parsing/compile/break-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.13-compact.zip b/tests/ast-parsing/compile/break-0.4.13-compact.zip index f2ed17d9b..4c4ea7994 100644 Binary files a/tests/ast-parsing/compile/break-0.4.13-compact.zip and b/tests/ast-parsing/compile/break-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.13-legacy.zip b/tests/ast-parsing/compile/break-0.4.13-legacy.zip index ef29bb08a..5827a5240 100644 Binary files a/tests/ast-parsing/compile/break-0.4.13-legacy.zip and b/tests/ast-parsing/compile/break-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.14-compact.zip b/tests/ast-parsing/compile/break-0.4.14-compact.zip index 33e1cf419..bab719eb0 100644 Binary files a/tests/ast-parsing/compile/break-0.4.14-compact.zip and b/tests/ast-parsing/compile/break-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.14-legacy.zip b/tests/ast-parsing/compile/break-0.4.14-legacy.zip index 9299651ed..b56a82c75 100644 Binary files a/tests/ast-parsing/compile/break-0.4.14-legacy.zip and b/tests/ast-parsing/compile/break-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.15-compact.zip b/tests/ast-parsing/compile/break-0.4.15-compact.zip index 8b2bb7874..37b1b5a29 100644 Binary files a/tests/ast-parsing/compile/break-0.4.15-compact.zip and b/tests/ast-parsing/compile/break-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.15-legacy.zip b/tests/ast-parsing/compile/break-0.4.15-legacy.zip index 3f168845d..cff253a57 100644 Binary files a/tests/ast-parsing/compile/break-0.4.15-legacy.zip and b/tests/ast-parsing/compile/break-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.16-compact.zip b/tests/ast-parsing/compile/break-0.4.16-compact.zip index 56bf85fec..8ee3a1276 100644 Binary files a/tests/ast-parsing/compile/break-0.4.16-compact.zip and b/tests/ast-parsing/compile/break-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.16-legacy.zip b/tests/ast-parsing/compile/break-0.4.16-legacy.zip index ec8e89f89..1c08a175b 100644 Binary files a/tests/ast-parsing/compile/break-0.4.16-legacy.zip and b/tests/ast-parsing/compile/break-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.17-compact.zip b/tests/ast-parsing/compile/break-0.4.17-compact.zip index 67f1541cc..304fed3fe 100644 Binary files a/tests/ast-parsing/compile/break-0.4.17-compact.zip and b/tests/ast-parsing/compile/break-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.17-legacy.zip b/tests/ast-parsing/compile/break-0.4.17-legacy.zip index d3f84d036..e4bd67372 100644 Binary files a/tests/ast-parsing/compile/break-0.4.17-legacy.zip and b/tests/ast-parsing/compile/break-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.18-compact.zip b/tests/ast-parsing/compile/break-0.4.18-compact.zip index da2ada5ac..09eb27bf3 100644 Binary files a/tests/ast-parsing/compile/break-0.4.18-compact.zip and b/tests/ast-parsing/compile/break-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.18-legacy.zip b/tests/ast-parsing/compile/break-0.4.18-legacy.zip index 3648d63d7..1325d26bf 100644 Binary files a/tests/ast-parsing/compile/break-0.4.18-legacy.zip and b/tests/ast-parsing/compile/break-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.19-compact.zip b/tests/ast-parsing/compile/break-0.4.19-compact.zip index de7eaaddc..564a85187 100644 Binary files a/tests/ast-parsing/compile/break-0.4.19-compact.zip and b/tests/ast-parsing/compile/break-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.19-legacy.zip b/tests/ast-parsing/compile/break-0.4.19-legacy.zip index 54fabbe52..5f570dd1d 100644 Binary files a/tests/ast-parsing/compile/break-0.4.19-legacy.zip and b/tests/ast-parsing/compile/break-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.2-legacy.zip b/tests/ast-parsing/compile/break-0.4.2-legacy.zip index 83847d409..29fe589c3 100644 Binary files a/tests/ast-parsing/compile/break-0.4.2-legacy.zip and b/tests/ast-parsing/compile/break-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.20-compact.zip b/tests/ast-parsing/compile/break-0.4.20-compact.zip index 0558fd767..b10f51249 100644 Binary files a/tests/ast-parsing/compile/break-0.4.20-compact.zip and b/tests/ast-parsing/compile/break-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.20-legacy.zip b/tests/ast-parsing/compile/break-0.4.20-legacy.zip index 736a353f3..658ad1d8e 100644 Binary files a/tests/ast-parsing/compile/break-0.4.20-legacy.zip and b/tests/ast-parsing/compile/break-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.21-compact.zip b/tests/ast-parsing/compile/break-0.4.21-compact.zip index ef8aa8491..db362d5c3 100644 Binary files a/tests/ast-parsing/compile/break-0.4.21-compact.zip and b/tests/ast-parsing/compile/break-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.21-legacy.zip b/tests/ast-parsing/compile/break-0.4.21-legacy.zip index ec2c15a00..ac1cc186b 100644 Binary files a/tests/ast-parsing/compile/break-0.4.21-legacy.zip and b/tests/ast-parsing/compile/break-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.22-compact.zip b/tests/ast-parsing/compile/break-0.4.22-compact.zip index 72ee756c1..1f5d804a0 100644 Binary files a/tests/ast-parsing/compile/break-0.4.22-compact.zip and b/tests/ast-parsing/compile/break-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.22-legacy.zip b/tests/ast-parsing/compile/break-0.4.22-legacy.zip index e4964fe26..a0db9b8c3 100644 Binary files a/tests/ast-parsing/compile/break-0.4.22-legacy.zip and b/tests/ast-parsing/compile/break-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.23-compact.zip b/tests/ast-parsing/compile/break-0.4.23-compact.zip index f6dc06543..789b10e38 100644 Binary files a/tests/ast-parsing/compile/break-0.4.23-compact.zip and b/tests/ast-parsing/compile/break-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.23-legacy.zip b/tests/ast-parsing/compile/break-0.4.23-legacy.zip index 6ff96f0a0..771b09f64 100644 Binary files a/tests/ast-parsing/compile/break-0.4.23-legacy.zip and b/tests/ast-parsing/compile/break-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.24-compact.zip b/tests/ast-parsing/compile/break-0.4.24-compact.zip index 0aa49b642..a1067c42c 100644 Binary files a/tests/ast-parsing/compile/break-0.4.24-compact.zip and b/tests/ast-parsing/compile/break-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.24-legacy.zip b/tests/ast-parsing/compile/break-0.4.24-legacy.zip index 5c8a617ae..27ff7c636 100644 Binary files a/tests/ast-parsing/compile/break-0.4.24-legacy.zip and b/tests/ast-parsing/compile/break-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.25-compact.zip b/tests/ast-parsing/compile/break-0.4.25-compact.zip index 27d492585..c2f1114ae 100644 Binary files a/tests/ast-parsing/compile/break-0.4.25-compact.zip and b/tests/ast-parsing/compile/break-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.25-legacy.zip b/tests/ast-parsing/compile/break-0.4.25-legacy.zip index 7273dfbb3..85ad56178 100644 Binary files a/tests/ast-parsing/compile/break-0.4.25-legacy.zip and b/tests/ast-parsing/compile/break-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.26-compact.zip b/tests/ast-parsing/compile/break-0.4.26-compact.zip index 37be092d5..95c63259e 100644 Binary files a/tests/ast-parsing/compile/break-0.4.26-compact.zip and b/tests/ast-parsing/compile/break-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.26-legacy.zip b/tests/ast-parsing/compile/break-0.4.26-legacy.zip index e9f31931a..e43f7528b 100644 Binary files a/tests/ast-parsing/compile/break-0.4.26-legacy.zip and b/tests/ast-parsing/compile/break-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.3-legacy.zip b/tests/ast-parsing/compile/break-0.4.3-legacy.zip index 6b37fe157..518d87c34 100644 Binary files a/tests/ast-parsing/compile/break-0.4.3-legacy.zip and b/tests/ast-parsing/compile/break-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.4-legacy.zip b/tests/ast-parsing/compile/break-0.4.4-legacy.zip index 3485b7405..6e0275671 100644 Binary files a/tests/ast-parsing/compile/break-0.4.4-legacy.zip and b/tests/ast-parsing/compile/break-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.5-legacy.zip b/tests/ast-parsing/compile/break-0.4.5-legacy.zip index a02205f60..dcef6ab66 100644 Binary files a/tests/ast-parsing/compile/break-0.4.5-legacy.zip and b/tests/ast-parsing/compile/break-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.6-legacy.zip b/tests/ast-parsing/compile/break-0.4.6-legacy.zip index d66aff447..3369a85e6 100644 Binary files a/tests/ast-parsing/compile/break-0.4.6-legacy.zip and b/tests/ast-parsing/compile/break-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.7-legacy.zip b/tests/ast-parsing/compile/break-0.4.7-legacy.zip index 4c6f885a9..bf95b4192 100644 Binary files a/tests/ast-parsing/compile/break-0.4.7-legacy.zip and b/tests/ast-parsing/compile/break-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.8-legacy.zip b/tests/ast-parsing/compile/break-0.4.8-legacy.zip index 4e5bc7f99..f9eba99d4 100644 Binary files a/tests/ast-parsing/compile/break-0.4.8-legacy.zip and b/tests/ast-parsing/compile/break-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.4.9-legacy.zip b/tests/ast-parsing/compile/break-0.4.9-legacy.zip index afd210583..209109162 100644 Binary files a/tests/ast-parsing/compile/break-0.4.9-legacy.zip and b/tests/ast-parsing/compile/break-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.0-compact.zip b/tests/ast-parsing/compile/break-0.5.0-compact.zip index 99f05986a..b1365ad09 100644 Binary files a/tests/ast-parsing/compile/break-0.5.0-compact.zip and b/tests/ast-parsing/compile/break-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.0-legacy.zip b/tests/ast-parsing/compile/break-0.5.0-legacy.zip index cd08976d8..4f8bcba48 100644 Binary files a/tests/ast-parsing/compile/break-0.5.0-legacy.zip and b/tests/ast-parsing/compile/break-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.1-compact.zip b/tests/ast-parsing/compile/break-0.5.1-compact.zip index ebed63f2f..da5286a3a 100644 Binary files a/tests/ast-parsing/compile/break-0.5.1-compact.zip and b/tests/ast-parsing/compile/break-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.1-legacy.zip b/tests/ast-parsing/compile/break-0.5.1-legacy.zip index 8f6af0b96..a3928b1d1 100644 Binary files a/tests/ast-parsing/compile/break-0.5.1-legacy.zip and b/tests/ast-parsing/compile/break-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.10-compact.zip b/tests/ast-parsing/compile/break-0.5.10-compact.zip index 84b2450bb..08885b692 100644 Binary files a/tests/ast-parsing/compile/break-0.5.10-compact.zip and b/tests/ast-parsing/compile/break-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.10-legacy.zip b/tests/ast-parsing/compile/break-0.5.10-legacy.zip index 207183aaa..d72ef45c7 100644 Binary files a/tests/ast-parsing/compile/break-0.5.10-legacy.zip and b/tests/ast-parsing/compile/break-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.11-compact.zip b/tests/ast-parsing/compile/break-0.5.11-compact.zip index 3983c4ed1..d17289f69 100644 Binary files a/tests/ast-parsing/compile/break-0.5.11-compact.zip and b/tests/ast-parsing/compile/break-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.11-legacy.zip b/tests/ast-parsing/compile/break-0.5.11-legacy.zip index fc174174c..34bc3c653 100644 Binary files a/tests/ast-parsing/compile/break-0.5.11-legacy.zip and b/tests/ast-parsing/compile/break-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.12-compact.zip b/tests/ast-parsing/compile/break-0.5.12-compact.zip index e67a35f46..df9e7f686 100644 Binary files a/tests/ast-parsing/compile/break-0.5.12-compact.zip and b/tests/ast-parsing/compile/break-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.12-legacy.zip b/tests/ast-parsing/compile/break-0.5.12-legacy.zip index 7067fb9d4..8c1fd4c82 100644 Binary files a/tests/ast-parsing/compile/break-0.5.12-legacy.zip and b/tests/ast-parsing/compile/break-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.13-compact.zip b/tests/ast-parsing/compile/break-0.5.13-compact.zip index 78d6c8278..4d26a2621 100644 Binary files a/tests/ast-parsing/compile/break-0.5.13-compact.zip and b/tests/ast-parsing/compile/break-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.13-legacy.zip b/tests/ast-parsing/compile/break-0.5.13-legacy.zip index be37e9d1f..8f95ff60a 100644 Binary files a/tests/ast-parsing/compile/break-0.5.13-legacy.zip and b/tests/ast-parsing/compile/break-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.14-compact.zip b/tests/ast-parsing/compile/break-0.5.14-compact.zip index 2ca7be772..2b0ae084a 100644 Binary files a/tests/ast-parsing/compile/break-0.5.14-compact.zip and b/tests/ast-parsing/compile/break-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.14-legacy.zip b/tests/ast-parsing/compile/break-0.5.14-legacy.zip index d4707a831..5244b2c81 100644 Binary files a/tests/ast-parsing/compile/break-0.5.14-legacy.zip and b/tests/ast-parsing/compile/break-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.15-compact.zip b/tests/ast-parsing/compile/break-0.5.15-compact.zip index d9e8ffad4..1f03bd5c5 100644 Binary files a/tests/ast-parsing/compile/break-0.5.15-compact.zip and b/tests/ast-parsing/compile/break-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.15-legacy.zip b/tests/ast-parsing/compile/break-0.5.15-legacy.zip index da582eb62..b329ae9d7 100644 Binary files a/tests/ast-parsing/compile/break-0.5.15-legacy.zip and b/tests/ast-parsing/compile/break-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.16-compact.zip b/tests/ast-parsing/compile/break-0.5.16-compact.zip index 18ab08818..c8c71f5ca 100644 Binary files a/tests/ast-parsing/compile/break-0.5.16-compact.zip and b/tests/ast-parsing/compile/break-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.16-legacy.zip b/tests/ast-parsing/compile/break-0.5.16-legacy.zip index 0b8e352c3..147030b81 100644 Binary files a/tests/ast-parsing/compile/break-0.5.16-legacy.zip and b/tests/ast-parsing/compile/break-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.17-compact.zip b/tests/ast-parsing/compile/break-0.5.17-compact.zip index 2192c8da9..b2dc8c768 100644 Binary files a/tests/ast-parsing/compile/break-0.5.17-compact.zip and b/tests/ast-parsing/compile/break-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.17-legacy.zip b/tests/ast-parsing/compile/break-0.5.17-legacy.zip index 54a273845..b37a721d6 100644 Binary files a/tests/ast-parsing/compile/break-0.5.17-legacy.zip and b/tests/ast-parsing/compile/break-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.2-compact.zip b/tests/ast-parsing/compile/break-0.5.2-compact.zip index 3cb720aff..93aa6cfc6 100644 Binary files a/tests/ast-parsing/compile/break-0.5.2-compact.zip and b/tests/ast-parsing/compile/break-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.2-legacy.zip b/tests/ast-parsing/compile/break-0.5.2-legacy.zip index 0697fbae6..2bca5cf75 100644 Binary files a/tests/ast-parsing/compile/break-0.5.2-legacy.zip and b/tests/ast-parsing/compile/break-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.3-compact.zip b/tests/ast-parsing/compile/break-0.5.3-compact.zip index 9376fc25d..f97c67fe8 100644 Binary files a/tests/ast-parsing/compile/break-0.5.3-compact.zip and b/tests/ast-parsing/compile/break-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.3-legacy.zip b/tests/ast-parsing/compile/break-0.5.3-legacy.zip index 70858aa04..6104ef69b 100644 Binary files a/tests/ast-parsing/compile/break-0.5.3-legacy.zip and b/tests/ast-parsing/compile/break-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.4-compact.zip b/tests/ast-parsing/compile/break-0.5.4-compact.zip index 950faeebf..b22717537 100644 Binary files a/tests/ast-parsing/compile/break-0.5.4-compact.zip and b/tests/ast-parsing/compile/break-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.4-legacy.zip b/tests/ast-parsing/compile/break-0.5.4-legacy.zip index 4cb0cd279..c4b258aa7 100644 Binary files a/tests/ast-parsing/compile/break-0.5.4-legacy.zip and b/tests/ast-parsing/compile/break-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.5-compact.zip b/tests/ast-parsing/compile/break-0.5.5-compact.zip index 3f3ef82f2..db0b8ca19 100644 Binary files a/tests/ast-parsing/compile/break-0.5.5-compact.zip and b/tests/ast-parsing/compile/break-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.5-legacy.zip b/tests/ast-parsing/compile/break-0.5.5-legacy.zip index e2c7e9590..b7710c979 100644 Binary files a/tests/ast-parsing/compile/break-0.5.5-legacy.zip and b/tests/ast-parsing/compile/break-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.6-compact.zip b/tests/ast-parsing/compile/break-0.5.6-compact.zip index 1393246b8..278d4fe8b 100644 Binary files a/tests/ast-parsing/compile/break-0.5.6-compact.zip and b/tests/ast-parsing/compile/break-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.6-legacy.zip b/tests/ast-parsing/compile/break-0.5.6-legacy.zip index 43a3a4a7d..88963cf5d 100644 Binary files a/tests/ast-parsing/compile/break-0.5.6-legacy.zip and b/tests/ast-parsing/compile/break-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.7-compact.zip b/tests/ast-parsing/compile/break-0.5.7-compact.zip index 18bea17c4..a9ba5347b 100644 Binary files a/tests/ast-parsing/compile/break-0.5.7-compact.zip and b/tests/ast-parsing/compile/break-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.7-legacy.zip b/tests/ast-parsing/compile/break-0.5.7-legacy.zip index 945309d01..5a0a1d3fe 100644 Binary files a/tests/ast-parsing/compile/break-0.5.7-legacy.zip and b/tests/ast-parsing/compile/break-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.8-compact.zip b/tests/ast-parsing/compile/break-0.5.8-compact.zip index 203af73d4..facae8a70 100644 Binary files a/tests/ast-parsing/compile/break-0.5.8-compact.zip and b/tests/ast-parsing/compile/break-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.8-legacy.zip b/tests/ast-parsing/compile/break-0.5.8-legacy.zip index 9b76cb994..08758e104 100644 Binary files a/tests/ast-parsing/compile/break-0.5.8-legacy.zip and b/tests/ast-parsing/compile/break-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.9-compact.zip b/tests/ast-parsing/compile/break-0.5.9-compact.zip index 7c0f1ace2..0ffa47a44 100644 Binary files a/tests/ast-parsing/compile/break-0.5.9-compact.zip and b/tests/ast-parsing/compile/break-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.5.9-legacy.zip b/tests/ast-parsing/compile/break-0.5.9-legacy.zip index cdc159561..f59fa77c7 100644 Binary files a/tests/ast-parsing/compile/break-0.5.9-legacy.zip and b/tests/ast-parsing/compile/break-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.0-compact.zip b/tests/ast-parsing/compile/break-0.6.0-compact.zip index ea5eee165..d0f5c48f1 100644 Binary files a/tests/ast-parsing/compile/break-0.6.0-compact.zip and b/tests/ast-parsing/compile/break-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.0-legacy.zip b/tests/ast-parsing/compile/break-0.6.0-legacy.zip index f6d09bdd5..9b730db59 100644 Binary files a/tests/ast-parsing/compile/break-0.6.0-legacy.zip and b/tests/ast-parsing/compile/break-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.1-compact.zip b/tests/ast-parsing/compile/break-0.6.1-compact.zip index 727fc787e..97cf853b5 100644 Binary files a/tests/ast-parsing/compile/break-0.6.1-compact.zip and b/tests/ast-parsing/compile/break-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.1-legacy.zip b/tests/ast-parsing/compile/break-0.6.1-legacy.zip index 1b4f778b7..1d210776c 100644 Binary files a/tests/ast-parsing/compile/break-0.6.1-legacy.zip and b/tests/ast-parsing/compile/break-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.10-compact.zip b/tests/ast-parsing/compile/break-0.6.10-compact.zip index 31836ee3c..ea243ac17 100644 Binary files a/tests/ast-parsing/compile/break-0.6.10-compact.zip and b/tests/ast-parsing/compile/break-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.10-legacy.zip b/tests/ast-parsing/compile/break-0.6.10-legacy.zip index 619ad1b19..9b4906401 100644 Binary files a/tests/ast-parsing/compile/break-0.6.10-legacy.zip and b/tests/ast-parsing/compile/break-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.11-compact.zip b/tests/ast-parsing/compile/break-0.6.11-compact.zip index 4dded2b8c..00a8eed18 100644 Binary files a/tests/ast-parsing/compile/break-0.6.11-compact.zip and b/tests/ast-parsing/compile/break-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.11-legacy.zip b/tests/ast-parsing/compile/break-0.6.11-legacy.zip index c27ee4f42..83648cea5 100644 Binary files a/tests/ast-parsing/compile/break-0.6.11-legacy.zip and b/tests/ast-parsing/compile/break-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.12-compact.zip b/tests/ast-parsing/compile/break-0.6.12-compact.zip index 9e22c5e9c..1e0d5156b 100644 Binary files a/tests/ast-parsing/compile/break-0.6.12-compact.zip and b/tests/ast-parsing/compile/break-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.12-legacy.zip b/tests/ast-parsing/compile/break-0.6.12-legacy.zip index 89d2c9ea5..835254acd 100644 Binary files a/tests/ast-parsing/compile/break-0.6.12-legacy.zip and b/tests/ast-parsing/compile/break-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.2-compact.zip b/tests/ast-parsing/compile/break-0.6.2-compact.zip index ef7aa47c9..fcc531695 100644 Binary files a/tests/ast-parsing/compile/break-0.6.2-compact.zip and b/tests/ast-parsing/compile/break-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.2-legacy.zip b/tests/ast-parsing/compile/break-0.6.2-legacy.zip index 694462ea5..d6ed9ff87 100644 Binary files a/tests/ast-parsing/compile/break-0.6.2-legacy.zip and b/tests/ast-parsing/compile/break-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.3-compact.zip b/tests/ast-parsing/compile/break-0.6.3-compact.zip index 8906f31a3..29ec34358 100644 Binary files a/tests/ast-parsing/compile/break-0.6.3-compact.zip and b/tests/ast-parsing/compile/break-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.3-legacy.zip b/tests/ast-parsing/compile/break-0.6.3-legacy.zip index 19765193b..36363e0cd 100644 Binary files a/tests/ast-parsing/compile/break-0.6.3-legacy.zip and b/tests/ast-parsing/compile/break-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.4-compact.zip b/tests/ast-parsing/compile/break-0.6.4-compact.zip index dcd14adf0..4a87fa8a8 100644 Binary files a/tests/ast-parsing/compile/break-0.6.4-compact.zip and b/tests/ast-parsing/compile/break-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.4-legacy.zip b/tests/ast-parsing/compile/break-0.6.4-legacy.zip index 39468176f..c7305e5a7 100644 Binary files a/tests/ast-parsing/compile/break-0.6.4-legacy.zip and b/tests/ast-parsing/compile/break-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.5-compact.zip b/tests/ast-parsing/compile/break-0.6.5-compact.zip index 6f715bd11..bbdb2f738 100644 Binary files a/tests/ast-parsing/compile/break-0.6.5-compact.zip and b/tests/ast-parsing/compile/break-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.5-legacy.zip b/tests/ast-parsing/compile/break-0.6.5-legacy.zip index 9dfa2c986..94d3aaa21 100644 Binary files a/tests/ast-parsing/compile/break-0.6.5-legacy.zip and b/tests/ast-parsing/compile/break-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.6-compact.zip b/tests/ast-parsing/compile/break-0.6.6-compact.zip index 5eaa79099..8e30cc90b 100644 Binary files a/tests/ast-parsing/compile/break-0.6.6-compact.zip and b/tests/ast-parsing/compile/break-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.6-legacy.zip b/tests/ast-parsing/compile/break-0.6.6-legacy.zip index cdab35136..5542b126e 100644 Binary files a/tests/ast-parsing/compile/break-0.6.6-legacy.zip and b/tests/ast-parsing/compile/break-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.7-compact.zip b/tests/ast-parsing/compile/break-0.6.7-compact.zip index c511fe0e2..5666ec9b7 100644 Binary files a/tests/ast-parsing/compile/break-0.6.7-compact.zip and b/tests/ast-parsing/compile/break-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.7-legacy.zip b/tests/ast-parsing/compile/break-0.6.7-legacy.zip index 19c7317bd..e0bcb4a25 100644 Binary files a/tests/ast-parsing/compile/break-0.6.7-legacy.zip and b/tests/ast-parsing/compile/break-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.8-compact.zip b/tests/ast-parsing/compile/break-0.6.8-compact.zip index ed1b9bf49..126d32571 100644 Binary files a/tests/ast-parsing/compile/break-0.6.8-compact.zip and b/tests/ast-parsing/compile/break-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.8-legacy.zip b/tests/ast-parsing/compile/break-0.6.8-legacy.zip index ecc38eac6..3d3406f04 100644 Binary files a/tests/ast-parsing/compile/break-0.6.8-legacy.zip and b/tests/ast-parsing/compile/break-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.9-compact.zip b/tests/ast-parsing/compile/break-0.6.9-compact.zip index 22e3905e4..a9ad133c7 100644 Binary files a/tests/ast-parsing/compile/break-0.6.9-compact.zip and b/tests/ast-parsing/compile/break-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.6.9-legacy.zip b/tests/ast-parsing/compile/break-0.6.9-legacy.zip index afdd8d26f..428711deb 100644 Binary files a/tests/ast-parsing/compile/break-0.6.9-legacy.zip and b/tests/ast-parsing/compile/break-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.0-compact.zip b/tests/ast-parsing/compile/break-0.7.0-compact.zip index 7bcec34dd..a969b9c34 100644 Binary files a/tests/ast-parsing/compile/break-0.7.0-compact.zip and b/tests/ast-parsing/compile/break-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.0-legacy.zip b/tests/ast-parsing/compile/break-0.7.0-legacy.zip index 183f38a70..c7643c32f 100644 Binary files a/tests/ast-parsing/compile/break-0.7.0-legacy.zip and b/tests/ast-parsing/compile/break-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.1-compact.zip b/tests/ast-parsing/compile/break-0.7.1-compact.zip index 7aea1bc49..0b9594b95 100644 Binary files a/tests/ast-parsing/compile/break-0.7.1-compact.zip and b/tests/ast-parsing/compile/break-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.1-legacy.zip b/tests/ast-parsing/compile/break-0.7.1-legacy.zip index 483b6019d..ef9d048ac 100644 Binary files a/tests/ast-parsing/compile/break-0.7.1-legacy.zip and b/tests/ast-parsing/compile/break-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.2-compact.zip b/tests/ast-parsing/compile/break-0.7.2-compact.zip index c729d3814..0e7c20dcc 100644 Binary files a/tests/ast-parsing/compile/break-0.7.2-compact.zip and b/tests/ast-parsing/compile/break-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.2-legacy.zip b/tests/ast-parsing/compile/break-0.7.2-legacy.zip index 99e8746fe..e8d2ae625 100644 Binary files a/tests/ast-parsing/compile/break-0.7.2-legacy.zip and b/tests/ast-parsing/compile/break-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.3-compact.zip b/tests/ast-parsing/compile/break-0.7.3-compact.zip index 12002253f..f7ded370b 100644 Binary files a/tests/ast-parsing/compile/break-0.7.3-compact.zip and b/tests/ast-parsing/compile/break-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.3-legacy.zip b/tests/ast-parsing/compile/break-0.7.3-legacy.zip index ee71e7e8a..a183920b0 100644 Binary files a/tests/ast-parsing/compile/break-0.7.3-legacy.zip and b/tests/ast-parsing/compile/break-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.4-compact.zip b/tests/ast-parsing/compile/break-0.7.4-compact.zip index 13d650363..6c5ac270e 100644 Binary files a/tests/ast-parsing/compile/break-0.7.4-compact.zip and b/tests/ast-parsing/compile/break-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.4-legacy.zip b/tests/ast-parsing/compile/break-0.7.4-legacy.zip index 8381e4664..4110c354e 100644 Binary files a/tests/ast-parsing/compile/break-0.7.4-legacy.zip and b/tests/ast-parsing/compile/break-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.5-compact.zip b/tests/ast-parsing/compile/break-0.7.5-compact.zip index 913346636..6446ff8ab 100644 Binary files a/tests/ast-parsing/compile/break-0.7.5-compact.zip and b/tests/ast-parsing/compile/break-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.5-legacy.zip b/tests/ast-parsing/compile/break-0.7.5-legacy.zip index 8d94ac8ee..0ab8f1a1b 100644 Binary files a/tests/ast-parsing/compile/break-0.7.5-legacy.zip and b/tests/ast-parsing/compile/break-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.6-compact.zip b/tests/ast-parsing/compile/break-0.7.6-compact.zip index 64630088f..5b61cfc0a 100644 Binary files a/tests/ast-parsing/compile/break-0.7.6-compact.zip and b/tests/ast-parsing/compile/break-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.7.6-legacy.zip b/tests/ast-parsing/compile/break-0.7.6-legacy.zip index e931691ea..a7cc9888b 100644 Binary files a/tests/ast-parsing/compile/break-0.7.6-legacy.zip and b/tests/ast-parsing/compile/break-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.0-compact.zip b/tests/ast-parsing/compile/break-0.8.0-compact.zip index 01251e16f..7613c4d42 100644 Binary files a/tests/ast-parsing/compile/break-0.8.0-compact.zip and b/tests/ast-parsing/compile/break-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.1-compact.zip b/tests/ast-parsing/compile/break-0.8.1-compact.zip index 20c812aac..ba1acb48b 100644 Binary files a/tests/ast-parsing/compile/break-0.8.1-compact.zip and b/tests/ast-parsing/compile/break-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.2-compact.zip b/tests/ast-parsing/compile/break-0.8.2-compact.zip index 8c9b6266b..7d631c63c 100644 Binary files a/tests/ast-parsing/compile/break-0.8.2-compact.zip and b/tests/ast-parsing/compile/break-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.3-compact.zip b/tests/ast-parsing/compile/break-0.8.3-compact.zip index f29a8cab6..3a90dbf05 100644 Binary files a/tests/ast-parsing/compile/break-0.8.3-compact.zip and b/tests/ast-parsing/compile/break-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.4-compact.zip b/tests/ast-parsing/compile/break-0.8.4-compact.zip index 4c662acad..453487346 100644 Binary files a/tests/ast-parsing/compile/break-0.8.4-compact.zip and b/tests/ast-parsing/compile/break-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.5-compact.zip b/tests/ast-parsing/compile/break-0.8.5-compact.zip index 3d9aa7bf8..7b89cad5d 100644 Binary files a/tests/ast-parsing/compile/break-0.8.5-compact.zip and b/tests/ast-parsing/compile/break-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.6-compact.zip b/tests/ast-parsing/compile/break-0.8.6-compact.zip index 106756396..b43997e40 100644 Binary files a/tests/ast-parsing/compile/break-0.8.6-compact.zip and b/tests/ast-parsing/compile/break-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/break-0.8.7-compact.zip b/tests/ast-parsing/compile/break-0.8.7-compact.zip index f38bc4b52..59f08b22a 100644 Binary files a/tests/ast-parsing/compile/break-0.8.7-compact.zip and b/tests/ast-parsing/compile/break-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.0-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.0-legacy.zip index 3c26c0a0e..68b7c17bb 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.0-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.1-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.1-legacy.zip index f37140cd7..c21b88c8b 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.1-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.10-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.10-legacy.zip index 33ba5f908..412927fb4 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.10-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.11-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.11-legacy.zip index 96211c7a2..b1995f85c 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.11-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.12-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.12-compact.zip index fc0aaab3f..d94f0766f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.12-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.12-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.12-legacy.zip index b5f8175bf..4b65e6f5f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.12-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.13-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.13-compact.zip index 3806d7f11..60080a764 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.13-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.13-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.13-legacy.zip index 9465e4b7e..c43aafec1 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.13-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.14-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.14-compact.zip index 41adbf660..cdb1fe401 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.14-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.14-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.14-legacy.zip index a264b6c72..33de0c04b 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.14-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.15-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.15-compact.zip index aab2b8678..08df4cf76 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.15-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.15-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.15-legacy.zip index c3c78e183..22d3f7324 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.15-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.16-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.16-compact.zip index 9a9eba77d..8944b6565 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.16-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.16-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.16-legacy.zip index 5fd1b67fe..3294e9b34 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.16-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.17-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.17-compact.zip index b7eaeb9ce..ec5fbb00e 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.17-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.17-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.17-legacy.zip index 978954049..09795eb0d 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.17-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.18-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.18-compact.zip index 22d476f7a..10fddc670 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.18-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.18-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.18-legacy.zip index ac7d5c1dd..de5b16c9f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.18-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.19-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.19-compact.zip index ee4f98c9f..6d27d9f0c 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.19-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.19-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.19-legacy.zip index 9795f3688..8a20ca9bd 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.19-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.2-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.2-legacy.zip index 8f7c3a3ca..290418440 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.2-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.20-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.20-compact.zip index e50fd88e5..5a4fdb50b 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.20-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.20-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.20-legacy.zip index 28a110325..75bdaef90 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.20-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.21-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.21-compact.zip index 1f1d54721..a79ea2fc7 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.21-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.21-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.21-legacy.zip index a63fffb7c..fd67a34b7 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.21-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.22-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.22-compact.zip index e241a40d7..40155eef7 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.22-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.22-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.22-legacy.zip index 34f3fa0aa..19c6ff801 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.22-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.23-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.23-compact.zip index ac7b5e329..5ee0fbfeb 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.23-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.23-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.23-legacy.zip index 1cff42581..faef248e8 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.23-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.24-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.24-compact.zip index cc79528ca..9016173e1 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.24-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.24-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.24-legacy.zip index 0bfc7adca..8544718e9 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.24-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.25-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.25-compact.zip index 62ec7a7bc..4314caed3 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.25-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.25-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.25-legacy.zip index 491b33852..eb6331171 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.25-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.26-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.4.26-compact.zip index f90b8f346..c330cfa74 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.26-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.26-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.26-legacy.zip index 74c59ff5b..c0b17ff96 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.26-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.3-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.3-legacy.zip index d6d4d35d3..695fe5d13 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.3-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.4-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.4-legacy.zip index f25a0d758..5ab853a7e 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.4-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.5-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.5-legacy.zip index 2abe04cf1..ece1c9095 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.5-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.6-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.6-legacy.zip index 88baf2fe3..e29b4a5ae 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.6-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.7-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.7-legacy.zip index 489637f5e..a25e91074 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.7-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.8-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.8-legacy.zip index c4515966e..898d74602 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.8-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.4.9-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.4.9-legacy.zip index 2b26dee20..6b4eacd19 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.4.9-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.0-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.0-compact.zip index 69e036a33..47c4c7b8f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.0-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.0-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.0-legacy.zip index 5a6325d55..a87d5a447 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.0-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.1-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.1-compact.zip index b8c2b2407..b8e634c9d 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.1-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.1-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.1-legacy.zip index 395870f08..37cd94f61 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.1-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.10-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.10-compact.zip index 7b74b79aa..25782c818 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.10-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.10-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.10-legacy.zip index 941ccac86..07be2bb1f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.10-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.11-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.11-compact.zip index bd850d396..ebe98763b 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.11-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.11-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.11-legacy.zip index ee97af2be..39d500b51 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.11-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.12-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.12-compact.zip index e684735a5..f971edd81 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.12-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.12-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.12-legacy.zip index 621b5a80e..0575bd61f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.12-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.13-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.13-compact.zip index 8887fe276..525fca054 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.13-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.13-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.13-legacy.zip index cb4749fdc..2a9fc8d1f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.13-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.14-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.14-compact.zip index 10017b0a4..06e21f49f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.14-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.14-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.14-legacy.zip index 53c261564..05a9ae540 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.14-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.15-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.15-compact.zip index 93f31348f..892f15973 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.15-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.15-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.15-legacy.zip index 5de926514..6719a9060 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.15-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.16-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.16-compact.zip index 53cd8e13d..0b522d9d6 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.16-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.16-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.16-legacy.zip index 8abaf310e..a05f1ccee 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.16-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.17-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.17-compact.zip index b2fd0c21f..063924661 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.17-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.17-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.17-legacy.zip index 29ffc45b3..685b219b2 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.17-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.2-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.2-compact.zip index 6acd67faa..9dadc7eea 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.2-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.2-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.2-legacy.zip index fe4b98035..de2cf173f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.2-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.3-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.3-compact.zip index 653b6be40..f6cfc6b20 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.3-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.3-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.3-legacy.zip index 8d93e0c61..772f2f0b6 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.3-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.4-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.4-compact.zip index b8e9ae0b3..c7b45d979 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.4-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.4-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.4-legacy.zip index fc3c3cb03..1d3069972 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.4-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.5-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.5-compact.zip index 1522480ab..a3136b948 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.5-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.5-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.5-legacy.zip index 292876e54..9989f1d6d 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.5-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.6-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.6-compact.zip index 3ef15c41b..9181a6a93 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.6-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.6-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.6-legacy.zip index 39d44dc38..e6d38e1bd 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.6-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.7-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.7-compact.zip index 3a1617a65..7e8af56ed 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.7-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.7-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.7-legacy.zip index eca50045a..203fe2850 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.7-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.8-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.8-compact.zip index 8d7449ef3..daf25b573 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.8-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.8-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.8-legacy.zip index a813baf35..f237c59eb 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.8-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.9-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.5.9-compact.zip index 3372663aa..ddeb47c3c 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.9-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.5.9-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.5.9-legacy.zip index fdbf6425d..9dba477bc 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.5.9-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.0-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.0-compact.zip index c5be56e92..b538e3995 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.0-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.0-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.0-legacy.zip index af66334e6..2fb48e363 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.0-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.1-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.1-compact.zip index 696d822dc..cec586e5d 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.1-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.1-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.1-legacy.zip index 1e4c9498e..4053876ba 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.1-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.10-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.10-compact.zip index 01530f4dd..b09678fe5 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.10-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.10-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.10-legacy.zip index 981c81757..7832ba7de 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.10-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.11-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.11-compact.zip index 9d3ab66db..7fa70a4af 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.11-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.11-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.11-legacy.zip index bd71ad486..2b1a071e3 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.11-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.12-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.12-compact.zip index 835608f51..6e4832aa1 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.12-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.12-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.12-legacy.zip index 229fffba5..3fde55896 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.12-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.2-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.2-compact.zip index ae5724481..62f5586b8 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.2-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.2-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.2-legacy.zip index 63650376e..7e3ff42ed 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.2-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.3-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.3-compact.zip index a2c541245..498ec8bd9 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.3-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.3-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.3-legacy.zip index c81bb1d61..593348f47 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.3-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.4-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.4-compact.zip index adb8ba0e0..75716225a 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.4-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.4-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.4-legacy.zip index 2b1ca0c8b..3690a6228 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.4-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.5-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.5-compact.zip index 9377d948a..5d67223e7 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.5-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.5-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.5-legacy.zip index 2fb46ae15..09eab7128 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.5-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.6-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.6-compact.zip index ced9f755a..76a706ae7 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.6-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.6-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.6-legacy.zip index f0b9ae74a..f23d93dca 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.6-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.7-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.7-compact.zip index 8a210e8ae..f85ad0ae7 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.7-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.7-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.7-legacy.zip index 0b5755cb8..7acc44a6c 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.7-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.8-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.8-compact.zip index 6a1906421..7af7b464c 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.8-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.8-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.8-legacy.zip index 3812b5ae0..c37a1f93f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.8-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.9-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.6.9-compact.zip index 8d5df2f7a..5050bba7f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.9-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.6.9-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.6.9-legacy.zip index e997a3ecd..6034f4331 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.6.9-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.0-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.0-compact.zip index b2dd55978..083d7e3e2 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.0-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.0-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.0-legacy.zip index 17b4ea852..743add67b 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.0-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.1-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.1-compact.zip index 2450c04ba..9c33645b4 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.1-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.1-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.1-legacy.zip index 1ee916dcf..e49b64e21 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.1-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.2-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.2-compact.zip index 4a749113f..f00a6b640 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.2-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.2-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.2-legacy.zip index edcdb334d..1df52cda2 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.2-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.3-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.3-compact.zip index 56dc6e75c..d672a9018 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.3-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.3-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.3-legacy.zip index b6ee93b06..c872b3705 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.3-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.4-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.4-compact.zip index 11b32a646..2c05220ed 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.4-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.4-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.4-legacy.zip index 1ea20793b..932ff53c5 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.4-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.5-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.5-compact.zip index c9e7617dd..0470737af 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.5-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.5-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.5-legacy.zip index 7ef082605..066420c0f 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.5-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.6-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.7.6-compact.zip index 5358e1f46..7c1da0ae1 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.6-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.7.6-legacy.zip b/tests/ast-parsing/compile/call_to_variable-0.7.6-legacy.zip index 23b91057a..aa347b004 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.7.6-legacy.zip and b/tests/ast-parsing/compile/call_to_variable-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.0-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.0-compact.zip index df411be17..e9f7578d8 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.0-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.1-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.1-compact.zip index 0c9156e89..c5375f14e 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.1-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.2-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.2-compact.zip index 47b021196..6a8823b69 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.2-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.3-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.3-compact.zip index b0eacc3ef..ce217f18d 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.3-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.4-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.4-compact.zip index 93eb06f7a..3a93f0f20 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.4-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.5-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.5-compact.zip index c8d42872c..2568c65e3 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.5-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.6-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.6-compact.zip index ea841a87c..1418a7451 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.6-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/call_to_variable-0.8.7-compact.zip b/tests/ast-parsing/compile/call_to_variable-0.8.7-compact.zip index 46391217d..0fab3c5cb 100644 Binary files a/tests/ast-parsing/compile/call_to_variable-0.8.7-compact.zip and b/tests/ast-parsing/compile/call_to_variable-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.0-legacy.zip b/tests/ast-parsing/compile/comment-0.4.0-legacy.zip index 1f3162d68..5d929031a 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.0-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.1-legacy.zip b/tests/ast-parsing/compile/comment-0.4.1-legacy.zip index 587363f04..80de30ae4 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.1-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.10-legacy.zip b/tests/ast-parsing/compile/comment-0.4.10-legacy.zip index e8c528fe6..a6042db2a 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.10-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.11-legacy.zip b/tests/ast-parsing/compile/comment-0.4.11-legacy.zip index ad58065ec..b39ae4555 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.11-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.12-compact.zip b/tests/ast-parsing/compile/comment-0.4.12-compact.zip index b5f31144f..df40ba5ec 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.12-compact.zip and b/tests/ast-parsing/compile/comment-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.12-legacy.zip b/tests/ast-parsing/compile/comment-0.4.12-legacy.zip index 2dfd6ed5d..777e6242f 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.12-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.13-compact.zip b/tests/ast-parsing/compile/comment-0.4.13-compact.zip index c4e233525..1434bbdac 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.13-compact.zip and b/tests/ast-parsing/compile/comment-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.13-legacy.zip b/tests/ast-parsing/compile/comment-0.4.13-legacy.zip index 7f5062dd3..4462c5f72 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.13-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.14-compact.zip b/tests/ast-parsing/compile/comment-0.4.14-compact.zip index 5b82d1920..0c66862a2 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.14-compact.zip and b/tests/ast-parsing/compile/comment-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.14-legacy.zip b/tests/ast-parsing/compile/comment-0.4.14-legacy.zip index 895309a6a..9e9638c62 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.14-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.15-compact.zip b/tests/ast-parsing/compile/comment-0.4.15-compact.zip index 18ab1d25a..2215819eb 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.15-compact.zip and b/tests/ast-parsing/compile/comment-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.15-legacy.zip b/tests/ast-parsing/compile/comment-0.4.15-legacy.zip index 01a237cc8..b916a94e0 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.15-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.16-compact.zip b/tests/ast-parsing/compile/comment-0.4.16-compact.zip index 899ff0ca7..2292e232c 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.16-compact.zip and b/tests/ast-parsing/compile/comment-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.16-legacy.zip b/tests/ast-parsing/compile/comment-0.4.16-legacy.zip index dad6de731..7090142e9 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.16-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.17-compact.zip b/tests/ast-parsing/compile/comment-0.4.17-compact.zip index 14889f373..68555abc7 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.17-compact.zip and b/tests/ast-parsing/compile/comment-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.17-legacy.zip b/tests/ast-parsing/compile/comment-0.4.17-legacy.zip index daffa72c7..c1a600f7e 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.17-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.18-compact.zip b/tests/ast-parsing/compile/comment-0.4.18-compact.zip index 9e2a52419..862fe8d37 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.18-compact.zip and b/tests/ast-parsing/compile/comment-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.18-legacy.zip b/tests/ast-parsing/compile/comment-0.4.18-legacy.zip index 9232a96b8..759781ce8 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.18-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.19-compact.zip b/tests/ast-parsing/compile/comment-0.4.19-compact.zip index b0bafd04a..a96733e4b 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.19-compact.zip and b/tests/ast-parsing/compile/comment-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.19-legacy.zip b/tests/ast-parsing/compile/comment-0.4.19-legacy.zip index 06db07b33..dd7a57535 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.19-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.2-legacy.zip b/tests/ast-parsing/compile/comment-0.4.2-legacy.zip index fadf206e8..1340ae996 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.2-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.20-compact.zip b/tests/ast-parsing/compile/comment-0.4.20-compact.zip index cd8c32fc7..9bea95c23 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.20-compact.zip and b/tests/ast-parsing/compile/comment-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.20-legacy.zip b/tests/ast-parsing/compile/comment-0.4.20-legacy.zip index 20506f594..b182b0a02 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.20-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.21-compact.zip b/tests/ast-parsing/compile/comment-0.4.21-compact.zip index ec0049483..3abc9f0aa 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.21-compact.zip and b/tests/ast-parsing/compile/comment-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.21-legacy.zip b/tests/ast-parsing/compile/comment-0.4.21-legacy.zip index d3515481e..129aa7694 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.21-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.22-compact.zip b/tests/ast-parsing/compile/comment-0.4.22-compact.zip index 770127e54..6f66fd0ed 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.22-compact.zip and b/tests/ast-parsing/compile/comment-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.22-legacy.zip b/tests/ast-parsing/compile/comment-0.4.22-legacy.zip index 14ae8e25a..8a318bee1 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.22-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.23-compact.zip b/tests/ast-parsing/compile/comment-0.4.23-compact.zip index 2eb9773df..1e9404b0a 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.23-compact.zip and b/tests/ast-parsing/compile/comment-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.23-legacy.zip b/tests/ast-parsing/compile/comment-0.4.23-legacy.zip index 30c35c86a..613edabad 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.23-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.24-compact.zip b/tests/ast-parsing/compile/comment-0.4.24-compact.zip index 733a9c6b7..ac38f0c35 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.24-compact.zip and b/tests/ast-parsing/compile/comment-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.24-legacy.zip b/tests/ast-parsing/compile/comment-0.4.24-legacy.zip index cdcea76da..dabc3b61d 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.24-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.25-compact.zip b/tests/ast-parsing/compile/comment-0.4.25-compact.zip index 103a60709..030889caf 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.25-compact.zip and b/tests/ast-parsing/compile/comment-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.25-legacy.zip b/tests/ast-parsing/compile/comment-0.4.25-legacy.zip index 5632fed3a..567bf9eab 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.25-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.26-compact.zip b/tests/ast-parsing/compile/comment-0.4.26-compact.zip index d5cc35c64..654294b87 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.26-compact.zip and b/tests/ast-parsing/compile/comment-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.26-legacy.zip b/tests/ast-parsing/compile/comment-0.4.26-legacy.zip index 157543254..21ceaf9d4 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.26-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.3-legacy.zip b/tests/ast-parsing/compile/comment-0.4.3-legacy.zip index 1b53e2d24..48b930b3b 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.3-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.4-legacy.zip b/tests/ast-parsing/compile/comment-0.4.4-legacy.zip index 3aaf606c0..ee079dbf7 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.4-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.5-legacy.zip b/tests/ast-parsing/compile/comment-0.4.5-legacy.zip index 3c9c6008c..ebdaba7dc 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.5-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.6-legacy.zip b/tests/ast-parsing/compile/comment-0.4.6-legacy.zip index 006aeee66..93ab36ddf 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.6-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.7-legacy.zip b/tests/ast-parsing/compile/comment-0.4.7-legacy.zip index 2e3ef481a..8612736fe 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.7-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.8-legacy.zip b/tests/ast-parsing/compile/comment-0.4.8-legacy.zip index 742595d91..b56d49555 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.8-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.4.9-legacy.zip b/tests/ast-parsing/compile/comment-0.4.9-legacy.zip index 38f16073a..da4bbc3e4 100644 Binary files a/tests/ast-parsing/compile/comment-0.4.9-legacy.zip and b/tests/ast-parsing/compile/comment-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.0-compact.zip b/tests/ast-parsing/compile/comment-0.5.0-compact.zip index 1540fb770..1e95f9a76 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.0-compact.zip and b/tests/ast-parsing/compile/comment-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.0-legacy.zip b/tests/ast-parsing/compile/comment-0.5.0-legacy.zip index 037b17e15..96fe04ce9 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.0-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.1-compact.zip b/tests/ast-parsing/compile/comment-0.5.1-compact.zip index 61bb276b4..56bf2d637 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.1-compact.zip and b/tests/ast-parsing/compile/comment-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.1-legacy.zip b/tests/ast-parsing/compile/comment-0.5.1-legacy.zip index 5028cb3eb..c5a34a5d6 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.1-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.10-compact.zip b/tests/ast-parsing/compile/comment-0.5.10-compact.zip index facaa00b2..58b0af308 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.10-compact.zip and b/tests/ast-parsing/compile/comment-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.10-legacy.zip b/tests/ast-parsing/compile/comment-0.5.10-legacy.zip index 4a8724775..bc01f3c3c 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.10-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.11-compact.zip b/tests/ast-parsing/compile/comment-0.5.11-compact.zip index bdcda70aa..9383a9701 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.11-compact.zip and b/tests/ast-parsing/compile/comment-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.11-legacy.zip b/tests/ast-parsing/compile/comment-0.5.11-legacy.zip index 6886b50a8..68221fd9b 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.11-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.12-compact.zip b/tests/ast-parsing/compile/comment-0.5.12-compact.zip index a76cc6e40..7d8fee4d9 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.12-compact.zip and b/tests/ast-parsing/compile/comment-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.12-legacy.zip b/tests/ast-parsing/compile/comment-0.5.12-legacy.zip index da9182226..70038ca93 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.12-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.13-compact.zip b/tests/ast-parsing/compile/comment-0.5.13-compact.zip index aabf2ea89..743f5cfc2 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.13-compact.zip and b/tests/ast-parsing/compile/comment-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.13-legacy.zip b/tests/ast-parsing/compile/comment-0.5.13-legacy.zip index 7840c5ff0..ef0b1b777 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.13-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.14-compact.zip b/tests/ast-parsing/compile/comment-0.5.14-compact.zip index 8e7255868..85c058e25 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.14-compact.zip and b/tests/ast-parsing/compile/comment-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.14-legacy.zip b/tests/ast-parsing/compile/comment-0.5.14-legacy.zip index c7f4ee1e9..b0fb1f2e3 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.14-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.15-compact.zip b/tests/ast-parsing/compile/comment-0.5.15-compact.zip index 294f6034d..597edb392 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.15-compact.zip and b/tests/ast-parsing/compile/comment-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.15-legacy.zip b/tests/ast-parsing/compile/comment-0.5.15-legacy.zip index c70fbebef..aa5489f6b 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.15-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.16-compact.zip b/tests/ast-parsing/compile/comment-0.5.16-compact.zip index 1caf065da..b38fc7146 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.16-compact.zip and b/tests/ast-parsing/compile/comment-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.16-legacy.zip b/tests/ast-parsing/compile/comment-0.5.16-legacy.zip index bce7ee0ad..ee50c3161 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.16-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.17-compact.zip b/tests/ast-parsing/compile/comment-0.5.17-compact.zip index 0869c87fd..268297b6d 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.17-compact.zip and b/tests/ast-parsing/compile/comment-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.17-legacy.zip b/tests/ast-parsing/compile/comment-0.5.17-legacy.zip index 5314362c4..989d8f21c 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.17-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.2-compact.zip b/tests/ast-parsing/compile/comment-0.5.2-compact.zip index e32237abf..27c113673 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.2-compact.zip and b/tests/ast-parsing/compile/comment-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.2-legacy.zip b/tests/ast-parsing/compile/comment-0.5.2-legacy.zip index 054b85d09..61d367f17 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.2-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.3-compact.zip b/tests/ast-parsing/compile/comment-0.5.3-compact.zip index 53be765e9..3fe990b53 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.3-compact.zip and b/tests/ast-parsing/compile/comment-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.3-legacy.zip b/tests/ast-parsing/compile/comment-0.5.3-legacy.zip index f953a939d..5842a712d 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.3-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.4-compact.zip b/tests/ast-parsing/compile/comment-0.5.4-compact.zip index 05623491b..fe420a028 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.4-compact.zip and b/tests/ast-parsing/compile/comment-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.4-legacy.zip b/tests/ast-parsing/compile/comment-0.5.4-legacy.zip index f67955049..a7a304f53 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.4-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.5-compact.zip b/tests/ast-parsing/compile/comment-0.5.5-compact.zip index 8cc2ba793..6b5f72f0b 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.5-compact.zip and b/tests/ast-parsing/compile/comment-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.5-legacy.zip b/tests/ast-parsing/compile/comment-0.5.5-legacy.zip index 8b9d7a5e3..23dd152cf 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.5-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.6-compact.zip b/tests/ast-parsing/compile/comment-0.5.6-compact.zip index 95cbff2cc..2fcdabc94 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.6-compact.zip and b/tests/ast-parsing/compile/comment-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.6-legacy.zip b/tests/ast-parsing/compile/comment-0.5.6-legacy.zip index a208ddde1..4167cfc39 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.6-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.7-compact.zip b/tests/ast-parsing/compile/comment-0.5.7-compact.zip index 2bc43a013..346eec4b3 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.7-compact.zip and b/tests/ast-parsing/compile/comment-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.7-legacy.zip b/tests/ast-parsing/compile/comment-0.5.7-legacy.zip index 3e568643f..fbed36414 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.7-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.8-compact.zip b/tests/ast-parsing/compile/comment-0.5.8-compact.zip index 84c48adf9..ad3a051e0 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.8-compact.zip and b/tests/ast-parsing/compile/comment-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.8-legacy.zip b/tests/ast-parsing/compile/comment-0.5.8-legacy.zip index 5173e9c28..e1e8f146b 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.8-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.9-compact.zip b/tests/ast-parsing/compile/comment-0.5.9-compact.zip index 1551e955e..769f958dc 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.9-compact.zip and b/tests/ast-parsing/compile/comment-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.5.9-legacy.zip b/tests/ast-parsing/compile/comment-0.5.9-legacy.zip index 7dd1af63d..8e1a0ae6f 100644 Binary files a/tests/ast-parsing/compile/comment-0.5.9-legacy.zip and b/tests/ast-parsing/compile/comment-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.0-compact.zip b/tests/ast-parsing/compile/comment-0.6.0-compact.zip index 8064b1b78..e30dd2cf7 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.0-compact.zip and b/tests/ast-parsing/compile/comment-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.0-legacy.zip b/tests/ast-parsing/compile/comment-0.6.0-legacy.zip index 78d371639..9c0ba4212 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.0-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.1-compact.zip b/tests/ast-parsing/compile/comment-0.6.1-compact.zip index f8cf51c61..3649e3085 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.1-compact.zip and b/tests/ast-parsing/compile/comment-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.1-legacy.zip b/tests/ast-parsing/compile/comment-0.6.1-legacy.zip index 339232cb5..e8942ea3d 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.1-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.10-compact.zip b/tests/ast-parsing/compile/comment-0.6.10-compact.zip index 034a3c443..013cda05e 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.10-compact.zip and b/tests/ast-parsing/compile/comment-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.10-legacy.zip b/tests/ast-parsing/compile/comment-0.6.10-legacy.zip index f8e3ccfbb..8628d3d7d 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.10-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.11-compact.zip b/tests/ast-parsing/compile/comment-0.6.11-compact.zip index 637002200..5f9a20ec0 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.11-compact.zip and b/tests/ast-parsing/compile/comment-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.11-legacy.zip b/tests/ast-parsing/compile/comment-0.6.11-legacy.zip index 15123be0a..7fa1b43eb 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.11-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.12-compact.zip b/tests/ast-parsing/compile/comment-0.6.12-compact.zip index 11b9fc933..085b9cb32 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.12-compact.zip and b/tests/ast-parsing/compile/comment-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.12-legacy.zip b/tests/ast-parsing/compile/comment-0.6.12-legacy.zip index 8f05a1aa0..a62d6ebf6 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.12-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.2-compact.zip b/tests/ast-parsing/compile/comment-0.6.2-compact.zip index 3b8150bbe..2f3cdcced 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.2-compact.zip and b/tests/ast-parsing/compile/comment-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.2-legacy.zip b/tests/ast-parsing/compile/comment-0.6.2-legacy.zip index 4c6ad1a24..ab7e190b5 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.2-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.3-compact.zip b/tests/ast-parsing/compile/comment-0.6.3-compact.zip index ac7ace18d..0244d3396 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.3-compact.zip and b/tests/ast-parsing/compile/comment-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.3-legacy.zip b/tests/ast-parsing/compile/comment-0.6.3-legacy.zip index b39e431df..730b5f51e 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.3-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.4-compact.zip b/tests/ast-parsing/compile/comment-0.6.4-compact.zip index a4bf7b680..9b81677d2 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.4-compact.zip and b/tests/ast-parsing/compile/comment-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.4-legacy.zip b/tests/ast-parsing/compile/comment-0.6.4-legacy.zip index 3db177831..db799ec35 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.4-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.5-compact.zip b/tests/ast-parsing/compile/comment-0.6.5-compact.zip index 3bd83a6d4..ac0357acb 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.5-compact.zip and b/tests/ast-parsing/compile/comment-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.5-legacy.zip b/tests/ast-parsing/compile/comment-0.6.5-legacy.zip index 28d23b5fd..129109b9e 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.5-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.6-compact.zip b/tests/ast-parsing/compile/comment-0.6.6-compact.zip index 2881d9851..205078108 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.6-compact.zip and b/tests/ast-parsing/compile/comment-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.6-legacy.zip b/tests/ast-parsing/compile/comment-0.6.6-legacy.zip index 55725c8e9..6f92070bb 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.6-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.7-compact.zip b/tests/ast-parsing/compile/comment-0.6.7-compact.zip index 722c7b5f6..ce842b89d 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.7-compact.zip and b/tests/ast-parsing/compile/comment-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.7-legacy.zip b/tests/ast-parsing/compile/comment-0.6.7-legacy.zip index 595d4e2bb..6343e0cff 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.7-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.8-compact.zip b/tests/ast-parsing/compile/comment-0.6.8-compact.zip index 2e5c8c27d..a401724b5 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.8-compact.zip and b/tests/ast-parsing/compile/comment-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.8-legacy.zip b/tests/ast-parsing/compile/comment-0.6.8-legacy.zip index e1c182c06..0fc6890e6 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.8-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.9-compact.zip b/tests/ast-parsing/compile/comment-0.6.9-compact.zip index 00fdd6845..984beee18 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.9-compact.zip and b/tests/ast-parsing/compile/comment-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.6.9-legacy.zip b/tests/ast-parsing/compile/comment-0.6.9-legacy.zip index eb1391f70..863908407 100644 Binary files a/tests/ast-parsing/compile/comment-0.6.9-legacy.zip and b/tests/ast-parsing/compile/comment-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.0-compact.zip b/tests/ast-parsing/compile/comment-0.7.0-compact.zip index c1eba08a6..3402bc4ba 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.0-compact.zip and b/tests/ast-parsing/compile/comment-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.0-legacy.zip b/tests/ast-parsing/compile/comment-0.7.0-legacy.zip index 079b07e35..dd4685f58 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.0-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.1-compact.zip b/tests/ast-parsing/compile/comment-0.7.1-compact.zip index 82b7320ed..813cbe24d 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.1-compact.zip and b/tests/ast-parsing/compile/comment-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.1-legacy.zip b/tests/ast-parsing/compile/comment-0.7.1-legacy.zip index ba622abe9..19222990e 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.1-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.2-compact.zip b/tests/ast-parsing/compile/comment-0.7.2-compact.zip index bb15b0e93..f12bbcd15 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.2-compact.zip and b/tests/ast-parsing/compile/comment-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.2-legacy.zip b/tests/ast-parsing/compile/comment-0.7.2-legacy.zip index 35af8ec16..022f9cb63 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.2-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.3-compact.zip b/tests/ast-parsing/compile/comment-0.7.3-compact.zip index 370df3052..fd691a79d 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.3-compact.zip and b/tests/ast-parsing/compile/comment-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.3-legacy.zip b/tests/ast-parsing/compile/comment-0.7.3-legacy.zip index 8ffdf6567..38bd0c88f 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.3-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.4-compact.zip b/tests/ast-parsing/compile/comment-0.7.4-compact.zip index 77c84af09..368dc98d9 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.4-compact.zip and b/tests/ast-parsing/compile/comment-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.4-legacy.zip b/tests/ast-parsing/compile/comment-0.7.4-legacy.zip index 23a477e60..35982e1ec 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.4-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.5-compact.zip b/tests/ast-parsing/compile/comment-0.7.5-compact.zip index c5e31057a..a12c88a78 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.5-compact.zip and b/tests/ast-parsing/compile/comment-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.5-legacy.zip b/tests/ast-parsing/compile/comment-0.7.5-legacy.zip index e8c73d4c0..72fc7aa22 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.5-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.6-compact.zip b/tests/ast-parsing/compile/comment-0.7.6-compact.zip index 5139df684..292304667 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.6-compact.zip and b/tests/ast-parsing/compile/comment-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.7.6-legacy.zip b/tests/ast-parsing/compile/comment-0.7.6-legacy.zip index 39d1494ea..fb654b392 100644 Binary files a/tests/ast-parsing/compile/comment-0.7.6-legacy.zip and b/tests/ast-parsing/compile/comment-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.0-compact.zip b/tests/ast-parsing/compile/comment-0.8.0-compact.zip index 27ca2bca2..48d510fd9 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.0-compact.zip and b/tests/ast-parsing/compile/comment-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.1-compact.zip b/tests/ast-parsing/compile/comment-0.8.1-compact.zip index 97c39ebf2..95dee4fce 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.1-compact.zip and b/tests/ast-parsing/compile/comment-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.2-compact.zip b/tests/ast-parsing/compile/comment-0.8.2-compact.zip index 72b58a2e1..fd1ffa4bd 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.2-compact.zip and b/tests/ast-parsing/compile/comment-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.3-compact.zip b/tests/ast-parsing/compile/comment-0.8.3-compact.zip index 3140d70ce..68759477a 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.3-compact.zip and b/tests/ast-parsing/compile/comment-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.4-compact.zip b/tests/ast-parsing/compile/comment-0.8.4-compact.zip index ab1cf9799..4c55a4227 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.4-compact.zip and b/tests/ast-parsing/compile/comment-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.5-compact.zip b/tests/ast-parsing/compile/comment-0.8.5-compact.zip index 65b11b9d9..b8125d24e 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.5-compact.zip and b/tests/ast-parsing/compile/comment-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.6-compact.zip b/tests/ast-parsing/compile/comment-0.8.6-compact.zip index 142b0c52c..20d51e0fb 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.6-compact.zip and b/tests/ast-parsing/compile/comment-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/comment-0.8.7-compact.zip b/tests/ast-parsing/compile/comment-0.8.7-compact.zip index 1af7ed93e..889c76a1b 100644 Binary files a/tests/ast-parsing/compile/comment-0.8.7-compact.zip and b/tests/ast-parsing/compile/comment-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.0-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.0-legacy.zip index 1c89c6353..4743314b9 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.0-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.1-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.1-legacy.zip index 955f7bca1..ad513d687 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.1-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.10-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.10-legacy.zip index f18305fa5..ad9949439 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.10-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.11-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.11-legacy.zip index c9e627c00..36748a9b4 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.11-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.12-compact.zip b/tests/ast-parsing/compile/conditional-0.4.12-compact.zip index 594229275..be43a56ee 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.12-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.12-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.12-legacy.zip index 7f3e3603d..8877f26c4 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.12-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.13-compact.zip b/tests/ast-parsing/compile/conditional-0.4.13-compact.zip index 2232e508e..0e9647d1c 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.13-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.13-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.13-legacy.zip index 9cdc00f2f..fd071e005 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.13-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.14-compact.zip b/tests/ast-parsing/compile/conditional-0.4.14-compact.zip index 8a6876e73..c2ed7d781 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.14-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.14-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.14-legacy.zip index 6e288327a..1bfb77a72 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.14-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.15-compact.zip b/tests/ast-parsing/compile/conditional-0.4.15-compact.zip index d89619f35..aba6b4111 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.15-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.15-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.15-legacy.zip index d8af64aaa..acd721cdc 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.15-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.16-compact.zip b/tests/ast-parsing/compile/conditional-0.4.16-compact.zip index a8e7f7a59..9a22a0167 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.16-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.16-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.16-legacy.zip index 537d91615..da7c0620d 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.16-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.17-compact.zip b/tests/ast-parsing/compile/conditional-0.4.17-compact.zip index 680e1c9da..c1406b795 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.17-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.17-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.17-legacy.zip index dcfabc0f0..9221f2f32 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.17-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.18-compact.zip b/tests/ast-parsing/compile/conditional-0.4.18-compact.zip index ca72bdc37..7fcfb8cb4 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.18-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.18-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.18-legacy.zip index 8f7b5ad91..c9e8e5ae5 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.18-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.19-compact.zip b/tests/ast-parsing/compile/conditional-0.4.19-compact.zip index 67e6f9a69..630251f78 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.19-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.19-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.19-legacy.zip index b60f1a6ab..e87b3624e 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.19-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.2-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.2-legacy.zip index 58b4a83d6..4b4e17f7a 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.2-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.20-compact.zip b/tests/ast-parsing/compile/conditional-0.4.20-compact.zip index 511f41f07..49663e3fd 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.20-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.20-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.20-legacy.zip index abf3bc455..879d87b4e 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.20-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.21-compact.zip b/tests/ast-parsing/compile/conditional-0.4.21-compact.zip index be05e4f49..6ddb939ad 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.21-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.21-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.21-legacy.zip index 8668977f4..5c10a12c6 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.21-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.22-compact.zip b/tests/ast-parsing/compile/conditional-0.4.22-compact.zip index 8474e95b0..8f90a3704 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.22-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.22-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.22-legacy.zip index 94e447a7f..a91db33b2 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.22-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.23-compact.zip b/tests/ast-parsing/compile/conditional-0.4.23-compact.zip index 80509794e..f4de15c96 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.23-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.23-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.23-legacy.zip index 530f8ea07..57b57d400 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.23-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.24-compact.zip b/tests/ast-parsing/compile/conditional-0.4.24-compact.zip index 7f4179d83..02c66b322 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.24-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.24-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.24-legacy.zip index efb735b51..271cd49b2 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.24-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.25-compact.zip b/tests/ast-parsing/compile/conditional-0.4.25-compact.zip index 02927ba5b..627d32c96 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.25-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.25-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.25-legacy.zip index 506936c30..9b828ba50 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.25-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.26-compact.zip b/tests/ast-parsing/compile/conditional-0.4.26-compact.zip index 1ca9f828b..09b7fceed 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.26-compact.zip and b/tests/ast-parsing/compile/conditional-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.26-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.26-legacy.zip index 1e98b9085..f7f74635a 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.26-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.3-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.3-legacy.zip index d3770e366..b94a22320 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.3-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.4-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.4-legacy.zip index 0dce8265c..d450da88a 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.4-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.5-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.5-legacy.zip index e8d84222a..0eca3439a 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.5-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.6-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.6-legacy.zip index a8e16225c..f729cce5f 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.6-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.7-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.7-legacy.zip index 5dc7e8429..9235e87ea 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.7-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.8-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.8-legacy.zip index f4aca3df6..227ee5d09 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.8-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.4.9-legacy.zip b/tests/ast-parsing/compile/conditional-0.4.9-legacy.zip index 16b039b9d..e75c99d4b 100644 Binary files a/tests/ast-parsing/compile/conditional-0.4.9-legacy.zip and b/tests/ast-parsing/compile/conditional-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.0-compact.zip b/tests/ast-parsing/compile/conditional-0.5.0-compact.zip index 1f08d0a78..cea348212 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.0-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.0-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.0-legacy.zip index dcdd03c30..f861cfa34 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.0-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.1-compact.zip b/tests/ast-parsing/compile/conditional-0.5.1-compact.zip index e3197c351..9e0e0b8ab 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.1-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.1-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.1-legacy.zip index 4145ade8c..42ac45983 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.1-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.10-compact.zip b/tests/ast-parsing/compile/conditional-0.5.10-compact.zip index b850865b5..be3040e93 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.10-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.10-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.10-legacy.zip index 89949219d..c9f77e552 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.10-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.11-compact.zip b/tests/ast-parsing/compile/conditional-0.5.11-compact.zip index 19c768f3a..f76c6ae86 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.11-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.11-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.11-legacy.zip index 965f97856..d1589797e 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.11-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.12-compact.zip b/tests/ast-parsing/compile/conditional-0.5.12-compact.zip index c9d8a3501..687d2efba 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.12-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.12-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.12-legacy.zip index 29013bbf8..4d32e2a73 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.12-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.13-compact.zip b/tests/ast-parsing/compile/conditional-0.5.13-compact.zip index 314d42cf2..c6afee40f 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.13-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.13-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.13-legacy.zip index 51100f58e..bd2f40940 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.13-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.14-compact.zip b/tests/ast-parsing/compile/conditional-0.5.14-compact.zip index 0d68a71b4..9d7d6c535 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.14-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.14-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.14-legacy.zip index 6c602b339..1d3f27485 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.14-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.15-compact.zip b/tests/ast-parsing/compile/conditional-0.5.15-compact.zip index 0ae1f1ff6..dbcfb8ef8 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.15-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.15-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.15-legacy.zip index 920e59c55..753e00f11 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.15-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.16-compact.zip b/tests/ast-parsing/compile/conditional-0.5.16-compact.zip index 8fd144958..b9f2245b1 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.16-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.16-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.16-legacy.zip index eb01babf0..d96ba4b68 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.16-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.17-compact.zip b/tests/ast-parsing/compile/conditional-0.5.17-compact.zip index 31e73093a..0c42059f2 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.17-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.17-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.17-legacy.zip index 1bcc68def..e7f432727 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.17-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.2-compact.zip b/tests/ast-parsing/compile/conditional-0.5.2-compact.zip index 0b6e76adb..ccfc26639 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.2-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.2-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.2-legacy.zip index ebd9c5ffa..5d273c57a 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.2-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.3-compact.zip b/tests/ast-parsing/compile/conditional-0.5.3-compact.zip index dee8b7dfc..c109d5d7f 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.3-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.3-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.3-legacy.zip index 95fce71d1..610f227ad 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.3-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.4-compact.zip b/tests/ast-parsing/compile/conditional-0.5.4-compact.zip index 914b62e1c..72147b0a1 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.4-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.4-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.4-legacy.zip index bcfc4b065..e3130936c 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.4-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.5-compact.zip b/tests/ast-parsing/compile/conditional-0.5.5-compact.zip index b706b2d90..022a15fdb 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.5-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.5-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.5-legacy.zip index 18cde373a..247000bc8 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.5-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.6-compact.zip b/tests/ast-parsing/compile/conditional-0.5.6-compact.zip index c1580fdb4..a01214b85 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.6-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.6-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.6-legacy.zip index 1f3fc0e99..747850a04 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.6-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.7-compact.zip b/tests/ast-parsing/compile/conditional-0.5.7-compact.zip index 3e3f5de84..fda8b8f60 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.7-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.7-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.7-legacy.zip index 4157a3034..ba9ad9511 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.7-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.8-compact.zip b/tests/ast-parsing/compile/conditional-0.5.8-compact.zip index df1b7d181..5dfd67c45 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.8-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.8-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.8-legacy.zip index 75c41335f..0cb86b3aa 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.8-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.9-compact.zip b/tests/ast-parsing/compile/conditional-0.5.9-compact.zip index c03d7f704..adbb1ab25 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.9-compact.zip and b/tests/ast-parsing/compile/conditional-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.5.9-legacy.zip b/tests/ast-parsing/compile/conditional-0.5.9-legacy.zip index fcbd769ca..3de627fcf 100644 Binary files a/tests/ast-parsing/compile/conditional-0.5.9-legacy.zip and b/tests/ast-parsing/compile/conditional-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.0-compact.zip b/tests/ast-parsing/compile/conditional-0.6.0-compact.zip index a8f877496..ab9645050 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.0-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.0-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.0-legacy.zip index 86a871e99..54db04309 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.0-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.1-compact.zip b/tests/ast-parsing/compile/conditional-0.6.1-compact.zip index 7bd4efaac..7e48e5ae8 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.1-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.1-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.1-legacy.zip index 066852c0a..76e0d9a13 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.1-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.10-compact.zip b/tests/ast-parsing/compile/conditional-0.6.10-compact.zip index a27177f9d..6dbd537fb 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.10-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.10-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.10-legacy.zip index d350e4bab..de5b14543 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.10-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.11-compact.zip b/tests/ast-parsing/compile/conditional-0.6.11-compact.zip index b03c2835e..401ec2089 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.11-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.11-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.11-legacy.zip index b2801df83..039d1f43c 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.11-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.12-compact.zip b/tests/ast-parsing/compile/conditional-0.6.12-compact.zip index 8694d653d..5cb182760 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.12-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.12-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.12-legacy.zip index 9c6a24258..3632397c6 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.12-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.2-compact.zip b/tests/ast-parsing/compile/conditional-0.6.2-compact.zip index b4d4f1dd4..32e6ce8ab 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.2-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.2-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.2-legacy.zip index 2cd06fdd6..ffd279b5e 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.2-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.3-compact.zip b/tests/ast-parsing/compile/conditional-0.6.3-compact.zip index f76138a3c..fb05241e7 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.3-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.3-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.3-legacy.zip index cec84fbad..fa570bc04 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.3-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.4-compact.zip b/tests/ast-parsing/compile/conditional-0.6.4-compact.zip index 88d54ca1f..8e21424a4 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.4-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.4-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.4-legacy.zip index 58d33f714..63d0e9cab 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.4-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.5-compact.zip b/tests/ast-parsing/compile/conditional-0.6.5-compact.zip index 3dfe1093a..f99aea2c1 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.5-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.5-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.5-legacy.zip index 428817ed5..d7082e6dd 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.5-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.6-compact.zip b/tests/ast-parsing/compile/conditional-0.6.6-compact.zip index 632ae5f1f..53384ab25 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.6-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.6-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.6-legacy.zip index 27fd966c3..48e4558a0 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.6-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.7-compact.zip b/tests/ast-parsing/compile/conditional-0.6.7-compact.zip index 7e347bd1d..638699546 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.7-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.7-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.7-legacy.zip index 9f4d9cf69..53b39039b 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.7-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.8-compact.zip b/tests/ast-parsing/compile/conditional-0.6.8-compact.zip index 931ebb6b5..e14ea7ce1 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.8-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.8-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.8-legacy.zip index 236729a3b..12b59375e 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.8-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.9-compact.zip b/tests/ast-parsing/compile/conditional-0.6.9-compact.zip index 83ab052e9..56166df77 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.9-compact.zip and b/tests/ast-parsing/compile/conditional-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.6.9-legacy.zip b/tests/ast-parsing/compile/conditional-0.6.9-legacy.zip index 22ad7faee..56fd023d7 100644 Binary files a/tests/ast-parsing/compile/conditional-0.6.9-legacy.zip and b/tests/ast-parsing/compile/conditional-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.0-compact.zip b/tests/ast-parsing/compile/conditional-0.7.0-compact.zip index 20fda2bc8..f76dd3702 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.0-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.0-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.0-legacy.zip index 07a7c2ff4..9a06c1502 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.0-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.1-compact.zip b/tests/ast-parsing/compile/conditional-0.7.1-compact.zip index b3d19c3ff..ee849b60d 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.1-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.1-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.1-legacy.zip index 9791522b0..12761adf6 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.1-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.2-compact.zip b/tests/ast-parsing/compile/conditional-0.7.2-compact.zip index 29e3da1e0..d44d6f9d5 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.2-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.2-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.2-legacy.zip index dc9fb78e5..25066b9d6 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.2-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.3-compact.zip b/tests/ast-parsing/compile/conditional-0.7.3-compact.zip index 6481250b1..f81b92ccc 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.3-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.3-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.3-legacy.zip index 6aec283cd..636400898 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.3-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.4-compact.zip b/tests/ast-parsing/compile/conditional-0.7.4-compact.zip index b792f388e..9196eba66 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.4-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.4-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.4-legacy.zip index 5787c4e88..e32bc4cea 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.4-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.5-compact.zip b/tests/ast-parsing/compile/conditional-0.7.5-compact.zip index 3869b3535..e9b364b72 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.5-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.5-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.5-legacy.zip index 390ebf963..3f42eb082 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.5-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.6-compact.zip b/tests/ast-parsing/compile/conditional-0.7.6-compact.zip index edbbb4c02..267ebb931 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.6-compact.zip and b/tests/ast-parsing/compile/conditional-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.7.6-legacy.zip b/tests/ast-parsing/compile/conditional-0.7.6-legacy.zip index 06cb05513..27fad243c 100644 Binary files a/tests/ast-parsing/compile/conditional-0.7.6-legacy.zip and b/tests/ast-parsing/compile/conditional-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.0-compact.zip b/tests/ast-parsing/compile/conditional-0.8.0-compact.zip index 2be54a4e2..ae4aee6c3 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.0-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.1-compact.zip b/tests/ast-parsing/compile/conditional-0.8.1-compact.zip index bd05b1d76..590bde355 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.1-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.2-compact.zip b/tests/ast-parsing/compile/conditional-0.8.2-compact.zip index a864c04cc..679cb8ce8 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.2-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.3-compact.zip b/tests/ast-parsing/compile/conditional-0.8.3-compact.zip index 0da789acd..cca69928a 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.3-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.4-compact.zip b/tests/ast-parsing/compile/conditional-0.8.4-compact.zip index c01f6444d..87f46c9f4 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.4-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.5-compact.zip b/tests/ast-parsing/compile/conditional-0.8.5-compact.zip index 130c534bd..d0826c400 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.5-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.6-compact.zip b/tests/ast-parsing/compile/conditional-0.8.6-compact.zip index 82daa4b17..52bc6542c 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.6-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/conditional-0.8.7-compact.zip b/tests/ast-parsing/compile/conditional-0.8.7-compact.zip index e0511db8e..ae8c33e62 100644 Binary files a/tests/ast-parsing/compile/conditional-0.8.7-compact.zip and b/tests/ast-parsing/compile/conditional-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.0-legacy.zip b/tests/ast-parsing/compile/continue-0.4.0-legacy.zip index d1d7cce06..fca7b1697 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.0-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.1-legacy.zip b/tests/ast-parsing/compile/continue-0.4.1-legacy.zip index f60f0f079..c991688a6 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.1-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.10-legacy.zip b/tests/ast-parsing/compile/continue-0.4.10-legacy.zip index 48bb4ba03..f0b134fc4 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.10-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.11-legacy.zip b/tests/ast-parsing/compile/continue-0.4.11-legacy.zip index 1eb656d4a..4c0f159c9 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.11-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.12-compact.zip b/tests/ast-parsing/compile/continue-0.4.12-compact.zip index d2d997125..5dfb1516d 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.12-compact.zip and b/tests/ast-parsing/compile/continue-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.12-legacy.zip b/tests/ast-parsing/compile/continue-0.4.12-legacy.zip index 34e807569..767365257 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.12-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.13-compact.zip b/tests/ast-parsing/compile/continue-0.4.13-compact.zip index 3f08e4926..a483e690e 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.13-compact.zip and b/tests/ast-parsing/compile/continue-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.13-legacy.zip b/tests/ast-parsing/compile/continue-0.4.13-legacy.zip index 6efd8379a..d2d733a1c 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.13-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.14-compact.zip b/tests/ast-parsing/compile/continue-0.4.14-compact.zip index f93c6485d..72346b441 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.14-compact.zip and b/tests/ast-parsing/compile/continue-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.14-legacy.zip b/tests/ast-parsing/compile/continue-0.4.14-legacy.zip index 2eb1277c6..a791a09d9 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.14-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.15-compact.zip b/tests/ast-parsing/compile/continue-0.4.15-compact.zip index 35ea4fd97..a31fe4fda 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.15-compact.zip and b/tests/ast-parsing/compile/continue-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.15-legacy.zip b/tests/ast-parsing/compile/continue-0.4.15-legacy.zip index 896b4e2b6..36b22de68 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.15-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.16-compact.zip b/tests/ast-parsing/compile/continue-0.4.16-compact.zip index cff9a1548..7638d76fe 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.16-compact.zip and b/tests/ast-parsing/compile/continue-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.16-legacy.zip b/tests/ast-parsing/compile/continue-0.4.16-legacy.zip index e28289cf7..efd55886c 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.16-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.17-compact.zip b/tests/ast-parsing/compile/continue-0.4.17-compact.zip index f681efc13..cbcc5ae71 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.17-compact.zip and b/tests/ast-parsing/compile/continue-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.17-legacy.zip b/tests/ast-parsing/compile/continue-0.4.17-legacy.zip index 0c06051bb..0a446a111 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.17-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.18-compact.zip b/tests/ast-parsing/compile/continue-0.4.18-compact.zip index ef0041dc6..85e0cd14d 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.18-compact.zip and b/tests/ast-parsing/compile/continue-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.18-legacy.zip b/tests/ast-parsing/compile/continue-0.4.18-legacy.zip index 3c05af98f..8f0dbe777 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.18-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.19-compact.zip b/tests/ast-parsing/compile/continue-0.4.19-compact.zip index e564d1523..967d6a09c 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.19-compact.zip and b/tests/ast-parsing/compile/continue-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.19-legacy.zip b/tests/ast-parsing/compile/continue-0.4.19-legacy.zip index 0bc39c265..9c764b4f5 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.19-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.2-legacy.zip b/tests/ast-parsing/compile/continue-0.4.2-legacy.zip index 7236455b3..3afc5aaf7 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.2-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.20-compact.zip b/tests/ast-parsing/compile/continue-0.4.20-compact.zip index 7f7721b35..e68e8d933 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.20-compact.zip and b/tests/ast-parsing/compile/continue-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.20-legacy.zip b/tests/ast-parsing/compile/continue-0.4.20-legacy.zip index 7ffe48101..1e4ea3436 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.20-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.21-compact.zip b/tests/ast-parsing/compile/continue-0.4.21-compact.zip index 137f64ade..0fb10d320 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.21-compact.zip and b/tests/ast-parsing/compile/continue-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.21-legacy.zip b/tests/ast-parsing/compile/continue-0.4.21-legacy.zip index bb3035528..3d019974c 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.21-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.22-compact.zip b/tests/ast-parsing/compile/continue-0.4.22-compact.zip index 9abb50276..7bc5bc049 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.22-compact.zip and b/tests/ast-parsing/compile/continue-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.22-legacy.zip b/tests/ast-parsing/compile/continue-0.4.22-legacy.zip index 0ee667dc3..879e28c2f 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.22-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.23-compact.zip b/tests/ast-parsing/compile/continue-0.4.23-compact.zip index 88bfac1fc..11c9adb7e 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.23-compact.zip and b/tests/ast-parsing/compile/continue-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.23-legacy.zip b/tests/ast-parsing/compile/continue-0.4.23-legacy.zip index 8ab37e628..e3d0d3cef 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.23-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.24-compact.zip b/tests/ast-parsing/compile/continue-0.4.24-compact.zip index ba5564d6b..04d9240f8 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.24-compact.zip and b/tests/ast-parsing/compile/continue-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.24-legacy.zip b/tests/ast-parsing/compile/continue-0.4.24-legacy.zip index 33dbfaf14..7ae85d544 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.24-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.25-compact.zip b/tests/ast-parsing/compile/continue-0.4.25-compact.zip index 7d8a28543..df99254a4 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.25-compact.zip and b/tests/ast-parsing/compile/continue-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.25-legacy.zip b/tests/ast-parsing/compile/continue-0.4.25-legacy.zip index 3d8cfd9d6..5d7e46f89 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.25-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.26-compact.zip b/tests/ast-parsing/compile/continue-0.4.26-compact.zip index 37d7149ed..b0d3cea58 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.26-compact.zip and b/tests/ast-parsing/compile/continue-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.26-legacy.zip b/tests/ast-parsing/compile/continue-0.4.26-legacy.zip index ecbba6dfd..93649f867 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.26-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.3-legacy.zip b/tests/ast-parsing/compile/continue-0.4.3-legacy.zip index 800284774..b6ec11467 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.3-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.4-legacy.zip b/tests/ast-parsing/compile/continue-0.4.4-legacy.zip index 31dcf6c44..17293a32d 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.4-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.5-legacy.zip b/tests/ast-parsing/compile/continue-0.4.5-legacy.zip index 6edc5f677..27cd7d02a 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.5-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.6-legacy.zip b/tests/ast-parsing/compile/continue-0.4.6-legacy.zip index e9477d88d..49261d729 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.6-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.7-legacy.zip b/tests/ast-parsing/compile/continue-0.4.7-legacy.zip index 72d2f7b9d..277b1a916 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.7-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.8-legacy.zip b/tests/ast-parsing/compile/continue-0.4.8-legacy.zip index 2e5bb7fe1..0f70603a1 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.8-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.4.9-legacy.zip b/tests/ast-parsing/compile/continue-0.4.9-legacy.zip index fc77b1b9e..04421d5d0 100644 Binary files a/tests/ast-parsing/compile/continue-0.4.9-legacy.zip and b/tests/ast-parsing/compile/continue-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.0-compact.zip b/tests/ast-parsing/compile/continue-0.5.0-compact.zip index 85f624e6e..d13cacb43 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.0-compact.zip and b/tests/ast-parsing/compile/continue-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.0-legacy.zip b/tests/ast-parsing/compile/continue-0.5.0-legacy.zip index bb1cfad33..d53ec06d4 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.0-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.1-compact.zip b/tests/ast-parsing/compile/continue-0.5.1-compact.zip index ffe24fa55..dd29f30dd 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.1-compact.zip and b/tests/ast-parsing/compile/continue-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.1-legacy.zip b/tests/ast-parsing/compile/continue-0.5.1-legacy.zip index a54f40c43..d9ed3a8a8 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.1-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.10-compact.zip b/tests/ast-parsing/compile/continue-0.5.10-compact.zip index a58695b09..49818151e 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.10-compact.zip and b/tests/ast-parsing/compile/continue-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.10-legacy.zip b/tests/ast-parsing/compile/continue-0.5.10-legacy.zip index bad7fe30a..0b5aba017 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.10-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.11-compact.zip b/tests/ast-parsing/compile/continue-0.5.11-compact.zip index 8e57b8f34..c5443d0bd 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.11-compact.zip and b/tests/ast-parsing/compile/continue-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.11-legacy.zip b/tests/ast-parsing/compile/continue-0.5.11-legacy.zip index d05099e39..74db683c1 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.11-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.12-compact.zip b/tests/ast-parsing/compile/continue-0.5.12-compact.zip index 87a0d9d12..07994f0cd 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.12-compact.zip and b/tests/ast-parsing/compile/continue-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.12-legacy.zip b/tests/ast-parsing/compile/continue-0.5.12-legacy.zip index d60f75afd..2d5eced67 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.12-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.13-compact.zip b/tests/ast-parsing/compile/continue-0.5.13-compact.zip index 4d93c4867..90c10bbcf 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.13-compact.zip and b/tests/ast-parsing/compile/continue-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.13-legacy.zip b/tests/ast-parsing/compile/continue-0.5.13-legacy.zip index 48d9c5322..c7c20334e 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.13-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.14-compact.zip b/tests/ast-parsing/compile/continue-0.5.14-compact.zip index 1f9de096b..54a0f9526 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.14-compact.zip and b/tests/ast-parsing/compile/continue-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.14-legacy.zip b/tests/ast-parsing/compile/continue-0.5.14-legacy.zip index 0361b91be..f4b9d3d90 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.14-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.15-compact.zip b/tests/ast-parsing/compile/continue-0.5.15-compact.zip index 6f0120d43..10f4156a7 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.15-compact.zip and b/tests/ast-parsing/compile/continue-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.15-legacy.zip b/tests/ast-parsing/compile/continue-0.5.15-legacy.zip index 76e51ea66..a48780f0f 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.15-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.16-compact.zip b/tests/ast-parsing/compile/continue-0.5.16-compact.zip index 0e0de1b95..9a73b50f5 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.16-compact.zip and b/tests/ast-parsing/compile/continue-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.16-legacy.zip b/tests/ast-parsing/compile/continue-0.5.16-legacy.zip index 6a9a868cb..fe021f266 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.16-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.17-compact.zip b/tests/ast-parsing/compile/continue-0.5.17-compact.zip index 4e61200dc..25af79677 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.17-compact.zip and b/tests/ast-parsing/compile/continue-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.17-legacy.zip b/tests/ast-parsing/compile/continue-0.5.17-legacy.zip index 877b2610b..c7bfe64b3 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.17-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.2-compact.zip b/tests/ast-parsing/compile/continue-0.5.2-compact.zip index 723cc5580..7934ded06 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.2-compact.zip and b/tests/ast-parsing/compile/continue-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.2-legacy.zip b/tests/ast-parsing/compile/continue-0.5.2-legacy.zip index 5ac560d1f..254b215a7 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.2-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.3-compact.zip b/tests/ast-parsing/compile/continue-0.5.3-compact.zip index 9c572e847..050d28f35 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.3-compact.zip and b/tests/ast-parsing/compile/continue-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.3-legacy.zip b/tests/ast-parsing/compile/continue-0.5.3-legacy.zip index d59c14c9e..0127b29f1 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.3-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.4-compact.zip b/tests/ast-parsing/compile/continue-0.5.4-compact.zip index 5fd9e2a4e..72aa81980 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.4-compact.zip and b/tests/ast-parsing/compile/continue-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.4-legacy.zip b/tests/ast-parsing/compile/continue-0.5.4-legacy.zip index 9af392714..6212e9c72 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.4-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.5-compact.zip b/tests/ast-parsing/compile/continue-0.5.5-compact.zip index df6bff595..0030d7972 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.5-compact.zip and b/tests/ast-parsing/compile/continue-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.5-legacy.zip b/tests/ast-parsing/compile/continue-0.5.5-legacy.zip index 74384708d..fb6955f34 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.5-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.6-compact.zip b/tests/ast-parsing/compile/continue-0.5.6-compact.zip index 7151e60f7..a3d54a6eb 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.6-compact.zip and b/tests/ast-parsing/compile/continue-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.6-legacy.zip b/tests/ast-parsing/compile/continue-0.5.6-legacy.zip index 35ad05fab..34fc43447 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.6-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.7-compact.zip b/tests/ast-parsing/compile/continue-0.5.7-compact.zip index f1d6c86ad..9d07eb85b 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.7-compact.zip and b/tests/ast-parsing/compile/continue-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.7-legacy.zip b/tests/ast-parsing/compile/continue-0.5.7-legacy.zip index 69d7424bc..8c8fae36f 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.7-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.8-compact.zip b/tests/ast-parsing/compile/continue-0.5.8-compact.zip index 1c070915b..18a1ab9d5 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.8-compact.zip and b/tests/ast-parsing/compile/continue-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.8-legacy.zip b/tests/ast-parsing/compile/continue-0.5.8-legacy.zip index 75a896f44..6dd4230aa 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.8-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.9-compact.zip b/tests/ast-parsing/compile/continue-0.5.9-compact.zip index b2b647bd9..5cb90830c 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.9-compact.zip and b/tests/ast-parsing/compile/continue-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.5.9-legacy.zip b/tests/ast-parsing/compile/continue-0.5.9-legacy.zip index 92877fdc3..72140f376 100644 Binary files a/tests/ast-parsing/compile/continue-0.5.9-legacy.zip and b/tests/ast-parsing/compile/continue-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.0-compact.zip b/tests/ast-parsing/compile/continue-0.6.0-compact.zip index b46cac269..77f73413d 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.0-compact.zip and b/tests/ast-parsing/compile/continue-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.0-legacy.zip b/tests/ast-parsing/compile/continue-0.6.0-legacy.zip index 183c09aa5..68c925c4f 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.0-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.1-compact.zip b/tests/ast-parsing/compile/continue-0.6.1-compact.zip index 22428e9fd..56df46505 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.1-compact.zip and b/tests/ast-parsing/compile/continue-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.1-legacy.zip b/tests/ast-parsing/compile/continue-0.6.1-legacy.zip index 2b43d2d32..54c3821ec 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.1-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.10-compact.zip b/tests/ast-parsing/compile/continue-0.6.10-compact.zip index a1f8d53a3..82b7d193b 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.10-compact.zip and b/tests/ast-parsing/compile/continue-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.10-legacy.zip b/tests/ast-parsing/compile/continue-0.6.10-legacy.zip index f18db18de..10e625c63 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.10-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.11-compact.zip b/tests/ast-parsing/compile/continue-0.6.11-compact.zip index fa24a5702..8fa1f4e7d 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.11-compact.zip and b/tests/ast-parsing/compile/continue-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.11-legacy.zip b/tests/ast-parsing/compile/continue-0.6.11-legacy.zip index 355cb68b9..5b66d2abd 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.11-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.12-compact.zip b/tests/ast-parsing/compile/continue-0.6.12-compact.zip index ba6dd1c99..fa60f9498 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.12-compact.zip and b/tests/ast-parsing/compile/continue-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.12-legacy.zip b/tests/ast-parsing/compile/continue-0.6.12-legacy.zip index 92d1bbf9f..71298dabd 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.12-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.2-compact.zip b/tests/ast-parsing/compile/continue-0.6.2-compact.zip index 4de50efd1..cb49d0fbc 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.2-compact.zip and b/tests/ast-parsing/compile/continue-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.2-legacy.zip b/tests/ast-parsing/compile/continue-0.6.2-legacy.zip index 55f04faf6..64995793a 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.2-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.3-compact.zip b/tests/ast-parsing/compile/continue-0.6.3-compact.zip index 9db6bdad4..95b031a64 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.3-compact.zip and b/tests/ast-parsing/compile/continue-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.3-legacy.zip b/tests/ast-parsing/compile/continue-0.6.3-legacy.zip index 309fbeee7..33ba05f63 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.3-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.4-compact.zip b/tests/ast-parsing/compile/continue-0.6.4-compact.zip index 8d0eccbe7..8dfc84f88 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.4-compact.zip and b/tests/ast-parsing/compile/continue-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.4-legacy.zip b/tests/ast-parsing/compile/continue-0.6.4-legacy.zip index a5fa297f5..21bd36b59 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.4-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.5-compact.zip b/tests/ast-parsing/compile/continue-0.6.5-compact.zip index ca9891349..6989d39fe 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.5-compact.zip and b/tests/ast-parsing/compile/continue-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.5-legacy.zip b/tests/ast-parsing/compile/continue-0.6.5-legacy.zip index e4a5e623f..a50991e6f 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.5-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.6-compact.zip b/tests/ast-parsing/compile/continue-0.6.6-compact.zip index 8f4e72e8a..ae858fa6a 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.6-compact.zip and b/tests/ast-parsing/compile/continue-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.6-legacy.zip b/tests/ast-parsing/compile/continue-0.6.6-legacy.zip index 212acc077..d530ed2f0 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.6-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.7-compact.zip b/tests/ast-parsing/compile/continue-0.6.7-compact.zip index c2303f4ab..05c7150b3 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.7-compact.zip and b/tests/ast-parsing/compile/continue-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.7-legacy.zip b/tests/ast-parsing/compile/continue-0.6.7-legacy.zip index 7e10b06b4..e4d084d5f 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.7-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.8-compact.zip b/tests/ast-parsing/compile/continue-0.6.8-compact.zip index 0bcac6c81..cdf56c4a3 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.8-compact.zip and b/tests/ast-parsing/compile/continue-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.8-legacy.zip b/tests/ast-parsing/compile/continue-0.6.8-legacy.zip index cad8716e4..27260311e 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.8-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.9-compact.zip b/tests/ast-parsing/compile/continue-0.6.9-compact.zip index 2996d90d0..c09d9b839 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.9-compact.zip and b/tests/ast-parsing/compile/continue-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.6.9-legacy.zip b/tests/ast-parsing/compile/continue-0.6.9-legacy.zip index ac6d8dd7a..30dc4b4ae 100644 Binary files a/tests/ast-parsing/compile/continue-0.6.9-legacy.zip and b/tests/ast-parsing/compile/continue-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.0-compact.zip b/tests/ast-parsing/compile/continue-0.7.0-compact.zip index 3d5c77fd6..b8867f687 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.0-compact.zip and b/tests/ast-parsing/compile/continue-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.0-legacy.zip b/tests/ast-parsing/compile/continue-0.7.0-legacy.zip index 17fa4f7f9..fef1e0383 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.0-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.1-compact.zip b/tests/ast-parsing/compile/continue-0.7.1-compact.zip index 29f592fde..261f6156a 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.1-compact.zip and b/tests/ast-parsing/compile/continue-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.1-legacy.zip b/tests/ast-parsing/compile/continue-0.7.1-legacy.zip index b86a3b185..0c0dc5580 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.1-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.2-compact.zip b/tests/ast-parsing/compile/continue-0.7.2-compact.zip index c64f67545..a6fe88b50 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.2-compact.zip and b/tests/ast-parsing/compile/continue-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.2-legacy.zip b/tests/ast-parsing/compile/continue-0.7.2-legacy.zip index 4063db7be..ba420f02e 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.2-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.3-compact.zip b/tests/ast-parsing/compile/continue-0.7.3-compact.zip index 22f50824a..01af361c3 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.3-compact.zip and b/tests/ast-parsing/compile/continue-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.3-legacy.zip b/tests/ast-parsing/compile/continue-0.7.3-legacy.zip index bd113ae8b..828177a9a 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.3-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.4-compact.zip b/tests/ast-parsing/compile/continue-0.7.4-compact.zip index 6245437da..e64e9bc7b 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.4-compact.zip and b/tests/ast-parsing/compile/continue-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.4-legacy.zip b/tests/ast-parsing/compile/continue-0.7.4-legacy.zip index c0aae85af..004572680 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.4-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.5-compact.zip b/tests/ast-parsing/compile/continue-0.7.5-compact.zip index 79245a8c8..8e73f466f 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.5-compact.zip and b/tests/ast-parsing/compile/continue-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.5-legacy.zip b/tests/ast-parsing/compile/continue-0.7.5-legacy.zip index eb6f3a217..10d37abd6 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.5-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.6-compact.zip b/tests/ast-parsing/compile/continue-0.7.6-compact.zip index aa9bb4148..b6a961105 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.6-compact.zip and b/tests/ast-parsing/compile/continue-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.7.6-legacy.zip b/tests/ast-parsing/compile/continue-0.7.6-legacy.zip index 3d3b3c1ff..3c80cfcde 100644 Binary files a/tests/ast-parsing/compile/continue-0.7.6-legacy.zip and b/tests/ast-parsing/compile/continue-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.0-compact.zip b/tests/ast-parsing/compile/continue-0.8.0-compact.zip index 827be8a0e..739e22a40 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.0-compact.zip and b/tests/ast-parsing/compile/continue-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.1-compact.zip b/tests/ast-parsing/compile/continue-0.8.1-compact.zip index 8f1d43b20..ab5c749b8 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.1-compact.zip and b/tests/ast-parsing/compile/continue-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.2-compact.zip b/tests/ast-parsing/compile/continue-0.8.2-compact.zip index 92bd7f69b..2b7fe9c2b 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.2-compact.zip and b/tests/ast-parsing/compile/continue-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.3-compact.zip b/tests/ast-parsing/compile/continue-0.8.3-compact.zip index f5711baa5..00f3d8d3c 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.3-compact.zip and b/tests/ast-parsing/compile/continue-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.4-compact.zip b/tests/ast-parsing/compile/continue-0.8.4-compact.zip index f8dcbc208..4f1e9f38c 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.4-compact.zip and b/tests/ast-parsing/compile/continue-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.5-compact.zip b/tests/ast-parsing/compile/continue-0.8.5-compact.zip index e5d649363..fe13cd176 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.5-compact.zip and b/tests/ast-parsing/compile/continue-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.6-compact.zip b/tests/ast-parsing/compile/continue-0.8.6-compact.zip index 62c52e49b..716468cfe 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.6-compact.zip and b/tests/ast-parsing/compile/continue-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/continue-0.8.7-compact.zip b/tests/ast-parsing/compile/continue-0.8.7-compact.zip index 612651db1..3869767f8 100644 Binary files a/tests/ast-parsing/compile/continue-0.8.7-compact.zip and b/tests/ast-parsing/compile/continue-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.0-legacy.zip b/tests/ast-parsing/compile/contract-0.4.0-legacy.zip index db0dbf062..8b8fa9cc8 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.0-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.1-legacy.zip b/tests/ast-parsing/compile/contract-0.4.1-legacy.zip index 4a4038794..cf320a6d6 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.1-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.10-legacy.zip b/tests/ast-parsing/compile/contract-0.4.10-legacy.zip index 9c8f9de30..106c5a8c5 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.10-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.11-legacy.zip b/tests/ast-parsing/compile/contract-0.4.11-legacy.zip index f35f6b313..4ac6f1371 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.11-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.12-compact.zip b/tests/ast-parsing/compile/contract-0.4.12-compact.zip index a0f1493f3..2daaf861a 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.12-compact.zip and b/tests/ast-parsing/compile/contract-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.12-legacy.zip b/tests/ast-parsing/compile/contract-0.4.12-legacy.zip index d9d388e18..2f62fe5b0 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.12-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.13-compact.zip b/tests/ast-parsing/compile/contract-0.4.13-compact.zip index 7a9ddb438..609775bef 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.13-compact.zip and b/tests/ast-parsing/compile/contract-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.13-legacy.zip b/tests/ast-parsing/compile/contract-0.4.13-legacy.zip index 5f6179d68..c82c47477 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.13-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.14-compact.zip b/tests/ast-parsing/compile/contract-0.4.14-compact.zip index 4363614de..757e0b0be 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.14-compact.zip and b/tests/ast-parsing/compile/contract-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.14-legacy.zip b/tests/ast-parsing/compile/contract-0.4.14-legacy.zip index 2edeb52e3..812206477 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.14-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.15-compact.zip b/tests/ast-parsing/compile/contract-0.4.15-compact.zip index cc46708c3..5c9a1c698 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.15-compact.zip and b/tests/ast-parsing/compile/contract-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.15-legacy.zip b/tests/ast-parsing/compile/contract-0.4.15-legacy.zip index 93d33a8d4..51c7cefaa 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.15-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.16-compact.zip b/tests/ast-parsing/compile/contract-0.4.16-compact.zip index 33de177bf..71ef5c71d 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.16-compact.zip and b/tests/ast-parsing/compile/contract-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.16-legacy.zip b/tests/ast-parsing/compile/contract-0.4.16-legacy.zip index 917730dcf..44a921e5f 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.16-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.17-compact.zip b/tests/ast-parsing/compile/contract-0.4.17-compact.zip index 9a35bc305..914cbe001 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.17-compact.zip and b/tests/ast-parsing/compile/contract-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.17-legacy.zip b/tests/ast-parsing/compile/contract-0.4.17-legacy.zip index 08ec4e28f..b5219727b 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.17-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.18-compact.zip b/tests/ast-parsing/compile/contract-0.4.18-compact.zip index e892020ca..a1ea817d3 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.18-compact.zip and b/tests/ast-parsing/compile/contract-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.18-legacy.zip b/tests/ast-parsing/compile/contract-0.4.18-legacy.zip index d6419d96b..b6257d32a 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.18-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.19-compact.zip b/tests/ast-parsing/compile/contract-0.4.19-compact.zip index 08f868dd1..c718f0f9d 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.19-compact.zip and b/tests/ast-parsing/compile/contract-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.19-legacy.zip b/tests/ast-parsing/compile/contract-0.4.19-legacy.zip index f903982d3..d23ee2231 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.19-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.2-legacy.zip b/tests/ast-parsing/compile/contract-0.4.2-legacy.zip index f7e26f6bf..edfd30e3c 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.2-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.20-compact.zip b/tests/ast-parsing/compile/contract-0.4.20-compact.zip index eee9d0fe4..93b4fcbc3 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.20-compact.zip and b/tests/ast-parsing/compile/contract-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.20-legacy.zip b/tests/ast-parsing/compile/contract-0.4.20-legacy.zip index 6f4d1f1f9..9ce5b393d 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.20-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.21-compact.zip b/tests/ast-parsing/compile/contract-0.4.21-compact.zip index f92f6b2cd..3793257af 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.21-compact.zip and b/tests/ast-parsing/compile/contract-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.21-legacy.zip b/tests/ast-parsing/compile/contract-0.4.21-legacy.zip index e1e4223fa..611dd55d7 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.21-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.22-compact.zip b/tests/ast-parsing/compile/contract-0.4.22-compact.zip index 57e776049..cabb4e669 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.22-compact.zip and b/tests/ast-parsing/compile/contract-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.22-legacy.zip b/tests/ast-parsing/compile/contract-0.4.22-legacy.zip index 40c5483ef..9dc093adf 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.22-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.23-compact.zip b/tests/ast-parsing/compile/contract-0.4.23-compact.zip index 16604d8a7..54a08428e 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.23-compact.zip and b/tests/ast-parsing/compile/contract-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.23-legacy.zip b/tests/ast-parsing/compile/contract-0.4.23-legacy.zip index 5375ca2be..1c0a6a5b3 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.23-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.24-compact.zip b/tests/ast-parsing/compile/contract-0.4.24-compact.zip index 62b967f31..41965906d 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.24-compact.zip and b/tests/ast-parsing/compile/contract-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.24-legacy.zip b/tests/ast-parsing/compile/contract-0.4.24-legacy.zip index 5e06f6ecc..6bc3876c3 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.24-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.25-compact.zip b/tests/ast-parsing/compile/contract-0.4.25-compact.zip index afce94e2a..d885ebc51 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.25-compact.zip and b/tests/ast-parsing/compile/contract-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.25-legacy.zip b/tests/ast-parsing/compile/contract-0.4.25-legacy.zip index a427b908a..06beddfa6 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.25-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.26-compact.zip b/tests/ast-parsing/compile/contract-0.4.26-compact.zip index 2eda9e43f..f6dcd45c1 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.26-compact.zip and b/tests/ast-parsing/compile/contract-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.26-legacy.zip b/tests/ast-parsing/compile/contract-0.4.26-legacy.zip index a585bf035..ccf68c622 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.26-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.3-legacy.zip b/tests/ast-parsing/compile/contract-0.4.3-legacy.zip index ae8a0a9fb..3cc7ca718 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.3-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.4-legacy.zip b/tests/ast-parsing/compile/contract-0.4.4-legacy.zip index 0fac01de2..e7e65d1d6 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.4-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.5-legacy.zip b/tests/ast-parsing/compile/contract-0.4.5-legacy.zip index 6a7eac43b..2fe7869d0 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.5-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.6-legacy.zip b/tests/ast-parsing/compile/contract-0.4.6-legacy.zip index 985485de5..8da6198dd 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.6-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.7-legacy.zip b/tests/ast-parsing/compile/contract-0.4.7-legacy.zip index 6328f30b1..96a240aaf 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.7-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.8-legacy.zip b/tests/ast-parsing/compile/contract-0.4.8-legacy.zip index cd1e1176e..ea00cb12a 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.8-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.4.9-legacy.zip b/tests/ast-parsing/compile/contract-0.4.9-legacy.zip index 00d5f881d..2bd40f9f2 100644 Binary files a/tests/ast-parsing/compile/contract-0.4.9-legacy.zip and b/tests/ast-parsing/compile/contract-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.0-compact.zip b/tests/ast-parsing/compile/contract-0.5.0-compact.zip index 417076f7d..afb8ccb74 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.0-compact.zip and b/tests/ast-parsing/compile/contract-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.0-legacy.zip b/tests/ast-parsing/compile/contract-0.5.0-legacy.zip index 2983bc14b..7983df861 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.0-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.1-compact.zip b/tests/ast-parsing/compile/contract-0.5.1-compact.zip index dde034590..ba088f15a 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.1-compact.zip and b/tests/ast-parsing/compile/contract-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.1-legacy.zip b/tests/ast-parsing/compile/contract-0.5.1-legacy.zip index 1e650a15e..3904c8900 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.1-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.10-compact.zip b/tests/ast-parsing/compile/contract-0.5.10-compact.zip index 628a2643f..64b26935a 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.10-compact.zip and b/tests/ast-parsing/compile/contract-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.10-legacy.zip b/tests/ast-parsing/compile/contract-0.5.10-legacy.zip index 401b101f0..c43bd82d8 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.10-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.11-compact.zip b/tests/ast-parsing/compile/contract-0.5.11-compact.zip index c2a742d9b..eaea185ba 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.11-compact.zip and b/tests/ast-parsing/compile/contract-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.11-legacy.zip b/tests/ast-parsing/compile/contract-0.5.11-legacy.zip index f63c1464d..9f171c52a 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.11-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.12-compact.zip b/tests/ast-parsing/compile/contract-0.5.12-compact.zip index 4bb2a8efa..d06092f12 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.12-compact.zip and b/tests/ast-parsing/compile/contract-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.12-legacy.zip b/tests/ast-parsing/compile/contract-0.5.12-legacy.zip index 2940ee1e7..070f14463 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.12-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.13-compact.zip b/tests/ast-parsing/compile/contract-0.5.13-compact.zip index 98357d6f2..63a60ee9d 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.13-compact.zip and b/tests/ast-parsing/compile/contract-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.13-legacy.zip b/tests/ast-parsing/compile/contract-0.5.13-legacy.zip index 9a468b6cf..9216b5f6c 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.13-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.14-compact.zip b/tests/ast-parsing/compile/contract-0.5.14-compact.zip index 816894a4b..e85476cb0 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.14-compact.zip and b/tests/ast-parsing/compile/contract-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.14-legacy.zip b/tests/ast-parsing/compile/contract-0.5.14-legacy.zip index af4f3c210..161b958c4 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.14-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.15-compact.zip b/tests/ast-parsing/compile/contract-0.5.15-compact.zip index 8991b3d0a..847a3004d 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.15-compact.zip and b/tests/ast-parsing/compile/contract-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.15-legacy.zip b/tests/ast-parsing/compile/contract-0.5.15-legacy.zip index 2833afc42..9773dedfc 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.15-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.16-compact.zip b/tests/ast-parsing/compile/contract-0.5.16-compact.zip index e1c2b51c2..508e88d71 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.16-compact.zip and b/tests/ast-parsing/compile/contract-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.16-legacy.zip b/tests/ast-parsing/compile/contract-0.5.16-legacy.zip index f2ba05de2..38f1c6a5b 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.16-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.17-compact.zip b/tests/ast-parsing/compile/contract-0.5.17-compact.zip index 735f497b4..2d7738b88 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.17-compact.zip and b/tests/ast-parsing/compile/contract-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.17-legacy.zip b/tests/ast-parsing/compile/contract-0.5.17-legacy.zip index 1398f927f..c444c72af 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.17-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.2-compact.zip b/tests/ast-parsing/compile/contract-0.5.2-compact.zip index 99475a406..05c500ae6 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.2-compact.zip and b/tests/ast-parsing/compile/contract-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.2-legacy.zip b/tests/ast-parsing/compile/contract-0.5.2-legacy.zip index 005fd2725..713507bd8 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.2-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.3-compact.zip b/tests/ast-parsing/compile/contract-0.5.3-compact.zip index c9ab3423f..55190aef3 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.3-compact.zip and b/tests/ast-parsing/compile/contract-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.3-legacy.zip b/tests/ast-parsing/compile/contract-0.5.3-legacy.zip index 8c3d26856..bea6c88b4 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.3-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.4-compact.zip b/tests/ast-parsing/compile/contract-0.5.4-compact.zip index 13386fbf4..f2b83f778 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.4-compact.zip and b/tests/ast-parsing/compile/contract-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.4-legacy.zip b/tests/ast-parsing/compile/contract-0.5.4-legacy.zip index e1ad105c4..c664e29f1 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.4-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.5-compact.zip b/tests/ast-parsing/compile/contract-0.5.5-compact.zip index 595bc83fa..15b3bbf07 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.5-compact.zip and b/tests/ast-parsing/compile/contract-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.5-legacy.zip b/tests/ast-parsing/compile/contract-0.5.5-legacy.zip index 60f7b70b4..fa5367095 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.5-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.6-compact.zip b/tests/ast-parsing/compile/contract-0.5.6-compact.zip index ecacb1450..a063ac280 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.6-compact.zip and b/tests/ast-parsing/compile/contract-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.6-legacy.zip b/tests/ast-parsing/compile/contract-0.5.6-legacy.zip index 290b3dc9a..9077fa229 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.6-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.7-compact.zip b/tests/ast-parsing/compile/contract-0.5.7-compact.zip index bd9f754d5..972a77cb0 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.7-compact.zip and b/tests/ast-parsing/compile/contract-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.7-legacy.zip b/tests/ast-parsing/compile/contract-0.5.7-legacy.zip index 0e8d41ded..605619a29 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.7-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.8-compact.zip b/tests/ast-parsing/compile/contract-0.5.8-compact.zip index cfab9ffc5..1726e5d6f 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.8-compact.zip and b/tests/ast-parsing/compile/contract-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.8-legacy.zip b/tests/ast-parsing/compile/contract-0.5.8-legacy.zip index 74fd2d329..6a21d9eb5 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.8-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.9-compact.zip b/tests/ast-parsing/compile/contract-0.5.9-compact.zip index d2dbff8e1..e885c081a 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.9-compact.zip and b/tests/ast-parsing/compile/contract-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.5.9-legacy.zip b/tests/ast-parsing/compile/contract-0.5.9-legacy.zip index cb1149263..15dee30db 100644 Binary files a/tests/ast-parsing/compile/contract-0.5.9-legacy.zip and b/tests/ast-parsing/compile/contract-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.0-compact.zip b/tests/ast-parsing/compile/contract-0.6.0-compact.zip index 354394575..d37fdf00e 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.0-compact.zip and b/tests/ast-parsing/compile/contract-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.0-legacy.zip b/tests/ast-parsing/compile/contract-0.6.0-legacy.zip index 6e9280c9d..80eb8b51c 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.0-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.1-compact.zip b/tests/ast-parsing/compile/contract-0.6.1-compact.zip index a1adb9b1c..bc078448f 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.1-compact.zip and b/tests/ast-parsing/compile/contract-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.1-legacy.zip b/tests/ast-parsing/compile/contract-0.6.1-legacy.zip index 4b64c1ddd..468ecf273 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.1-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.10-compact.zip b/tests/ast-parsing/compile/contract-0.6.10-compact.zip index 891cffaff..6c766e876 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.10-compact.zip and b/tests/ast-parsing/compile/contract-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.10-legacy.zip b/tests/ast-parsing/compile/contract-0.6.10-legacy.zip index f486dec81..f515acb40 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.10-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.11-compact.zip b/tests/ast-parsing/compile/contract-0.6.11-compact.zip index 8cb29e383..4fe01cb26 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.11-compact.zip and b/tests/ast-parsing/compile/contract-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.11-legacy.zip b/tests/ast-parsing/compile/contract-0.6.11-legacy.zip index 65c8f7b3f..9117bfc5e 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.11-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.12-compact.zip b/tests/ast-parsing/compile/contract-0.6.12-compact.zip index 4a541e79a..350c016d3 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.12-compact.zip and b/tests/ast-parsing/compile/contract-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.12-legacy.zip b/tests/ast-parsing/compile/contract-0.6.12-legacy.zip index 353a7131a..de7358d0b 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.12-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.2-compact.zip b/tests/ast-parsing/compile/contract-0.6.2-compact.zip index 3dba6b5bd..45befc086 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.2-compact.zip and b/tests/ast-parsing/compile/contract-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.2-legacy.zip b/tests/ast-parsing/compile/contract-0.6.2-legacy.zip index 53cb4ec60..f0352d1fe 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.2-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.3-compact.zip b/tests/ast-parsing/compile/contract-0.6.3-compact.zip index b3fd37552..173624df3 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.3-compact.zip and b/tests/ast-parsing/compile/contract-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.3-legacy.zip b/tests/ast-parsing/compile/contract-0.6.3-legacy.zip index ca70f922f..36af4f213 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.3-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.4-compact.zip b/tests/ast-parsing/compile/contract-0.6.4-compact.zip index 8e47cbc8c..cb5518e9d 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.4-compact.zip and b/tests/ast-parsing/compile/contract-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.4-legacy.zip b/tests/ast-parsing/compile/contract-0.6.4-legacy.zip index 7a4c2cade..3e92ff7ff 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.4-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.5-compact.zip b/tests/ast-parsing/compile/contract-0.6.5-compact.zip index 0a5386806..be1c27c44 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.5-compact.zip and b/tests/ast-parsing/compile/contract-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.5-legacy.zip b/tests/ast-parsing/compile/contract-0.6.5-legacy.zip index 57eea60c9..928f80642 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.5-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.6-compact.zip b/tests/ast-parsing/compile/contract-0.6.6-compact.zip index ef560e1d9..f324ee8b8 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.6-compact.zip and b/tests/ast-parsing/compile/contract-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.6-legacy.zip b/tests/ast-parsing/compile/contract-0.6.6-legacy.zip index a3f7fa9e2..51d610753 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.6-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.7-compact.zip b/tests/ast-parsing/compile/contract-0.6.7-compact.zip index b5ff0976b..fa414f5bd 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.7-compact.zip and b/tests/ast-parsing/compile/contract-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.7-legacy.zip b/tests/ast-parsing/compile/contract-0.6.7-legacy.zip index 6650a8e07..0e2dd8f5d 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.7-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.8-compact.zip b/tests/ast-parsing/compile/contract-0.6.8-compact.zip index c0b0c080b..278482544 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.8-compact.zip and b/tests/ast-parsing/compile/contract-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.8-legacy.zip b/tests/ast-parsing/compile/contract-0.6.8-legacy.zip index 503b95023..392c3e199 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.8-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.9-compact.zip b/tests/ast-parsing/compile/contract-0.6.9-compact.zip index 82a24ccac..235660fa4 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.9-compact.zip and b/tests/ast-parsing/compile/contract-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.6.9-legacy.zip b/tests/ast-parsing/compile/contract-0.6.9-legacy.zip index 69d59407c..6fe3250bf 100644 Binary files a/tests/ast-parsing/compile/contract-0.6.9-legacy.zip and b/tests/ast-parsing/compile/contract-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.0-compact.zip b/tests/ast-parsing/compile/contract-0.7.0-compact.zip index 9b2b7348e..48fca1eb9 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.0-compact.zip and b/tests/ast-parsing/compile/contract-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.0-legacy.zip b/tests/ast-parsing/compile/contract-0.7.0-legacy.zip index fc5d2410c..6fb80c37d 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.0-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.1-compact.zip b/tests/ast-parsing/compile/contract-0.7.1-compact.zip index 89b961e89..871fdc2d4 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.1-compact.zip and b/tests/ast-parsing/compile/contract-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.1-legacy.zip b/tests/ast-parsing/compile/contract-0.7.1-legacy.zip index 334047ae3..d11b9494b 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.1-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.2-compact.zip b/tests/ast-parsing/compile/contract-0.7.2-compact.zip index a4d24aada..988cbbaf8 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.2-compact.zip and b/tests/ast-parsing/compile/contract-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.2-legacy.zip b/tests/ast-parsing/compile/contract-0.7.2-legacy.zip index 494ec3bb0..1686a11fd 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.2-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.3-compact.zip b/tests/ast-parsing/compile/contract-0.7.3-compact.zip index d7337b2d4..dc4447b72 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.3-compact.zip and b/tests/ast-parsing/compile/contract-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.3-legacy.zip b/tests/ast-parsing/compile/contract-0.7.3-legacy.zip index 6ddca429c..e6142193f 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.3-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.4-compact.zip b/tests/ast-parsing/compile/contract-0.7.4-compact.zip index a7e847049..a80118fee 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.4-compact.zip and b/tests/ast-parsing/compile/contract-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.4-legacy.zip b/tests/ast-parsing/compile/contract-0.7.4-legacy.zip index 489bb571c..3859bf5cd 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.4-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.5-compact.zip b/tests/ast-parsing/compile/contract-0.7.5-compact.zip index 2d8760c56..4ec38dfa8 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.5-compact.zip and b/tests/ast-parsing/compile/contract-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.5-legacy.zip b/tests/ast-parsing/compile/contract-0.7.5-legacy.zip index e32500b4d..a74e78301 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.5-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.6-compact.zip b/tests/ast-parsing/compile/contract-0.7.6-compact.zip index 3b9e9cabd..44eeb009f 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.6-compact.zip and b/tests/ast-parsing/compile/contract-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.7.6-legacy.zip b/tests/ast-parsing/compile/contract-0.7.6-legacy.zip index 0cebe6734..e52dbfa47 100644 Binary files a/tests/ast-parsing/compile/contract-0.7.6-legacy.zip and b/tests/ast-parsing/compile/contract-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.0-compact.zip b/tests/ast-parsing/compile/contract-0.8.0-compact.zip index 48f7c13ee..fca04ea91 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.0-compact.zip and b/tests/ast-parsing/compile/contract-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.1-compact.zip b/tests/ast-parsing/compile/contract-0.8.1-compact.zip index 8774094fb..653782db6 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.1-compact.zip and b/tests/ast-parsing/compile/contract-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.2-compact.zip b/tests/ast-parsing/compile/contract-0.8.2-compact.zip index a49f6bf62..4e6cbacfe 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.2-compact.zip and b/tests/ast-parsing/compile/contract-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.3-compact.zip b/tests/ast-parsing/compile/contract-0.8.3-compact.zip index 30a842940..2d10cc355 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.3-compact.zip and b/tests/ast-parsing/compile/contract-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.4-compact.zip b/tests/ast-parsing/compile/contract-0.8.4-compact.zip index 50982e222..bf8f6cd83 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.4-compact.zip and b/tests/ast-parsing/compile/contract-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.5-compact.zip b/tests/ast-parsing/compile/contract-0.8.5-compact.zip index 11c63d2e8..c5984e792 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.5-compact.zip and b/tests/ast-parsing/compile/contract-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.6-compact.zip b/tests/ast-parsing/compile/contract-0.8.6-compact.zip index 134ac2d5d..d41c205b0 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.6-compact.zip and b/tests/ast-parsing/compile/contract-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/contract-0.8.7-compact.zip b/tests/ast-parsing/compile/contract-0.8.7-compact.zip index 966f1f0c5..d41926ed9 100644 Binary files a/tests/ast-parsing/compile/contract-0.8.7-compact.zip and b/tests/ast-parsing/compile/contract-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.0-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.0-legacy.zip index 168b94690..9f7829df7 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.0-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.1-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.1-legacy.zip index 290620a53..a138552e4 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.1-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.10-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.10-legacy.zip index 8a529da0d..4a58d26dc 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.10-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.11-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.11-legacy.zip index bc919dbbc..5ec62bcfe 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.11-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.12-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.12-compact.zip index 25b3726b7..10505134c 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.12-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.12-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.12-legacy.zip index e54a1e87a..a49d94844 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.12-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.13-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.13-compact.zip index e45877ae1..66ab21810 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.13-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.13-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.13-legacy.zip index e1d88f9a7..c306b04a5 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.13-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.14-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.14-compact.zip index 5ce1b93f7..9efa40a16 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.14-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.14-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.14-legacy.zip index 4542d1229..25d779826 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.14-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.15-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.15-compact.zip index d83a75f0b..0197b7247 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.15-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.15-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.15-legacy.zip index 041a8fe2e..63f556de2 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.15-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.16-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.16-compact.zip index c2599911f..58f0c7503 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.16-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.16-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.16-legacy.zip index 8879e0408..39bb943ad 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.16-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.17-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.17-compact.zip index 21334d05e..ccb67e653 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.17-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.17-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.17-legacy.zip index f43f9adbe..cf0a47319 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.17-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.18-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.18-compact.zip index becf8f1fd..c2d7ab436 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.18-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.18-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.18-legacy.zip index 0d7da985c..ff811b31a 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.18-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.19-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.19-compact.zip index dc827bfec..fef0caabc 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.19-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.19-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.19-legacy.zip index 404f4e741..7e6eb6af8 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.19-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.2-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.2-legacy.zip index 9e3b41ed0..0f4b14057 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.2-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.20-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.20-compact.zip index 51275dd2d..c0d6ab251 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.20-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.20-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.20-legacy.zip index dc3ac4139..06e09b23f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.20-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.21-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.21-compact.zip index 87b251eff..057ec5f2a 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.21-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.21-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.21-legacy.zip index cc215c992..9cb19c974 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.21-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.22-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.22-compact.zip index 65a7eda78..f7af0fc57 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.22-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.22-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.22-legacy.zip index b4f17b00e..d72c41477 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.22-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.23-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.23-compact.zip index e28015b5a..9c2ade3cc 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.23-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.23-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.23-legacy.zip index a523d8da7..2fdeda679 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.23-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.24-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.24-compact.zip index 049811ba2..8f7871bd7 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.24-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.24-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.24-legacy.zip index 3211738aa..1b9d5954d 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.24-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.25-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.25-compact.zip index f3dd62ee9..5b22e540d 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.25-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.25-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.25-legacy.zip index be60d7373..a741a7d4e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.25-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.26-compact.zip b/tests/ast-parsing/compile/dowhile-0.4.26-compact.zip index 5bf5ff6bd..94a47ce23 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.26-compact.zip and b/tests/ast-parsing/compile/dowhile-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.26-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.26-legacy.zip index 8cc6e34da..d3798e998 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.26-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.3-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.3-legacy.zip index a3214d503..f553dbc0b 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.3-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.4-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.4-legacy.zip index a184cd632..03323a33b 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.4-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.5-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.5-legacy.zip index c62f7f8b5..b0b5fc9b4 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.5-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.6-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.6-legacy.zip index 5e3d24867..d06be2ac6 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.6-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.7-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.7-legacy.zip index 6dde94092..1890cd7af 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.7-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.8-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.8-legacy.zip index dab881535..b204ee7b5 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.8-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.4.9-legacy.zip b/tests/ast-parsing/compile/dowhile-0.4.9-legacy.zip index 7505f32ac..5d5117304 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.4.9-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.0-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.0-compact.zip index e7d71c02b..14a4c25d4 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.0-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.0-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.0-legacy.zip index 6089ead5e..f7703277e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.0-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.1-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.1-compact.zip index 44e4f9f42..17d467386 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.1-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.1-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.1-legacy.zip index 811508f3f..127664464 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.1-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.10-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.10-compact.zip index a252861df..1748f6e05 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.10-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.10-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.10-legacy.zip index dd3866005..b3273123d 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.10-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.11-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.11-compact.zip index 139e5709c..331795917 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.11-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.11-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.11-legacy.zip index 5e863af7f..926328dbd 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.11-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.12-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.12-compact.zip index 2243faa6e..152fbd11e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.12-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.12-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.12-legacy.zip index 39a54e21f..3e5e6e2bc 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.12-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.13-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.13-compact.zip index e02523394..b6cbb104c 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.13-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.13-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.13-legacy.zip index c7df4dce5..188f22f39 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.13-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.14-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.14-compact.zip index afc551b3b..7a521ab59 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.14-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.14-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.14-legacy.zip index a8114e361..9ec6853cc 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.14-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.15-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.15-compact.zip index 464637b58..f72ecb18a 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.15-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.15-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.15-legacy.zip index a41701b5e..53aa0e0e0 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.15-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.16-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.16-compact.zip index b2908b64c..a1df8781b 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.16-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.16-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.16-legacy.zip index 37e109e58..543906549 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.16-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.17-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.17-compact.zip index dcc64d868..f64f92bb0 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.17-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.17-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.17-legacy.zip index 88ee63bdb..6eb6b0b5f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.17-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.2-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.2-compact.zip index e9cc07636..4eda5eb89 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.2-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.2-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.2-legacy.zip index ee27c7145..1f374a760 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.2-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.3-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.3-compact.zip index 73c71ae13..b35df166b 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.3-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.3-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.3-legacy.zip index 9f2115269..3e7ca843e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.3-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.4-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.4-compact.zip index c5c65f69c..4fe47e9a6 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.4-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.4-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.4-legacy.zip index 7755abdc6..a2694f1cf 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.4-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.5-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.5-compact.zip index c5513ff46..ba1633366 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.5-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.5-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.5-legacy.zip index 0284da5f0..14f81c37d 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.5-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.6-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.6-compact.zip index 5559e4a62..06c1c9907 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.6-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.6-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.6-legacy.zip index 3aaf2eb92..df40666fa 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.6-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.7-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.7-compact.zip index 6f0deb702..6b43e6cf0 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.7-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.7-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.7-legacy.zip index 223f82855..e8b092363 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.7-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.8-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.8-compact.zip index 6d94a04f1..418e3b32f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.8-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.8-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.8-legacy.zip index 53e45e80c..6975e6d3a 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.8-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.9-compact.zip b/tests/ast-parsing/compile/dowhile-0.5.9-compact.zip index e89412380..8375409c1 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.9-compact.zip and b/tests/ast-parsing/compile/dowhile-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.5.9-legacy.zip b/tests/ast-parsing/compile/dowhile-0.5.9-legacy.zip index 32bf14461..b7a0ab959 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.5.9-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.0-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.0-compact.zip index 0e2bb4d3a..4fbcdd67f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.0-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.0-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.0-legacy.zip index 83be06128..442cf1ed0 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.0-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.1-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.1-compact.zip index c0cebad6a..b3f757ee6 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.1-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.1-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.1-legacy.zip index afc2af6e6..586d141b7 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.1-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.10-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.10-compact.zip index 671d676af..7507c0ad2 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.10-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.10-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.10-legacy.zip index 7825b08b7..354d48bb2 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.10-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.11-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.11-compact.zip index 4e189dede..2fa060b83 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.11-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.11-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.11-legacy.zip index 410e0c057..1cd72c49f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.11-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.12-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.12-compact.zip index f6027be66..a69a23933 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.12-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.12-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.12-legacy.zip index 1a6e93c79..076676673 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.12-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.2-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.2-compact.zip index 6c8ddfaad..8c1aba8ef 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.2-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.2-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.2-legacy.zip index 9ee31f516..df573deb5 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.2-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.3-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.3-compact.zip index c3b526fc9..7069899ad 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.3-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.3-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.3-legacy.zip index ebe4d7e76..c841766c6 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.3-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.4-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.4-compact.zip index 199965252..f55704728 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.4-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.4-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.4-legacy.zip index dd9b8bc3f..f881d3c43 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.4-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.5-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.5-compact.zip index bf2acfed5..7cf7052b1 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.5-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.5-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.5-legacy.zip index 70c75789e..71a4904e4 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.5-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.6-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.6-compact.zip index 6c8e1bca5..448765468 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.6-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.6-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.6-legacy.zip index fca8485b8..15fbcec8f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.6-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.7-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.7-compact.zip index fff9c35a0..637e588d6 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.7-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.7-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.7-legacy.zip index 28674a96a..7143950df 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.7-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.8-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.8-compact.zip index 239338cb3..9b3848afa 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.8-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.8-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.8-legacy.zip index 3d60d3bf2..148b816f4 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.8-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.9-compact.zip b/tests/ast-parsing/compile/dowhile-0.6.9-compact.zip index 6b0aad61d..c69829d1f 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.9-compact.zip and b/tests/ast-parsing/compile/dowhile-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.6.9-legacy.zip b/tests/ast-parsing/compile/dowhile-0.6.9-legacy.zip index 534bee0cf..fc1478e1b 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.6.9-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.0-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.0-compact.zip index df58d1c0b..8576d6076 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.0-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.0-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.0-legacy.zip index 1dc98fb9d..4b2bff6a0 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.0-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.1-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.1-compact.zip index e72c78263..419cd0c4e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.1-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.1-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.1-legacy.zip index a0bc2503c..5a9ea6c79 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.1-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.2-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.2-compact.zip index 2e33937fa..6a4861516 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.2-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.2-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.2-legacy.zip index 56a8266f8..51429bb46 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.2-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.3-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.3-compact.zip index f5236e0e1..8b0d686c8 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.3-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.3-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.3-legacy.zip index 4ade0c864..30643509d 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.3-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.4-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.4-compact.zip index 2e6ed7f2e..b37d55e88 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.4-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.4-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.4-legacy.zip index 368d7d9c6..293d49874 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.4-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.5-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.5-compact.zip index 65965fb95..825a95190 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.5-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.5-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.5-legacy.zip index 7eaeb3da5..4a98b68a4 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.5-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.6-compact.zip b/tests/ast-parsing/compile/dowhile-0.7.6-compact.zip index 13d7bf793..ab9daaf01 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.6-compact.zip and b/tests/ast-parsing/compile/dowhile-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.7.6-legacy.zip b/tests/ast-parsing/compile/dowhile-0.7.6-legacy.zip index 8d75e97e5..16fce6995 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.7.6-legacy.zip and b/tests/ast-parsing/compile/dowhile-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.0-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.0-compact.zip index 1120d4d8d..9fd2907a9 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.0-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.1-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.1-compact.zip index 31d1ffa99..19665b35e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.1-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.2-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.2-compact.zip index 699e642fc..ced3500a3 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.2-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.3-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.3-compact.zip index 326dcfca9..7c2a4b67e 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.3-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.4-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.4-compact.zip index 48a2b8cf7..035f72c15 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.4-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.5-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.5-compact.zip index ee43846ad..6b6aa2f12 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.5-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.6-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.6-compact.zip index 72c68fcec..b8cc2c57b 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.6-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/dowhile-0.8.7-compact.zip b/tests/ast-parsing/compile/dowhile-0.8.7-compact.zip index 3d1624733..54c6b2259 100644 Binary files a/tests/ast-parsing/compile/dowhile-0.8.7-compact.zip and b/tests/ast-parsing/compile/dowhile-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.0-legacy.zip b/tests/ast-parsing/compile/emit-0.4.0-legacy.zip index 809fadabd..5de8f8ee3 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.0-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.1-legacy.zip b/tests/ast-parsing/compile/emit-0.4.1-legacy.zip index 83bcbba4f..afe442aac 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.1-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.10-legacy.zip b/tests/ast-parsing/compile/emit-0.4.10-legacy.zip index 0e74f2bc8..fdad6d278 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.10-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.11-legacy.zip b/tests/ast-parsing/compile/emit-0.4.11-legacy.zip index ccba03352..afa15fc7b 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.11-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.12-compact.zip b/tests/ast-parsing/compile/emit-0.4.12-compact.zip index fb164f3b0..7026ded4b 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.12-compact.zip and b/tests/ast-parsing/compile/emit-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.12-legacy.zip b/tests/ast-parsing/compile/emit-0.4.12-legacy.zip index ec546ce98..d3d4f15cf 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.12-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.13-compact.zip b/tests/ast-parsing/compile/emit-0.4.13-compact.zip index 84d5cc546..810ed667f 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.13-compact.zip and b/tests/ast-parsing/compile/emit-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.13-legacy.zip b/tests/ast-parsing/compile/emit-0.4.13-legacy.zip index b8788d7a6..6a4421b34 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.13-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.14-compact.zip b/tests/ast-parsing/compile/emit-0.4.14-compact.zip index 7d64ff78e..e3c9970c8 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.14-compact.zip and b/tests/ast-parsing/compile/emit-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.14-legacy.zip b/tests/ast-parsing/compile/emit-0.4.14-legacy.zip index 286f22688..7bbf32a38 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.14-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.15-compact.zip b/tests/ast-parsing/compile/emit-0.4.15-compact.zip index e4f35c610..ec3dc137c 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.15-compact.zip and b/tests/ast-parsing/compile/emit-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.15-legacy.zip b/tests/ast-parsing/compile/emit-0.4.15-legacy.zip index 8d61f5f26..77c5c06fa 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.15-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.16-compact.zip b/tests/ast-parsing/compile/emit-0.4.16-compact.zip index 21c79fee6..868e45c26 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.16-compact.zip and b/tests/ast-parsing/compile/emit-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.16-legacy.zip b/tests/ast-parsing/compile/emit-0.4.16-legacy.zip index 89fc1d8ef..e7e33dd6b 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.16-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.17-compact.zip b/tests/ast-parsing/compile/emit-0.4.17-compact.zip index 6a0049ba6..f377e8074 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.17-compact.zip and b/tests/ast-parsing/compile/emit-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.17-legacy.zip b/tests/ast-parsing/compile/emit-0.4.17-legacy.zip index 4179a83ff..4e3c30548 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.17-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.18-compact.zip b/tests/ast-parsing/compile/emit-0.4.18-compact.zip index f8e2e9a19..ab967927e 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.18-compact.zip and b/tests/ast-parsing/compile/emit-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.18-legacy.zip b/tests/ast-parsing/compile/emit-0.4.18-legacy.zip index 32b4e492f..f8c4a3337 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.18-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.19-compact.zip b/tests/ast-parsing/compile/emit-0.4.19-compact.zip index 52c085daf..1324d371b 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.19-compact.zip and b/tests/ast-parsing/compile/emit-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.19-legacy.zip b/tests/ast-parsing/compile/emit-0.4.19-legacy.zip index 3fd1b41b0..06dbe7d06 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.19-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.2-legacy.zip b/tests/ast-parsing/compile/emit-0.4.2-legacy.zip index ba347ba48..27f3ece87 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.2-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.20-compact.zip b/tests/ast-parsing/compile/emit-0.4.20-compact.zip index 00fff619d..0f7e862f2 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.20-compact.zip and b/tests/ast-parsing/compile/emit-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.20-legacy.zip b/tests/ast-parsing/compile/emit-0.4.20-legacy.zip index 56d29df10..2eab4c09e 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.20-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.21-compact.zip b/tests/ast-parsing/compile/emit-0.4.21-compact.zip index 6227a1708..ec05dc27c 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.21-compact.zip and b/tests/ast-parsing/compile/emit-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.21-legacy.zip b/tests/ast-parsing/compile/emit-0.4.21-legacy.zip index 4ab68a3a1..04f1f56a9 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.21-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.22-compact.zip b/tests/ast-parsing/compile/emit-0.4.22-compact.zip index 21b1b4102..70b7daabc 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.22-compact.zip and b/tests/ast-parsing/compile/emit-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.22-legacy.zip b/tests/ast-parsing/compile/emit-0.4.22-legacy.zip index 16fff98c4..e581e894d 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.22-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.23-compact.zip b/tests/ast-parsing/compile/emit-0.4.23-compact.zip index 9b0f20354..34f99b230 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.23-compact.zip and b/tests/ast-parsing/compile/emit-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.23-legacy.zip b/tests/ast-parsing/compile/emit-0.4.23-legacy.zip index 4e8dcae5c..12eef4a6e 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.23-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.24-compact.zip b/tests/ast-parsing/compile/emit-0.4.24-compact.zip index 9cb8b2c13..5dd519fb9 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.24-compact.zip and b/tests/ast-parsing/compile/emit-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.24-legacy.zip b/tests/ast-parsing/compile/emit-0.4.24-legacy.zip index 71bd90066..bec0165db 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.24-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.25-compact.zip b/tests/ast-parsing/compile/emit-0.4.25-compact.zip index 152cebd60..7dcecf934 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.25-compact.zip and b/tests/ast-parsing/compile/emit-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.25-legacy.zip b/tests/ast-parsing/compile/emit-0.4.25-legacy.zip index 156b30da8..4a69196ed 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.25-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.26-compact.zip b/tests/ast-parsing/compile/emit-0.4.26-compact.zip index d8b5cc2e1..633ef40ef 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.26-compact.zip and b/tests/ast-parsing/compile/emit-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.26-legacy.zip b/tests/ast-parsing/compile/emit-0.4.26-legacy.zip index e3ed647a9..31e51ad13 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.26-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.3-legacy.zip b/tests/ast-parsing/compile/emit-0.4.3-legacy.zip index 466426407..f472730fa 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.3-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.4-legacy.zip b/tests/ast-parsing/compile/emit-0.4.4-legacy.zip index f509a5199..b0f12253c 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.4-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.5-legacy.zip b/tests/ast-parsing/compile/emit-0.4.5-legacy.zip index fe5785b67..019155ce4 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.5-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.6-legacy.zip b/tests/ast-parsing/compile/emit-0.4.6-legacy.zip index af6733a44..bfbda222d 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.6-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.7-legacy.zip b/tests/ast-parsing/compile/emit-0.4.7-legacy.zip index fc82e17cc..897eec7dc 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.7-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.8-legacy.zip b/tests/ast-parsing/compile/emit-0.4.8-legacy.zip index 1525e4249..051c319b2 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.8-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.4.9-legacy.zip b/tests/ast-parsing/compile/emit-0.4.9-legacy.zip index ca2d35949..abff85775 100644 Binary files a/tests/ast-parsing/compile/emit-0.4.9-legacy.zip and b/tests/ast-parsing/compile/emit-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.0-compact.zip b/tests/ast-parsing/compile/emit-0.5.0-compact.zip index 6d3b85a21..8c6784414 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.0-compact.zip and b/tests/ast-parsing/compile/emit-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.0-legacy.zip b/tests/ast-parsing/compile/emit-0.5.0-legacy.zip index 490e623bd..15ef45d38 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.0-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.1-compact.zip b/tests/ast-parsing/compile/emit-0.5.1-compact.zip index a429564f5..b0d06abd2 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.1-compact.zip and b/tests/ast-parsing/compile/emit-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.1-legacy.zip b/tests/ast-parsing/compile/emit-0.5.1-legacy.zip index 48be556e2..c2e65d39c 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.1-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.10-compact.zip b/tests/ast-parsing/compile/emit-0.5.10-compact.zip index a754c003c..6db33ad0a 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.10-compact.zip and b/tests/ast-parsing/compile/emit-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.10-legacy.zip b/tests/ast-parsing/compile/emit-0.5.10-legacy.zip index aa37f6c84..8713ff474 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.10-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.11-compact.zip b/tests/ast-parsing/compile/emit-0.5.11-compact.zip index 5af04b40f..db9d7e71a 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.11-compact.zip and b/tests/ast-parsing/compile/emit-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.11-legacy.zip b/tests/ast-parsing/compile/emit-0.5.11-legacy.zip index 93c9380b7..8146ce5c6 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.11-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.12-compact.zip b/tests/ast-parsing/compile/emit-0.5.12-compact.zip index fed7bdfd8..3bbfb5573 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.12-compact.zip and b/tests/ast-parsing/compile/emit-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.12-legacy.zip b/tests/ast-parsing/compile/emit-0.5.12-legacy.zip index a108da200..ef5bb502d 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.12-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.13-compact.zip b/tests/ast-parsing/compile/emit-0.5.13-compact.zip index 2269958e3..81d33295f 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.13-compact.zip and b/tests/ast-parsing/compile/emit-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.13-legacy.zip b/tests/ast-parsing/compile/emit-0.5.13-legacy.zip index fea407420..0557c9726 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.13-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.14-compact.zip b/tests/ast-parsing/compile/emit-0.5.14-compact.zip index 837989b42..8325b251a 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.14-compact.zip and b/tests/ast-parsing/compile/emit-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.14-legacy.zip b/tests/ast-parsing/compile/emit-0.5.14-legacy.zip index b9d877457..27e2c3abc 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.14-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.15-compact.zip b/tests/ast-parsing/compile/emit-0.5.15-compact.zip index f2aba04b0..0a9daa94f 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.15-compact.zip and b/tests/ast-parsing/compile/emit-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.15-legacy.zip b/tests/ast-parsing/compile/emit-0.5.15-legacy.zip index c5d6737bd..ae0c6c155 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.15-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.16-compact.zip b/tests/ast-parsing/compile/emit-0.5.16-compact.zip index 51c75fe9e..b5910c360 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.16-compact.zip and b/tests/ast-parsing/compile/emit-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.16-legacy.zip b/tests/ast-parsing/compile/emit-0.5.16-legacy.zip index ed02860c5..4073b60a3 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.16-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.17-compact.zip b/tests/ast-parsing/compile/emit-0.5.17-compact.zip index ff659f511..07a6fb9b3 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.17-compact.zip and b/tests/ast-parsing/compile/emit-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.17-legacy.zip b/tests/ast-parsing/compile/emit-0.5.17-legacy.zip index 240ee596f..5a931ed92 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.17-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.2-compact.zip b/tests/ast-parsing/compile/emit-0.5.2-compact.zip index c2db8a3fd..33dfc881f 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.2-compact.zip and b/tests/ast-parsing/compile/emit-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.2-legacy.zip b/tests/ast-parsing/compile/emit-0.5.2-legacy.zip index 83307563e..cd6b5b4b1 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.2-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.3-compact.zip b/tests/ast-parsing/compile/emit-0.5.3-compact.zip index 1db6bd0a2..964571cf5 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.3-compact.zip and b/tests/ast-parsing/compile/emit-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.3-legacy.zip b/tests/ast-parsing/compile/emit-0.5.3-legacy.zip index 7d43019a9..0bc6c1cd6 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.3-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.4-compact.zip b/tests/ast-parsing/compile/emit-0.5.4-compact.zip index bfb502cda..f527332e0 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.4-compact.zip and b/tests/ast-parsing/compile/emit-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.4-legacy.zip b/tests/ast-parsing/compile/emit-0.5.4-legacy.zip index 2d6124e41..1e9ba36f2 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.4-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.5-compact.zip b/tests/ast-parsing/compile/emit-0.5.5-compact.zip index 5a24ef434..cb1604ecc 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.5-compact.zip and b/tests/ast-parsing/compile/emit-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.5-legacy.zip b/tests/ast-parsing/compile/emit-0.5.5-legacy.zip index 8fc2c0627..c05c0e9b5 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.5-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.6-compact.zip b/tests/ast-parsing/compile/emit-0.5.6-compact.zip index 9b1f78dd5..04eacc19e 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.6-compact.zip and b/tests/ast-parsing/compile/emit-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.6-legacy.zip b/tests/ast-parsing/compile/emit-0.5.6-legacy.zip index e4f2698cd..58e295b66 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.6-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.7-compact.zip b/tests/ast-parsing/compile/emit-0.5.7-compact.zip index ebcc9253f..1ea7450d7 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.7-compact.zip and b/tests/ast-parsing/compile/emit-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.7-legacy.zip b/tests/ast-parsing/compile/emit-0.5.7-legacy.zip index 0abe578e5..9ca6d36f0 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.7-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.8-compact.zip b/tests/ast-parsing/compile/emit-0.5.8-compact.zip index 88c0db454..39f54606b 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.8-compact.zip and b/tests/ast-parsing/compile/emit-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.8-legacy.zip b/tests/ast-parsing/compile/emit-0.5.8-legacy.zip index 8af061f2e..c6cdeefbb 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.8-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.9-compact.zip b/tests/ast-parsing/compile/emit-0.5.9-compact.zip index 9a7c0640f..065a0bdcf 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.9-compact.zip and b/tests/ast-parsing/compile/emit-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.5.9-legacy.zip b/tests/ast-parsing/compile/emit-0.5.9-legacy.zip index 61e1233e4..81470b95a 100644 Binary files a/tests/ast-parsing/compile/emit-0.5.9-legacy.zip and b/tests/ast-parsing/compile/emit-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.0-compact.zip b/tests/ast-parsing/compile/emit-0.6.0-compact.zip index 04fa2617d..a99d33dc0 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.0-compact.zip and b/tests/ast-parsing/compile/emit-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.0-legacy.zip b/tests/ast-parsing/compile/emit-0.6.0-legacy.zip index 2c13d6904..7fb252eb7 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.0-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.1-compact.zip b/tests/ast-parsing/compile/emit-0.6.1-compact.zip index 493e2ca71..d0e439c24 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.1-compact.zip and b/tests/ast-parsing/compile/emit-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.1-legacy.zip b/tests/ast-parsing/compile/emit-0.6.1-legacy.zip index 959393451..ee3e76e9c 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.1-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.10-compact.zip b/tests/ast-parsing/compile/emit-0.6.10-compact.zip index 713695aca..222ef96b8 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.10-compact.zip and b/tests/ast-parsing/compile/emit-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.10-legacy.zip b/tests/ast-parsing/compile/emit-0.6.10-legacy.zip index a6f344ca1..08cdb5326 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.10-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.11-compact.zip b/tests/ast-parsing/compile/emit-0.6.11-compact.zip index e5039be83..73781b5ae 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.11-compact.zip and b/tests/ast-parsing/compile/emit-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.11-legacy.zip b/tests/ast-parsing/compile/emit-0.6.11-legacy.zip index 00176e520..7c1d561c5 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.11-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.12-compact.zip b/tests/ast-parsing/compile/emit-0.6.12-compact.zip index 0ae2b5268..03390017d 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.12-compact.zip and b/tests/ast-parsing/compile/emit-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.12-legacy.zip b/tests/ast-parsing/compile/emit-0.6.12-legacy.zip index 485d3f0bb..55f0d153d 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.12-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.2-compact.zip b/tests/ast-parsing/compile/emit-0.6.2-compact.zip index 596430a61..ec4db0511 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.2-compact.zip and b/tests/ast-parsing/compile/emit-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.2-legacy.zip b/tests/ast-parsing/compile/emit-0.6.2-legacy.zip index b1636eda3..baa84fb09 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.2-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.3-compact.zip b/tests/ast-parsing/compile/emit-0.6.3-compact.zip index b4159157f..6cc3c7f07 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.3-compact.zip and b/tests/ast-parsing/compile/emit-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.3-legacy.zip b/tests/ast-parsing/compile/emit-0.6.3-legacy.zip index 7dce5cfe2..56f9b4440 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.3-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.4-compact.zip b/tests/ast-parsing/compile/emit-0.6.4-compact.zip index 959026f80..cdc39bc11 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.4-compact.zip and b/tests/ast-parsing/compile/emit-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.4-legacy.zip b/tests/ast-parsing/compile/emit-0.6.4-legacy.zip index e90ea1e24..b64fb304d 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.4-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.5-compact.zip b/tests/ast-parsing/compile/emit-0.6.5-compact.zip index 6ae368572..29403bcab 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.5-compact.zip and b/tests/ast-parsing/compile/emit-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.5-legacy.zip b/tests/ast-parsing/compile/emit-0.6.5-legacy.zip index 9d9f14ffd..3dfb13e3f 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.5-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.6-compact.zip b/tests/ast-parsing/compile/emit-0.6.6-compact.zip index 4144b97db..d09eb274e 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.6-compact.zip and b/tests/ast-parsing/compile/emit-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.6-legacy.zip b/tests/ast-parsing/compile/emit-0.6.6-legacy.zip index 576433c08..f495ba029 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.6-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.7-compact.zip b/tests/ast-parsing/compile/emit-0.6.7-compact.zip index a42f6f97e..cb2ca079b 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.7-compact.zip and b/tests/ast-parsing/compile/emit-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.7-legacy.zip b/tests/ast-parsing/compile/emit-0.6.7-legacy.zip index 56beaf0b5..764e9f67b 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.7-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.8-compact.zip b/tests/ast-parsing/compile/emit-0.6.8-compact.zip index 35046bd59..df9546c77 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.8-compact.zip and b/tests/ast-parsing/compile/emit-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.8-legacy.zip b/tests/ast-parsing/compile/emit-0.6.8-legacy.zip index 4c173c2f6..1fc13026f 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.8-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.9-compact.zip b/tests/ast-parsing/compile/emit-0.6.9-compact.zip index 67c34d2fb..17feca929 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.9-compact.zip and b/tests/ast-parsing/compile/emit-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.6.9-legacy.zip b/tests/ast-parsing/compile/emit-0.6.9-legacy.zip index 154c99931..a4c5a48bd 100644 Binary files a/tests/ast-parsing/compile/emit-0.6.9-legacy.zip and b/tests/ast-parsing/compile/emit-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.0-compact.zip b/tests/ast-parsing/compile/emit-0.7.0-compact.zip index d98d167a7..cce55c1c0 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.0-compact.zip and b/tests/ast-parsing/compile/emit-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.0-legacy.zip b/tests/ast-parsing/compile/emit-0.7.0-legacy.zip index fd3ad9fdc..25dba4b87 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.0-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.1-compact.zip b/tests/ast-parsing/compile/emit-0.7.1-compact.zip index 0a0124e46..9d9309a16 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.1-compact.zip and b/tests/ast-parsing/compile/emit-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.1-legacy.zip b/tests/ast-parsing/compile/emit-0.7.1-legacy.zip index 3de55906a..ebde49973 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.1-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.2-compact.zip b/tests/ast-parsing/compile/emit-0.7.2-compact.zip index bdbb50aef..c2a6c3905 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.2-compact.zip and b/tests/ast-parsing/compile/emit-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.2-legacy.zip b/tests/ast-parsing/compile/emit-0.7.2-legacy.zip index 6984b264c..90977a457 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.2-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.3-compact.zip b/tests/ast-parsing/compile/emit-0.7.3-compact.zip index ff0017afc..2dd0e086d 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.3-compact.zip and b/tests/ast-parsing/compile/emit-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.3-legacy.zip b/tests/ast-parsing/compile/emit-0.7.3-legacy.zip index 8f719a72e..8f6bc78d6 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.3-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.4-compact.zip b/tests/ast-parsing/compile/emit-0.7.4-compact.zip index 95ca90876..92c82814b 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.4-compact.zip and b/tests/ast-parsing/compile/emit-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.4-legacy.zip b/tests/ast-parsing/compile/emit-0.7.4-legacy.zip index c6c39dc42..c88998c36 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.4-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.5-compact.zip b/tests/ast-parsing/compile/emit-0.7.5-compact.zip index 14433b553..842d2704f 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.5-compact.zip and b/tests/ast-parsing/compile/emit-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.5-legacy.zip b/tests/ast-parsing/compile/emit-0.7.5-legacy.zip index 5e4ccb7cd..924c2add3 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.5-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.6-compact.zip b/tests/ast-parsing/compile/emit-0.7.6-compact.zip index a6d6bb361..43713c195 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.6-compact.zip and b/tests/ast-parsing/compile/emit-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.7.6-legacy.zip b/tests/ast-parsing/compile/emit-0.7.6-legacy.zip index 717954447..4e24d2db5 100644 Binary files a/tests/ast-parsing/compile/emit-0.7.6-legacy.zip and b/tests/ast-parsing/compile/emit-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.0-compact.zip b/tests/ast-parsing/compile/emit-0.8.0-compact.zip index 42af58084..111ab416c 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.0-compact.zip and b/tests/ast-parsing/compile/emit-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.1-compact.zip b/tests/ast-parsing/compile/emit-0.8.1-compact.zip index a84cab246..953544bab 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.1-compact.zip and b/tests/ast-parsing/compile/emit-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.2-compact.zip b/tests/ast-parsing/compile/emit-0.8.2-compact.zip index cac52dbfe..7e8301ef6 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.2-compact.zip and b/tests/ast-parsing/compile/emit-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.3-compact.zip b/tests/ast-parsing/compile/emit-0.8.3-compact.zip index 507e2b89d..5c0e11b10 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.3-compact.zip and b/tests/ast-parsing/compile/emit-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.4-compact.zip b/tests/ast-parsing/compile/emit-0.8.4-compact.zip index 36a1f8db3..0fb941cfb 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.4-compact.zip and b/tests/ast-parsing/compile/emit-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.5-compact.zip b/tests/ast-parsing/compile/emit-0.8.5-compact.zip index a4364cc3a..0ea4d60cd 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.5-compact.zip and b/tests/ast-parsing/compile/emit-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.6-compact.zip b/tests/ast-parsing/compile/emit-0.8.6-compact.zip index 78906902c..f158fbc97 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.6-compact.zip and b/tests/ast-parsing/compile/emit-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/emit-0.8.7-compact.zip b/tests/ast-parsing/compile/emit-0.8.7-compact.zip index 9636f122c..a29a2a220 100644 Binary files a/tests/ast-parsing/compile/emit-0.8.7-compact.zip and b/tests/ast-parsing/compile/emit-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.0-legacy.zip b/tests/ast-parsing/compile/enum-0.4.0-legacy.zip index 9c5e758e3..7657ae89b 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.0-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.1-legacy.zip b/tests/ast-parsing/compile/enum-0.4.1-legacy.zip index 68a1330b3..4955b92d4 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.1-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.10-legacy.zip b/tests/ast-parsing/compile/enum-0.4.10-legacy.zip index b8f5b4570..c1f68504d 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.10-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.11-legacy.zip b/tests/ast-parsing/compile/enum-0.4.11-legacy.zip index 38e1c9a03..22e06c025 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.11-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.12-compact.zip b/tests/ast-parsing/compile/enum-0.4.12-compact.zip index 78fb0ef25..d1c4c2606 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.12-compact.zip and b/tests/ast-parsing/compile/enum-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.12-legacy.zip b/tests/ast-parsing/compile/enum-0.4.12-legacy.zip index afdd72c2e..43635fa5b 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.12-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.13-compact.zip b/tests/ast-parsing/compile/enum-0.4.13-compact.zip index ace786712..4771f85ba 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.13-compact.zip and b/tests/ast-parsing/compile/enum-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.13-legacy.zip b/tests/ast-parsing/compile/enum-0.4.13-legacy.zip index 19cfe4719..069c4b310 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.13-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.14-compact.zip b/tests/ast-parsing/compile/enum-0.4.14-compact.zip index 1b7f6fee7..17b394e99 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.14-compact.zip and b/tests/ast-parsing/compile/enum-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.14-legacy.zip b/tests/ast-parsing/compile/enum-0.4.14-legacy.zip index feeb6a643..cfd6f42dc 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.14-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.15-compact.zip b/tests/ast-parsing/compile/enum-0.4.15-compact.zip index 0a0a14315..d5f5d9523 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.15-compact.zip and b/tests/ast-parsing/compile/enum-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.15-legacy.zip b/tests/ast-parsing/compile/enum-0.4.15-legacy.zip index 7949bc4e1..62fe88eba 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.15-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.16-compact.zip b/tests/ast-parsing/compile/enum-0.4.16-compact.zip index 3d57f2c3a..9949e506c 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.16-compact.zip and b/tests/ast-parsing/compile/enum-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.16-legacy.zip b/tests/ast-parsing/compile/enum-0.4.16-legacy.zip index 5c277b264..3f67984de 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.16-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.17-compact.zip b/tests/ast-parsing/compile/enum-0.4.17-compact.zip index bff503f61..a1a1d90f3 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.17-compact.zip and b/tests/ast-parsing/compile/enum-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.17-legacy.zip b/tests/ast-parsing/compile/enum-0.4.17-legacy.zip index 51e476fca..e90e0011a 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.17-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.18-compact.zip b/tests/ast-parsing/compile/enum-0.4.18-compact.zip index 3861af191..758ffdb6e 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.18-compact.zip and b/tests/ast-parsing/compile/enum-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.18-legacy.zip b/tests/ast-parsing/compile/enum-0.4.18-legacy.zip index ba7177a28..d148c7218 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.18-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.19-compact.zip b/tests/ast-parsing/compile/enum-0.4.19-compact.zip index 8280f8e37..a8702de94 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.19-compact.zip and b/tests/ast-parsing/compile/enum-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.19-legacy.zip b/tests/ast-parsing/compile/enum-0.4.19-legacy.zip index e5e5515be..c329874e7 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.19-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.2-legacy.zip b/tests/ast-parsing/compile/enum-0.4.2-legacy.zip index 22382dcc6..e0c2b9b1e 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.2-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.20-compact.zip b/tests/ast-parsing/compile/enum-0.4.20-compact.zip index 97eeee0a0..62e3638aa 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.20-compact.zip and b/tests/ast-parsing/compile/enum-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.20-legacy.zip b/tests/ast-parsing/compile/enum-0.4.20-legacy.zip index 7551234de..7b090a0a5 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.20-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.21-compact.zip b/tests/ast-parsing/compile/enum-0.4.21-compact.zip index 9e45da1a4..4aff80aea 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.21-compact.zip and b/tests/ast-parsing/compile/enum-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.21-legacy.zip b/tests/ast-parsing/compile/enum-0.4.21-legacy.zip index 36cf5fd8b..740db0012 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.21-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.22-compact.zip b/tests/ast-parsing/compile/enum-0.4.22-compact.zip index 97e677b5e..94836c618 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.22-compact.zip and b/tests/ast-parsing/compile/enum-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.22-legacy.zip b/tests/ast-parsing/compile/enum-0.4.22-legacy.zip index f7227ec35..5ea695263 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.22-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.23-compact.zip b/tests/ast-parsing/compile/enum-0.4.23-compact.zip index 55f51102a..76e54494c 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.23-compact.zip and b/tests/ast-parsing/compile/enum-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.23-legacy.zip b/tests/ast-parsing/compile/enum-0.4.23-legacy.zip index 10f6d4526..adf9f9040 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.23-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.24-compact.zip b/tests/ast-parsing/compile/enum-0.4.24-compact.zip index 7f059629a..1844eb239 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.24-compact.zip and b/tests/ast-parsing/compile/enum-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.24-legacy.zip b/tests/ast-parsing/compile/enum-0.4.24-legacy.zip index 7fbb4637d..18b16adc4 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.24-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.25-compact.zip b/tests/ast-parsing/compile/enum-0.4.25-compact.zip index f4ca391e7..6a4b9eef9 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.25-compact.zip and b/tests/ast-parsing/compile/enum-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.25-legacy.zip b/tests/ast-parsing/compile/enum-0.4.25-legacy.zip index 4c5062b6c..2680a19a0 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.25-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.26-compact.zip b/tests/ast-parsing/compile/enum-0.4.26-compact.zip index cedb0343b..5a9a72794 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.26-compact.zip and b/tests/ast-parsing/compile/enum-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.26-legacy.zip b/tests/ast-parsing/compile/enum-0.4.26-legacy.zip index bc04289fd..04ad12cc1 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.26-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.3-legacy.zip b/tests/ast-parsing/compile/enum-0.4.3-legacy.zip index 5ade39d63..dbd3e0086 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.3-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.4-legacy.zip b/tests/ast-parsing/compile/enum-0.4.4-legacy.zip index c66e11e47..a859f9e90 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.4-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.5-legacy.zip b/tests/ast-parsing/compile/enum-0.4.5-legacy.zip index 2c1e1ae5a..aad157b8b 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.5-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.6-legacy.zip b/tests/ast-parsing/compile/enum-0.4.6-legacy.zip index c437a1fcc..513288489 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.6-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.7-legacy.zip b/tests/ast-parsing/compile/enum-0.4.7-legacy.zip index 437b23730..d67e844d3 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.7-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.8-legacy.zip b/tests/ast-parsing/compile/enum-0.4.8-legacy.zip index 0a889b7e9..b0104ba7f 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.8-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.4.9-legacy.zip b/tests/ast-parsing/compile/enum-0.4.9-legacy.zip index 0afdc2314..515712fcd 100644 Binary files a/tests/ast-parsing/compile/enum-0.4.9-legacy.zip and b/tests/ast-parsing/compile/enum-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.0-compact.zip b/tests/ast-parsing/compile/enum-0.5.0-compact.zip index ccfb851b8..758ee8848 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.0-compact.zip and b/tests/ast-parsing/compile/enum-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.0-legacy.zip b/tests/ast-parsing/compile/enum-0.5.0-legacy.zip index 22c3668c8..a09c52fed 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.0-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.1-compact.zip b/tests/ast-parsing/compile/enum-0.5.1-compact.zip index 0d97cb569..57c0e1632 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.1-compact.zip and b/tests/ast-parsing/compile/enum-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.1-legacy.zip b/tests/ast-parsing/compile/enum-0.5.1-legacy.zip index 52ca30c40..8aae42de3 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.1-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.10-compact.zip b/tests/ast-parsing/compile/enum-0.5.10-compact.zip index 7cc67933c..cfd416d55 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.10-compact.zip and b/tests/ast-parsing/compile/enum-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.10-legacy.zip b/tests/ast-parsing/compile/enum-0.5.10-legacy.zip index f9136b0b9..77210a8c7 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.10-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.11-compact.zip b/tests/ast-parsing/compile/enum-0.5.11-compact.zip index ecb8198a9..5bee2bc1a 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.11-compact.zip and b/tests/ast-parsing/compile/enum-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.11-legacy.zip b/tests/ast-parsing/compile/enum-0.5.11-legacy.zip index 7a1148f27..6443aa826 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.11-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.12-compact.zip b/tests/ast-parsing/compile/enum-0.5.12-compact.zip index 245bb4e9e..4161f6e84 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.12-compact.zip and b/tests/ast-parsing/compile/enum-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.12-legacy.zip b/tests/ast-parsing/compile/enum-0.5.12-legacy.zip index 039f11b00..f7d87bc0f 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.12-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.13-compact.zip b/tests/ast-parsing/compile/enum-0.5.13-compact.zip index 4a71e16ae..7b54fdde6 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.13-compact.zip and b/tests/ast-parsing/compile/enum-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.13-legacy.zip b/tests/ast-parsing/compile/enum-0.5.13-legacy.zip index 26652439b..2de4ac9ce 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.13-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.14-compact.zip b/tests/ast-parsing/compile/enum-0.5.14-compact.zip index 3e0c7d666..159ca82b8 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.14-compact.zip and b/tests/ast-parsing/compile/enum-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.14-legacy.zip b/tests/ast-parsing/compile/enum-0.5.14-legacy.zip index 3e3d62c16..e70c7b93a 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.14-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.15-compact.zip b/tests/ast-parsing/compile/enum-0.5.15-compact.zip index 05f53d5c2..c3b1c4a60 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.15-compact.zip and b/tests/ast-parsing/compile/enum-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.15-legacy.zip b/tests/ast-parsing/compile/enum-0.5.15-legacy.zip index 909dce1ab..1ca0ea376 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.15-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.16-compact.zip b/tests/ast-parsing/compile/enum-0.5.16-compact.zip index ad445655d..02e666d7e 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.16-compact.zip and b/tests/ast-parsing/compile/enum-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.16-legacy.zip b/tests/ast-parsing/compile/enum-0.5.16-legacy.zip index 98256a694..fb96c890b 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.16-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.17-compact.zip b/tests/ast-parsing/compile/enum-0.5.17-compact.zip index 5c4de985e..561a3ed84 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.17-compact.zip and b/tests/ast-parsing/compile/enum-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.17-legacy.zip b/tests/ast-parsing/compile/enum-0.5.17-legacy.zip index 2feb5cb8e..40a9d5c60 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.17-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.2-compact.zip b/tests/ast-parsing/compile/enum-0.5.2-compact.zip index b524821ad..414cfb44e 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.2-compact.zip and b/tests/ast-parsing/compile/enum-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.2-legacy.zip b/tests/ast-parsing/compile/enum-0.5.2-legacy.zip index 515bf9e70..24de405c1 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.2-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.3-compact.zip b/tests/ast-parsing/compile/enum-0.5.3-compact.zip index d8d10517a..dd898323c 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.3-compact.zip and b/tests/ast-parsing/compile/enum-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.3-legacy.zip b/tests/ast-parsing/compile/enum-0.5.3-legacy.zip index 07452f561..7206831c4 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.3-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.4-compact.zip b/tests/ast-parsing/compile/enum-0.5.4-compact.zip index 1eb9b8d4b..7835a015f 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.4-compact.zip and b/tests/ast-parsing/compile/enum-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.4-legacy.zip b/tests/ast-parsing/compile/enum-0.5.4-legacy.zip index fcf56bffb..b38c13f34 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.4-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.5-compact.zip b/tests/ast-parsing/compile/enum-0.5.5-compact.zip index 5670f3769..66a99a0af 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.5-compact.zip and b/tests/ast-parsing/compile/enum-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.5-legacy.zip b/tests/ast-parsing/compile/enum-0.5.5-legacy.zip index f98a9f6dc..fda8f21eb 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.5-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.6-compact.zip b/tests/ast-parsing/compile/enum-0.5.6-compact.zip index 85b469de6..43447e3d6 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.6-compact.zip and b/tests/ast-parsing/compile/enum-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.6-legacy.zip b/tests/ast-parsing/compile/enum-0.5.6-legacy.zip index c9a6940a5..dad4cf216 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.6-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.7-compact.zip b/tests/ast-parsing/compile/enum-0.5.7-compact.zip index 020f7188d..9abe7a3fc 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.7-compact.zip and b/tests/ast-parsing/compile/enum-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.7-legacy.zip b/tests/ast-parsing/compile/enum-0.5.7-legacy.zip index 46e330c98..281ef2982 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.7-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.8-compact.zip b/tests/ast-parsing/compile/enum-0.5.8-compact.zip index ec236de7a..7fb77631e 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.8-compact.zip and b/tests/ast-parsing/compile/enum-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.8-legacy.zip b/tests/ast-parsing/compile/enum-0.5.8-legacy.zip index 92bce9f1d..127d76656 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.8-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.9-compact.zip b/tests/ast-parsing/compile/enum-0.5.9-compact.zip index c9dc896ef..f533d357b 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.9-compact.zip and b/tests/ast-parsing/compile/enum-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.5.9-legacy.zip b/tests/ast-parsing/compile/enum-0.5.9-legacy.zip index 54c01e61f..268950137 100644 Binary files a/tests/ast-parsing/compile/enum-0.5.9-legacy.zip and b/tests/ast-parsing/compile/enum-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.0-compact.zip b/tests/ast-parsing/compile/enum-0.6.0-compact.zip index 7b070af77..424410c86 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.0-compact.zip and b/tests/ast-parsing/compile/enum-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.0-legacy.zip b/tests/ast-parsing/compile/enum-0.6.0-legacy.zip index 152f81858..539f325b1 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.0-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.1-compact.zip b/tests/ast-parsing/compile/enum-0.6.1-compact.zip index 2d5c125be..b57f7d2ae 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.1-compact.zip and b/tests/ast-parsing/compile/enum-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.1-legacy.zip b/tests/ast-parsing/compile/enum-0.6.1-legacy.zip index 9c2e8d094..d0a4b7211 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.1-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.10-compact.zip b/tests/ast-parsing/compile/enum-0.6.10-compact.zip index c3bcbabe0..dc2e6ff45 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.10-compact.zip and b/tests/ast-parsing/compile/enum-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.10-legacy.zip b/tests/ast-parsing/compile/enum-0.6.10-legacy.zip index 38af8ef7e..1b8ad8076 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.10-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.11-compact.zip b/tests/ast-parsing/compile/enum-0.6.11-compact.zip index 138db1212..080170352 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.11-compact.zip and b/tests/ast-parsing/compile/enum-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.11-legacy.zip b/tests/ast-parsing/compile/enum-0.6.11-legacy.zip index dda876795..e7ed0774f 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.11-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.12-compact.zip b/tests/ast-parsing/compile/enum-0.6.12-compact.zip index 8fa1a730f..c5f720cf4 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.12-compact.zip and b/tests/ast-parsing/compile/enum-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.12-legacy.zip b/tests/ast-parsing/compile/enum-0.6.12-legacy.zip index a784ce669..ddef7e594 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.12-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.2-compact.zip b/tests/ast-parsing/compile/enum-0.6.2-compact.zip index 32947752c..153ae62a3 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.2-compact.zip and b/tests/ast-parsing/compile/enum-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.2-legacy.zip b/tests/ast-parsing/compile/enum-0.6.2-legacy.zip index 8bb923006..cb054a77b 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.2-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.3-compact.zip b/tests/ast-parsing/compile/enum-0.6.3-compact.zip index 64a2f4894..7daea1d41 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.3-compact.zip and b/tests/ast-parsing/compile/enum-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.3-legacy.zip b/tests/ast-parsing/compile/enum-0.6.3-legacy.zip index f2af86360..120d02308 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.3-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.4-compact.zip b/tests/ast-parsing/compile/enum-0.6.4-compact.zip index ba7b51ebb..3bf904ab9 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.4-compact.zip and b/tests/ast-parsing/compile/enum-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.4-legacy.zip b/tests/ast-parsing/compile/enum-0.6.4-legacy.zip index 1b1313a30..bec5bb842 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.4-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.5-compact.zip b/tests/ast-parsing/compile/enum-0.6.5-compact.zip index 0a0db480c..844ee653f 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.5-compact.zip and b/tests/ast-parsing/compile/enum-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.5-legacy.zip b/tests/ast-parsing/compile/enum-0.6.5-legacy.zip index 0955f5da2..fcdd66991 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.5-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.6-compact.zip b/tests/ast-parsing/compile/enum-0.6.6-compact.zip index 15aadf716..c43236404 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.6-compact.zip and b/tests/ast-parsing/compile/enum-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.6-legacy.zip b/tests/ast-parsing/compile/enum-0.6.6-legacy.zip index 26d88c9e0..2f10332f1 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.6-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.7-compact.zip b/tests/ast-parsing/compile/enum-0.6.7-compact.zip index 924045c0f..c652c074b 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.7-compact.zip and b/tests/ast-parsing/compile/enum-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.7-legacy.zip b/tests/ast-parsing/compile/enum-0.6.7-legacy.zip index 2cd886a2f..e148fbb16 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.7-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.8-compact.zip b/tests/ast-parsing/compile/enum-0.6.8-compact.zip index e10c168f5..bb11a3fa5 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.8-compact.zip and b/tests/ast-parsing/compile/enum-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.8-legacy.zip b/tests/ast-parsing/compile/enum-0.6.8-legacy.zip index 578ab0146..27e5a2074 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.8-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.9-compact.zip b/tests/ast-parsing/compile/enum-0.6.9-compact.zip index 5b5825dfd..bbe085bf9 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.9-compact.zip and b/tests/ast-parsing/compile/enum-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.6.9-legacy.zip b/tests/ast-parsing/compile/enum-0.6.9-legacy.zip index 858cd1db9..795006523 100644 Binary files a/tests/ast-parsing/compile/enum-0.6.9-legacy.zip and b/tests/ast-parsing/compile/enum-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.0-compact.zip b/tests/ast-parsing/compile/enum-0.7.0-compact.zip index b019384ff..debfff653 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.0-compact.zip and b/tests/ast-parsing/compile/enum-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.0-legacy.zip b/tests/ast-parsing/compile/enum-0.7.0-legacy.zip index 63d310cb8..ad903118d 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.0-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.1-compact.zip b/tests/ast-parsing/compile/enum-0.7.1-compact.zip index d490bdb8b..773ca12c6 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.1-compact.zip and b/tests/ast-parsing/compile/enum-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.1-legacy.zip b/tests/ast-parsing/compile/enum-0.7.1-legacy.zip index 5ab7245ff..f4bde6b18 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.1-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.2-compact.zip b/tests/ast-parsing/compile/enum-0.7.2-compact.zip index 77fb033a4..7b12dead9 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.2-compact.zip and b/tests/ast-parsing/compile/enum-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.2-legacy.zip b/tests/ast-parsing/compile/enum-0.7.2-legacy.zip index 1e68a78f7..3c42f9b98 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.2-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.3-compact.zip b/tests/ast-parsing/compile/enum-0.7.3-compact.zip index cc813bdcc..0428ae37c 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.3-compact.zip and b/tests/ast-parsing/compile/enum-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.3-legacy.zip b/tests/ast-parsing/compile/enum-0.7.3-legacy.zip index aaec5c243..3ccc9e986 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.3-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.4-compact.zip b/tests/ast-parsing/compile/enum-0.7.4-compact.zip index 6fd570010..4eb811932 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.4-compact.zip and b/tests/ast-parsing/compile/enum-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.4-legacy.zip b/tests/ast-parsing/compile/enum-0.7.4-legacy.zip index 9ba53ac87..9721f1534 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.4-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.5-compact.zip b/tests/ast-parsing/compile/enum-0.7.5-compact.zip index 9005e18b9..6804b1e95 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.5-compact.zip and b/tests/ast-parsing/compile/enum-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.5-legacy.zip b/tests/ast-parsing/compile/enum-0.7.5-legacy.zip index 726e26904..bf68f3370 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.5-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.6-compact.zip b/tests/ast-parsing/compile/enum-0.7.6-compact.zip index d91a12c53..ca2f1f4b8 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.6-compact.zip and b/tests/ast-parsing/compile/enum-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.7.6-legacy.zip b/tests/ast-parsing/compile/enum-0.7.6-legacy.zip index c8f113e2f..3989fae16 100644 Binary files a/tests/ast-parsing/compile/enum-0.7.6-legacy.zip and b/tests/ast-parsing/compile/enum-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.0-compact.zip b/tests/ast-parsing/compile/enum-0.8.0-compact.zip index 4d68cdefc..66082b4a9 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.0-compact.zip and b/tests/ast-parsing/compile/enum-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.1-compact.zip b/tests/ast-parsing/compile/enum-0.8.1-compact.zip index b0979b07c..fbb91a2ee 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.1-compact.zip and b/tests/ast-parsing/compile/enum-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.2-compact.zip b/tests/ast-parsing/compile/enum-0.8.2-compact.zip index e51812685..f0e0be06d 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.2-compact.zip and b/tests/ast-parsing/compile/enum-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.3-compact.zip b/tests/ast-parsing/compile/enum-0.8.3-compact.zip index 029d51737..5947dbe50 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.3-compact.zip and b/tests/ast-parsing/compile/enum-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.4-compact.zip b/tests/ast-parsing/compile/enum-0.8.4-compact.zip index 60ca218e4..6512f0b90 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.4-compact.zip and b/tests/ast-parsing/compile/enum-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.5-compact.zip b/tests/ast-parsing/compile/enum-0.8.5-compact.zip index d5826e5b0..3317b79ca 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.5-compact.zip and b/tests/ast-parsing/compile/enum-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.6-compact.zip b/tests/ast-parsing/compile/enum-0.8.6-compact.zip index 72d52511c..3aa2b7e7f 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.6-compact.zip and b/tests/ast-parsing/compile/enum-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/enum-0.8.7-compact.zip b/tests/ast-parsing/compile/enum-0.8.7-compact.zip index a0ca06027..f95b8a581 100644 Binary files a/tests/ast-parsing/compile/enum-0.8.7-compact.zip and b/tests/ast-parsing/compile/enum-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.0-legacy.zip b/tests/ast-parsing/compile/event-0.4.0-legacy.zip index 3ab10a0ad..304f97d4e 100644 Binary files a/tests/ast-parsing/compile/event-0.4.0-legacy.zip and b/tests/ast-parsing/compile/event-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.1-legacy.zip b/tests/ast-parsing/compile/event-0.4.1-legacy.zip index efbcc6c59..ffc46e9c0 100644 Binary files a/tests/ast-parsing/compile/event-0.4.1-legacy.zip and b/tests/ast-parsing/compile/event-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.10-legacy.zip b/tests/ast-parsing/compile/event-0.4.10-legacy.zip index 97712e21e..9ce61476e 100644 Binary files a/tests/ast-parsing/compile/event-0.4.10-legacy.zip and b/tests/ast-parsing/compile/event-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.11-legacy.zip b/tests/ast-parsing/compile/event-0.4.11-legacy.zip index 3112872cd..54b2d4ae8 100644 Binary files a/tests/ast-parsing/compile/event-0.4.11-legacy.zip and b/tests/ast-parsing/compile/event-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.12-compact.zip b/tests/ast-parsing/compile/event-0.4.12-compact.zip index 0b39919c4..18f1cc54d 100644 Binary files a/tests/ast-parsing/compile/event-0.4.12-compact.zip and b/tests/ast-parsing/compile/event-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.12-legacy.zip b/tests/ast-parsing/compile/event-0.4.12-legacy.zip index 761097197..88fed3cc6 100644 Binary files a/tests/ast-parsing/compile/event-0.4.12-legacy.zip and b/tests/ast-parsing/compile/event-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.13-compact.zip b/tests/ast-parsing/compile/event-0.4.13-compact.zip index c212c3d7f..bab6da0be 100644 Binary files a/tests/ast-parsing/compile/event-0.4.13-compact.zip and b/tests/ast-parsing/compile/event-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.13-legacy.zip b/tests/ast-parsing/compile/event-0.4.13-legacy.zip index e0eb34483..657765742 100644 Binary files a/tests/ast-parsing/compile/event-0.4.13-legacy.zip and b/tests/ast-parsing/compile/event-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.14-compact.zip b/tests/ast-parsing/compile/event-0.4.14-compact.zip index 2c813adbf..4e216f375 100644 Binary files a/tests/ast-parsing/compile/event-0.4.14-compact.zip and b/tests/ast-parsing/compile/event-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.14-legacy.zip b/tests/ast-parsing/compile/event-0.4.14-legacy.zip index e6944a930..335e7891d 100644 Binary files a/tests/ast-parsing/compile/event-0.4.14-legacy.zip and b/tests/ast-parsing/compile/event-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.15-compact.zip b/tests/ast-parsing/compile/event-0.4.15-compact.zip index d8e4987f9..3a35b6a7d 100644 Binary files a/tests/ast-parsing/compile/event-0.4.15-compact.zip and b/tests/ast-parsing/compile/event-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.15-legacy.zip b/tests/ast-parsing/compile/event-0.4.15-legacy.zip index ec2ad8c6a..2a6a559d8 100644 Binary files a/tests/ast-parsing/compile/event-0.4.15-legacy.zip and b/tests/ast-parsing/compile/event-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.16-compact.zip b/tests/ast-parsing/compile/event-0.4.16-compact.zip index 54bd60700..f4d68acfb 100644 Binary files a/tests/ast-parsing/compile/event-0.4.16-compact.zip and b/tests/ast-parsing/compile/event-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.16-legacy.zip b/tests/ast-parsing/compile/event-0.4.16-legacy.zip index 56ab1037d..d9418e73c 100644 Binary files a/tests/ast-parsing/compile/event-0.4.16-legacy.zip and b/tests/ast-parsing/compile/event-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.17-compact.zip b/tests/ast-parsing/compile/event-0.4.17-compact.zip index e0e95559b..3f25420d8 100644 Binary files a/tests/ast-parsing/compile/event-0.4.17-compact.zip and b/tests/ast-parsing/compile/event-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.17-legacy.zip b/tests/ast-parsing/compile/event-0.4.17-legacy.zip index 06924efda..6da9f8fbc 100644 Binary files a/tests/ast-parsing/compile/event-0.4.17-legacy.zip and b/tests/ast-parsing/compile/event-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.18-compact.zip b/tests/ast-parsing/compile/event-0.4.18-compact.zip index 28339d829..3a1bec64d 100644 Binary files a/tests/ast-parsing/compile/event-0.4.18-compact.zip and b/tests/ast-parsing/compile/event-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.18-legacy.zip b/tests/ast-parsing/compile/event-0.4.18-legacy.zip index fa1f2db25..2333ca3dc 100644 Binary files a/tests/ast-parsing/compile/event-0.4.18-legacy.zip and b/tests/ast-parsing/compile/event-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.19-compact.zip b/tests/ast-parsing/compile/event-0.4.19-compact.zip index 309f81c45..003dd44ff 100644 Binary files a/tests/ast-parsing/compile/event-0.4.19-compact.zip and b/tests/ast-parsing/compile/event-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.19-legacy.zip b/tests/ast-parsing/compile/event-0.4.19-legacy.zip index 5949a3bd4..457ddccf2 100644 Binary files a/tests/ast-parsing/compile/event-0.4.19-legacy.zip and b/tests/ast-parsing/compile/event-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.2-legacy.zip b/tests/ast-parsing/compile/event-0.4.2-legacy.zip index 823e68278..aa970dd3e 100644 Binary files a/tests/ast-parsing/compile/event-0.4.2-legacy.zip and b/tests/ast-parsing/compile/event-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.20-compact.zip b/tests/ast-parsing/compile/event-0.4.20-compact.zip index f1c864220..463765c09 100644 Binary files a/tests/ast-parsing/compile/event-0.4.20-compact.zip and b/tests/ast-parsing/compile/event-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.20-legacy.zip b/tests/ast-parsing/compile/event-0.4.20-legacy.zip index 9daced001..bcf5877d1 100644 Binary files a/tests/ast-parsing/compile/event-0.4.20-legacy.zip and b/tests/ast-parsing/compile/event-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.21-compact.zip b/tests/ast-parsing/compile/event-0.4.21-compact.zip index e43704df0..3c4b393a7 100644 Binary files a/tests/ast-parsing/compile/event-0.4.21-compact.zip and b/tests/ast-parsing/compile/event-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.21-legacy.zip b/tests/ast-parsing/compile/event-0.4.21-legacy.zip index eb4b2ea9d..ae9d995b6 100644 Binary files a/tests/ast-parsing/compile/event-0.4.21-legacy.zip and b/tests/ast-parsing/compile/event-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.22-compact.zip b/tests/ast-parsing/compile/event-0.4.22-compact.zip index 7ec59ef9c..83d1ceb9d 100644 Binary files a/tests/ast-parsing/compile/event-0.4.22-compact.zip and b/tests/ast-parsing/compile/event-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.22-legacy.zip b/tests/ast-parsing/compile/event-0.4.22-legacy.zip index 4f507d802..7e8c0c5bd 100644 Binary files a/tests/ast-parsing/compile/event-0.4.22-legacy.zip and b/tests/ast-parsing/compile/event-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.23-compact.zip b/tests/ast-parsing/compile/event-0.4.23-compact.zip index a682094ba..8e60a8d94 100644 Binary files a/tests/ast-parsing/compile/event-0.4.23-compact.zip and b/tests/ast-parsing/compile/event-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.23-legacy.zip b/tests/ast-parsing/compile/event-0.4.23-legacy.zip index a27758608..560dcc025 100644 Binary files a/tests/ast-parsing/compile/event-0.4.23-legacy.zip and b/tests/ast-parsing/compile/event-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.24-compact.zip b/tests/ast-parsing/compile/event-0.4.24-compact.zip index 41e50a477..bf5e59465 100644 Binary files a/tests/ast-parsing/compile/event-0.4.24-compact.zip and b/tests/ast-parsing/compile/event-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.24-legacy.zip b/tests/ast-parsing/compile/event-0.4.24-legacy.zip index acaeed24b..9ed344956 100644 Binary files a/tests/ast-parsing/compile/event-0.4.24-legacy.zip and b/tests/ast-parsing/compile/event-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.25-compact.zip b/tests/ast-parsing/compile/event-0.4.25-compact.zip index af82d9f06..fae620fe6 100644 Binary files a/tests/ast-parsing/compile/event-0.4.25-compact.zip and b/tests/ast-parsing/compile/event-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.25-legacy.zip b/tests/ast-parsing/compile/event-0.4.25-legacy.zip index 34c81ea27..f951f912c 100644 Binary files a/tests/ast-parsing/compile/event-0.4.25-legacy.zip and b/tests/ast-parsing/compile/event-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.26-compact.zip b/tests/ast-parsing/compile/event-0.4.26-compact.zip index 48358d5ca..ea1b5da2e 100644 Binary files a/tests/ast-parsing/compile/event-0.4.26-compact.zip and b/tests/ast-parsing/compile/event-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.26-legacy.zip b/tests/ast-parsing/compile/event-0.4.26-legacy.zip index 0a0fea4fa..969ad3cb8 100644 Binary files a/tests/ast-parsing/compile/event-0.4.26-legacy.zip and b/tests/ast-parsing/compile/event-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.3-legacy.zip b/tests/ast-parsing/compile/event-0.4.3-legacy.zip index 05948ca18..98217ce16 100644 Binary files a/tests/ast-parsing/compile/event-0.4.3-legacy.zip and b/tests/ast-parsing/compile/event-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.4-legacy.zip b/tests/ast-parsing/compile/event-0.4.4-legacy.zip index 814b72a52..fb6d972f4 100644 Binary files a/tests/ast-parsing/compile/event-0.4.4-legacy.zip and b/tests/ast-parsing/compile/event-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.5-legacy.zip b/tests/ast-parsing/compile/event-0.4.5-legacy.zip index 9b0d808f1..df2cf7e92 100644 Binary files a/tests/ast-parsing/compile/event-0.4.5-legacy.zip and b/tests/ast-parsing/compile/event-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.6-legacy.zip b/tests/ast-parsing/compile/event-0.4.6-legacy.zip index 86733560d..b79447f34 100644 Binary files a/tests/ast-parsing/compile/event-0.4.6-legacy.zip and b/tests/ast-parsing/compile/event-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.7-legacy.zip b/tests/ast-parsing/compile/event-0.4.7-legacy.zip index da5018729..ec3336007 100644 Binary files a/tests/ast-parsing/compile/event-0.4.7-legacy.zip and b/tests/ast-parsing/compile/event-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.8-legacy.zip b/tests/ast-parsing/compile/event-0.4.8-legacy.zip index ed158d7d4..8fd1e8226 100644 Binary files a/tests/ast-parsing/compile/event-0.4.8-legacy.zip and b/tests/ast-parsing/compile/event-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.4.9-legacy.zip b/tests/ast-parsing/compile/event-0.4.9-legacy.zip index 6b2571f17..1313f3643 100644 Binary files a/tests/ast-parsing/compile/event-0.4.9-legacy.zip and b/tests/ast-parsing/compile/event-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.0-compact.zip b/tests/ast-parsing/compile/event-0.5.0-compact.zip index 1551cb530..6809e119d 100644 Binary files a/tests/ast-parsing/compile/event-0.5.0-compact.zip and b/tests/ast-parsing/compile/event-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.0-legacy.zip b/tests/ast-parsing/compile/event-0.5.0-legacy.zip index d01391b4a..2b33c1f30 100644 Binary files a/tests/ast-parsing/compile/event-0.5.0-legacy.zip and b/tests/ast-parsing/compile/event-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.1-compact.zip b/tests/ast-parsing/compile/event-0.5.1-compact.zip index c2e54dac4..5772bee6c 100644 Binary files a/tests/ast-parsing/compile/event-0.5.1-compact.zip and b/tests/ast-parsing/compile/event-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.1-legacy.zip b/tests/ast-parsing/compile/event-0.5.1-legacy.zip index d8dea09c8..1a5457f7b 100644 Binary files a/tests/ast-parsing/compile/event-0.5.1-legacy.zip and b/tests/ast-parsing/compile/event-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.10-compact.zip b/tests/ast-parsing/compile/event-0.5.10-compact.zip index 4c0c11d27..9e21f0641 100644 Binary files a/tests/ast-parsing/compile/event-0.5.10-compact.zip and b/tests/ast-parsing/compile/event-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.10-legacy.zip b/tests/ast-parsing/compile/event-0.5.10-legacy.zip index 685eb2082..9d42f1c7a 100644 Binary files a/tests/ast-parsing/compile/event-0.5.10-legacy.zip and b/tests/ast-parsing/compile/event-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.11-compact.zip b/tests/ast-parsing/compile/event-0.5.11-compact.zip index 582eb2d47..1d854e3e9 100644 Binary files a/tests/ast-parsing/compile/event-0.5.11-compact.zip and b/tests/ast-parsing/compile/event-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.11-legacy.zip b/tests/ast-parsing/compile/event-0.5.11-legacy.zip index 3b49fd3d8..d8c48774e 100644 Binary files a/tests/ast-parsing/compile/event-0.5.11-legacy.zip and b/tests/ast-parsing/compile/event-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.12-compact.zip b/tests/ast-parsing/compile/event-0.5.12-compact.zip index 3aa988315..f0c77103d 100644 Binary files a/tests/ast-parsing/compile/event-0.5.12-compact.zip and b/tests/ast-parsing/compile/event-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.12-legacy.zip b/tests/ast-parsing/compile/event-0.5.12-legacy.zip index d1d2832d7..9cee29860 100644 Binary files a/tests/ast-parsing/compile/event-0.5.12-legacy.zip and b/tests/ast-parsing/compile/event-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.13-compact.zip b/tests/ast-parsing/compile/event-0.5.13-compact.zip index 386f73539..6ffaf108d 100644 Binary files a/tests/ast-parsing/compile/event-0.5.13-compact.zip and b/tests/ast-parsing/compile/event-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.13-legacy.zip b/tests/ast-parsing/compile/event-0.5.13-legacy.zip index 741721816..f47d23c2b 100644 Binary files a/tests/ast-parsing/compile/event-0.5.13-legacy.zip and b/tests/ast-parsing/compile/event-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.14-compact.zip b/tests/ast-parsing/compile/event-0.5.14-compact.zip index 991a0b5f2..644aab7f6 100644 Binary files a/tests/ast-parsing/compile/event-0.5.14-compact.zip and b/tests/ast-parsing/compile/event-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.14-legacy.zip b/tests/ast-parsing/compile/event-0.5.14-legacy.zip index ade44beab..0fdba2085 100644 Binary files a/tests/ast-parsing/compile/event-0.5.14-legacy.zip and b/tests/ast-parsing/compile/event-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.15-compact.zip b/tests/ast-parsing/compile/event-0.5.15-compact.zip index d6cf03eb5..d76ee04f4 100644 Binary files a/tests/ast-parsing/compile/event-0.5.15-compact.zip and b/tests/ast-parsing/compile/event-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.15-legacy.zip b/tests/ast-parsing/compile/event-0.5.15-legacy.zip index 1c1c9d64d..79565cee7 100644 Binary files a/tests/ast-parsing/compile/event-0.5.15-legacy.zip and b/tests/ast-parsing/compile/event-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.16-compact.zip b/tests/ast-parsing/compile/event-0.5.16-compact.zip index a94a5c9a6..6df6c1a87 100644 Binary files a/tests/ast-parsing/compile/event-0.5.16-compact.zip and b/tests/ast-parsing/compile/event-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.16-legacy.zip b/tests/ast-parsing/compile/event-0.5.16-legacy.zip index bdb4ace52..2998ad4ab 100644 Binary files a/tests/ast-parsing/compile/event-0.5.16-legacy.zip and b/tests/ast-parsing/compile/event-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.17-compact.zip b/tests/ast-parsing/compile/event-0.5.17-compact.zip index bf87c62a5..822590763 100644 Binary files a/tests/ast-parsing/compile/event-0.5.17-compact.zip and b/tests/ast-parsing/compile/event-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.17-legacy.zip b/tests/ast-parsing/compile/event-0.5.17-legacy.zip index 4931da862..a02567d3e 100644 Binary files a/tests/ast-parsing/compile/event-0.5.17-legacy.zip and b/tests/ast-parsing/compile/event-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.2-compact.zip b/tests/ast-parsing/compile/event-0.5.2-compact.zip index 0f688ceb6..f5b10100d 100644 Binary files a/tests/ast-parsing/compile/event-0.5.2-compact.zip and b/tests/ast-parsing/compile/event-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.2-legacy.zip b/tests/ast-parsing/compile/event-0.5.2-legacy.zip index 0005f8d4f..c6e34c598 100644 Binary files a/tests/ast-parsing/compile/event-0.5.2-legacy.zip and b/tests/ast-parsing/compile/event-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.3-compact.zip b/tests/ast-parsing/compile/event-0.5.3-compact.zip index 65b278f2a..a9fc9175f 100644 Binary files a/tests/ast-parsing/compile/event-0.5.3-compact.zip and b/tests/ast-parsing/compile/event-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.3-legacy.zip b/tests/ast-parsing/compile/event-0.5.3-legacy.zip index 224c27384..98b5a60ce 100644 Binary files a/tests/ast-parsing/compile/event-0.5.3-legacy.zip and b/tests/ast-parsing/compile/event-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.4-compact.zip b/tests/ast-parsing/compile/event-0.5.4-compact.zip index 9660e06ea..6e94a9d78 100644 Binary files a/tests/ast-parsing/compile/event-0.5.4-compact.zip and b/tests/ast-parsing/compile/event-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.4-legacy.zip b/tests/ast-parsing/compile/event-0.5.4-legacy.zip index dcbcf2e89..94de467a7 100644 Binary files a/tests/ast-parsing/compile/event-0.5.4-legacy.zip and b/tests/ast-parsing/compile/event-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.5-compact.zip b/tests/ast-parsing/compile/event-0.5.5-compact.zip index 021c83ad9..e9240c1af 100644 Binary files a/tests/ast-parsing/compile/event-0.5.5-compact.zip and b/tests/ast-parsing/compile/event-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.5-legacy.zip b/tests/ast-parsing/compile/event-0.5.5-legacy.zip index dc51826bd..c0f960a7b 100644 Binary files a/tests/ast-parsing/compile/event-0.5.5-legacy.zip and b/tests/ast-parsing/compile/event-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.6-compact.zip b/tests/ast-parsing/compile/event-0.5.6-compact.zip index 551a27477..d191fc85d 100644 Binary files a/tests/ast-parsing/compile/event-0.5.6-compact.zip and b/tests/ast-parsing/compile/event-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.6-legacy.zip b/tests/ast-parsing/compile/event-0.5.6-legacy.zip index afb535cd2..70151da1a 100644 Binary files a/tests/ast-parsing/compile/event-0.5.6-legacy.zip and b/tests/ast-parsing/compile/event-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.7-compact.zip b/tests/ast-parsing/compile/event-0.5.7-compact.zip index cf597406e..f0d43aedf 100644 Binary files a/tests/ast-parsing/compile/event-0.5.7-compact.zip and b/tests/ast-parsing/compile/event-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.7-legacy.zip b/tests/ast-parsing/compile/event-0.5.7-legacy.zip index e425fbb47..9b7b329ce 100644 Binary files a/tests/ast-parsing/compile/event-0.5.7-legacy.zip and b/tests/ast-parsing/compile/event-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.8-compact.zip b/tests/ast-parsing/compile/event-0.5.8-compact.zip index 59684ed76..ef25ab5fc 100644 Binary files a/tests/ast-parsing/compile/event-0.5.8-compact.zip and b/tests/ast-parsing/compile/event-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.8-legacy.zip b/tests/ast-parsing/compile/event-0.5.8-legacy.zip index 07c62e346..15a7339e0 100644 Binary files a/tests/ast-parsing/compile/event-0.5.8-legacy.zip and b/tests/ast-parsing/compile/event-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.9-compact.zip b/tests/ast-parsing/compile/event-0.5.9-compact.zip index 166d4e96a..318fe28f0 100644 Binary files a/tests/ast-parsing/compile/event-0.5.9-compact.zip and b/tests/ast-parsing/compile/event-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.5.9-legacy.zip b/tests/ast-parsing/compile/event-0.5.9-legacy.zip index 6bde6921b..3c3422a3f 100644 Binary files a/tests/ast-parsing/compile/event-0.5.9-legacy.zip and b/tests/ast-parsing/compile/event-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.0-compact.zip b/tests/ast-parsing/compile/event-0.6.0-compact.zip index 5ae55ec5e..5a60fb00a 100644 Binary files a/tests/ast-parsing/compile/event-0.6.0-compact.zip and b/tests/ast-parsing/compile/event-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.0-legacy.zip b/tests/ast-parsing/compile/event-0.6.0-legacy.zip index f5b3152c7..2987fd4cd 100644 Binary files a/tests/ast-parsing/compile/event-0.6.0-legacy.zip and b/tests/ast-parsing/compile/event-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.1-compact.zip b/tests/ast-parsing/compile/event-0.6.1-compact.zip index dd317856e..6fa53c764 100644 Binary files a/tests/ast-parsing/compile/event-0.6.1-compact.zip and b/tests/ast-parsing/compile/event-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.1-legacy.zip b/tests/ast-parsing/compile/event-0.6.1-legacy.zip index 4d5d6f4d4..653aa30bf 100644 Binary files a/tests/ast-parsing/compile/event-0.6.1-legacy.zip and b/tests/ast-parsing/compile/event-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.10-compact.zip b/tests/ast-parsing/compile/event-0.6.10-compact.zip index 20f7fe150..ff864ae67 100644 Binary files a/tests/ast-parsing/compile/event-0.6.10-compact.zip and b/tests/ast-parsing/compile/event-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.10-legacy.zip b/tests/ast-parsing/compile/event-0.6.10-legacy.zip index ecc866acf..e3bc3c617 100644 Binary files a/tests/ast-parsing/compile/event-0.6.10-legacy.zip and b/tests/ast-parsing/compile/event-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.11-compact.zip b/tests/ast-parsing/compile/event-0.6.11-compact.zip index c1038bd28..aae69a614 100644 Binary files a/tests/ast-parsing/compile/event-0.6.11-compact.zip and b/tests/ast-parsing/compile/event-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.11-legacy.zip b/tests/ast-parsing/compile/event-0.6.11-legacy.zip index d3d7d8b14..6f53856a0 100644 Binary files a/tests/ast-parsing/compile/event-0.6.11-legacy.zip and b/tests/ast-parsing/compile/event-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.12-compact.zip b/tests/ast-parsing/compile/event-0.6.12-compact.zip index 8020bc92f..8975fa12a 100644 Binary files a/tests/ast-parsing/compile/event-0.6.12-compact.zip and b/tests/ast-parsing/compile/event-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.12-legacy.zip b/tests/ast-parsing/compile/event-0.6.12-legacy.zip index 4f47684b5..217f10f18 100644 Binary files a/tests/ast-parsing/compile/event-0.6.12-legacy.zip and b/tests/ast-parsing/compile/event-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.2-compact.zip b/tests/ast-parsing/compile/event-0.6.2-compact.zip index 5ae724611..c585d6e4b 100644 Binary files a/tests/ast-parsing/compile/event-0.6.2-compact.zip and b/tests/ast-parsing/compile/event-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.2-legacy.zip b/tests/ast-parsing/compile/event-0.6.2-legacy.zip index 0746848d9..6383e1362 100644 Binary files a/tests/ast-parsing/compile/event-0.6.2-legacy.zip and b/tests/ast-parsing/compile/event-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.3-compact.zip b/tests/ast-parsing/compile/event-0.6.3-compact.zip index d69f79ad0..376e7ff95 100644 Binary files a/tests/ast-parsing/compile/event-0.6.3-compact.zip and b/tests/ast-parsing/compile/event-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.3-legacy.zip b/tests/ast-parsing/compile/event-0.6.3-legacy.zip index 54cb286d5..80e992781 100644 Binary files a/tests/ast-parsing/compile/event-0.6.3-legacy.zip and b/tests/ast-parsing/compile/event-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.4-compact.zip b/tests/ast-parsing/compile/event-0.6.4-compact.zip index 84e54a139..6966b49b5 100644 Binary files a/tests/ast-parsing/compile/event-0.6.4-compact.zip and b/tests/ast-parsing/compile/event-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.4-legacy.zip b/tests/ast-parsing/compile/event-0.6.4-legacy.zip index 5294cb6fb..05f21a1c3 100644 Binary files a/tests/ast-parsing/compile/event-0.6.4-legacy.zip and b/tests/ast-parsing/compile/event-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.5-compact.zip b/tests/ast-parsing/compile/event-0.6.5-compact.zip index db2364b35..ca00d69f2 100644 Binary files a/tests/ast-parsing/compile/event-0.6.5-compact.zip and b/tests/ast-parsing/compile/event-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.5-legacy.zip b/tests/ast-parsing/compile/event-0.6.5-legacy.zip index 9202d5eac..de48f5c47 100644 Binary files a/tests/ast-parsing/compile/event-0.6.5-legacy.zip and b/tests/ast-parsing/compile/event-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.6-compact.zip b/tests/ast-parsing/compile/event-0.6.6-compact.zip index 8fe173831..cedcdfeae 100644 Binary files a/tests/ast-parsing/compile/event-0.6.6-compact.zip and b/tests/ast-parsing/compile/event-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.6-legacy.zip b/tests/ast-parsing/compile/event-0.6.6-legacy.zip index 5d5720c18..5b9f9c57c 100644 Binary files a/tests/ast-parsing/compile/event-0.6.6-legacy.zip and b/tests/ast-parsing/compile/event-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.7-compact.zip b/tests/ast-parsing/compile/event-0.6.7-compact.zip index 0a84451cd..6066e4fce 100644 Binary files a/tests/ast-parsing/compile/event-0.6.7-compact.zip and b/tests/ast-parsing/compile/event-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.7-legacy.zip b/tests/ast-parsing/compile/event-0.6.7-legacy.zip index 8165b83da..71791b791 100644 Binary files a/tests/ast-parsing/compile/event-0.6.7-legacy.zip and b/tests/ast-parsing/compile/event-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.8-compact.zip b/tests/ast-parsing/compile/event-0.6.8-compact.zip index 3a7e15c1c..104f79a8a 100644 Binary files a/tests/ast-parsing/compile/event-0.6.8-compact.zip and b/tests/ast-parsing/compile/event-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.8-legacy.zip b/tests/ast-parsing/compile/event-0.6.8-legacy.zip index dfb7b0a67..9748d9d07 100644 Binary files a/tests/ast-parsing/compile/event-0.6.8-legacy.zip and b/tests/ast-parsing/compile/event-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.9-compact.zip b/tests/ast-parsing/compile/event-0.6.9-compact.zip index f84335248..aa2cff5a9 100644 Binary files a/tests/ast-parsing/compile/event-0.6.9-compact.zip and b/tests/ast-parsing/compile/event-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.6.9-legacy.zip b/tests/ast-parsing/compile/event-0.6.9-legacy.zip index 04607587f..cbd0c9c51 100644 Binary files a/tests/ast-parsing/compile/event-0.6.9-legacy.zip and b/tests/ast-parsing/compile/event-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.0-compact.zip b/tests/ast-parsing/compile/event-0.7.0-compact.zip index c897bc71b..cadc58980 100644 Binary files a/tests/ast-parsing/compile/event-0.7.0-compact.zip and b/tests/ast-parsing/compile/event-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.0-legacy.zip b/tests/ast-parsing/compile/event-0.7.0-legacy.zip index c7238dcce..6783736fe 100644 Binary files a/tests/ast-parsing/compile/event-0.7.0-legacy.zip and b/tests/ast-parsing/compile/event-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.1-compact.zip b/tests/ast-parsing/compile/event-0.7.1-compact.zip index 937efbdd5..58f982848 100644 Binary files a/tests/ast-parsing/compile/event-0.7.1-compact.zip and b/tests/ast-parsing/compile/event-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.1-legacy.zip b/tests/ast-parsing/compile/event-0.7.1-legacy.zip index c00eedcba..f76cb4f42 100644 Binary files a/tests/ast-parsing/compile/event-0.7.1-legacy.zip and b/tests/ast-parsing/compile/event-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.2-compact.zip b/tests/ast-parsing/compile/event-0.7.2-compact.zip index d9daa556b..74a612aa6 100644 Binary files a/tests/ast-parsing/compile/event-0.7.2-compact.zip and b/tests/ast-parsing/compile/event-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.2-legacy.zip b/tests/ast-parsing/compile/event-0.7.2-legacy.zip index e8b5403ad..d2cdcdbe5 100644 Binary files a/tests/ast-parsing/compile/event-0.7.2-legacy.zip and b/tests/ast-parsing/compile/event-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.3-compact.zip b/tests/ast-parsing/compile/event-0.7.3-compact.zip index bf49b665e..dae4b3076 100644 Binary files a/tests/ast-parsing/compile/event-0.7.3-compact.zip and b/tests/ast-parsing/compile/event-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.3-legacy.zip b/tests/ast-parsing/compile/event-0.7.3-legacy.zip index 10c5b376e..9889ef85d 100644 Binary files a/tests/ast-parsing/compile/event-0.7.3-legacy.zip and b/tests/ast-parsing/compile/event-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.4-compact.zip b/tests/ast-parsing/compile/event-0.7.4-compact.zip index 6d4260ec3..47570cc80 100644 Binary files a/tests/ast-parsing/compile/event-0.7.4-compact.zip and b/tests/ast-parsing/compile/event-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.4-legacy.zip b/tests/ast-parsing/compile/event-0.7.4-legacy.zip index 582a89718..3403e427f 100644 Binary files a/tests/ast-parsing/compile/event-0.7.4-legacy.zip and b/tests/ast-parsing/compile/event-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.5-compact.zip b/tests/ast-parsing/compile/event-0.7.5-compact.zip index 822b4baaf..0757d4749 100644 Binary files a/tests/ast-parsing/compile/event-0.7.5-compact.zip and b/tests/ast-parsing/compile/event-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.5-legacy.zip b/tests/ast-parsing/compile/event-0.7.5-legacy.zip index 657245610..8fcec741f 100644 Binary files a/tests/ast-parsing/compile/event-0.7.5-legacy.zip and b/tests/ast-parsing/compile/event-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.6-compact.zip b/tests/ast-parsing/compile/event-0.7.6-compact.zip index cc3a4fd6d..ea06afe57 100644 Binary files a/tests/ast-parsing/compile/event-0.7.6-compact.zip and b/tests/ast-parsing/compile/event-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.7.6-legacy.zip b/tests/ast-parsing/compile/event-0.7.6-legacy.zip index 426769269..b67f12a21 100644 Binary files a/tests/ast-parsing/compile/event-0.7.6-legacy.zip and b/tests/ast-parsing/compile/event-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.0-compact.zip b/tests/ast-parsing/compile/event-0.8.0-compact.zip index 006a2c99b..92cac8278 100644 Binary files a/tests/ast-parsing/compile/event-0.8.0-compact.zip and b/tests/ast-parsing/compile/event-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.1-compact.zip b/tests/ast-parsing/compile/event-0.8.1-compact.zip index 8919334d2..46918a4c6 100644 Binary files a/tests/ast-parsing/compile/event-0.8.1-compact.zip and b/tests/ast-parsing/compile/event-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.2-compact.zip b/tests/ast-parsing/compile/event-0.8.2-compact.zip index fc0665ecf..fae72f799 100644 Binary files a/tests/ast-parsing/compile/event-0.8.2-compact.zip and b/tests/ast-parsing/compile/event-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.3-compact.zip b/tests/ast-parsing/compile/event-0.8.3-compact.zip index 9e8c6c6b6..3db31cf16 100644 Binary files a/tests/ast-parsing/compile/event-0.8.3-compact.zip and b/tests/ast-parsing/compile/event-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.4-compact.zip b/tests/ast-parsing/compile/event-0.8.4-compact.zip index 35b8479ce..56a7d65e1 100644 Binary files a/tests/ast-parsing/compile/event-0.8.4-compact.zip and b/tests/ast-parsing/compile/event-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.5-compact.zip b/tests/ast-parsing/compile/event-0.8.5-compact.zip index 392f1b125..8d56e6686 100644 Binary files a/tests/ast-parsing/compile/event-0.8.5-compact.zip and b/tests/ast-parsing/compile/event-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.6-compact.zip b/tests/ast-parsing/compile/event-0.8.6-compact.zip index 831374a9a..1e5d04e89 100644 Binary files a/tests/ast-parsing/compile/event-0.8.6-compact.zip and b/tests/ast-parsing/compile/event-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/event-0.8.7-compact.zip b/tests/ast-parsing/compile/event-0.8.7-compact.zip index cbb054384..5adfe62d1 100644 Binary files a/tests/ast-parsing/compile/event-0.8.7-compact.zip and b/tests/ast-parsing/compile/event-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.0-legacy.zip b/tests/ast-parsing/compile/for-0.4.0-legacy.zip index b820080da..2d0b03b4e 100644 Binary files a/tests/ast-parsing/compile/for-0.4.0-legacy.zip and b/tests/ast-parsing/compile/for-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.1-legacy.zip b/tests/ast-parsing/compile/for-0.4.1-legacy.zip index 26e6e390d..4a71c4fb1 100644 Binary files a/tests/ast-parsing/compile/for-0.4.1-legacy.zip and b/tests/ast-parsing/compile/for-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.10-legacy.zip b/tests/ast-parsing/compile/for-0.4.10-legacy.zip index 7bfe63ba2..ae86ad6f4 100644 Binary files a/tests/ast-parsing/compile/for-0.4.10-legacy.zip and b/tests/ast-parsing/compile/for-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.11-legacy.zip b/tests/ast-parsing/compile/for-0.4.11-legacy.zip index 1e917d290..4ea1fbfde 100644 Binary files a/tests/ast-parsing/compile/for-0.4.11-legacy.zip and b/tests/ast-parsing/compile/for-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.12-compact.zip b/tests/ast-parsing/compile/for-0.4.12-compact.zip index 858c47bcb..4d58836a3 100644 Binary files a/tests/ast-parsing/compile/for-0.4.12-compact.zip and b/tests/ast-parsing/compile/for-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.12-legacy.zip b/tests/ast-parsing/compile/for-0.4.12-legacy.zip index 1ffc5e72b..bf1985152 100644 Binary files a/tests/ast-parsing/compile/for-0.4.12-legacy.zip and b/tests/ast-parsing/compile/for-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.13-compact.zip b/tests/ast-parsing/compile/for-0.4.13-compact.zip index 8e39d840d..f2122ae4f 100644 Binary files a/tests/ast-parsing/compile/for-0.4.13-compact.zip and b/tests/ast-parsing/compile/for-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.13-legacy.zip b/tests/ast-parsing/compile/for-0.4.13-legacy.zip index 4cb16bc8d..fcdf5e59d 100644 Binary files a/tests/ast-parsing/compile/for-0.4.13-legacy.zip and b/tests/ast-parsing/compile/for-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.14-compact.zip b/tests/ast-parsing/compile/for-0.4.14-compact.zip index 2f711716b..6e853185d 100644 Binary files a/tests/ast-parsing/compile/for-0.4.14-compact.zip and b/tests/ast-parsing/compile/for-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.14-legacy.zip b/tests/ast-parsing/compile/for-0.4.14-legacy.zip index e4e0ba4aa..aade5b0f8 100644 Binary files a/tests/ast-parsing/compile/for-0.4.14-legacy.zip and b/tests/ast-parsing/compile/for-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.15-compact.zip b/tests/ast-parsing/compile/for-0.4.15-compact.zip index b191468ec..4e3ad8a5a 100644 Binary files a/tests/ast-parsing/compile/for-0.4.15-compact.zip and b/tests/ast-parsing/compile/for-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.15-legacy.zip b/tests/ast-parsing/compile/for-0.4.15-legacy.zip index aa5d30549..bea5494dd 100644 Binary files a/tests/ast-parsing/compile/for-0.4.15-legacy.zip and b/tests/ast-parsing/compile/for-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.16-compact.zip b/tests/ast-parsing/compile/for-0.4.16-compact.zip index 095eceef7..fdddc4177 100644 Binary files a/tests/ast-parsing/compile/for-0.4.16-compact.zip and b/tests/ast-parsing/compile/for-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.16-legacy.zip b/tests/ast-parsing/compile/for-0.4.16-legacy.zip index 6abab211c..0add222ff 100644 Binary files a/tests/ast-parsing/compile/for-0.4.16-legacy.zip and b/tests/ast-parsing/compile/for-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.17-compact.zip b/tests/ast-parsing/compile/for-0.4.17-compact.zip index 3fd330da8..cd94283f3 100644 Binary files a/tests/ast-parsing/compile/for-0.4.17-compact.zip and b/tests/ast-parsing/compile/for-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.17-legacy.zip b/tests/ast-parsing/compile/for-0.4.17-legacy.zip index 7f0accb71..0d5c77b3b 100644 Binary files a/tests/ast-parsing/compile/for-0.4.17-legacy.zip and b/tests/ast-parsing/compile/for-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.18-compact.zip b/tests/ast-parsing/compile/for-0.4.18-compact.zip index e793baa53..0e5e489a3 100644 Binary files a/tests/ast-parsing/compile/for-0.4.18-compact.zip and b/tests/ast-parsing/compile/for-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.18-legacy.zip b/tests/ast-parsing/compile/for-0.4.18-legacy.zip index d275f8b3a..344c6ab51 100644 Binary files a/tests/ast-parsing/compile/for-0.4.18-legacy.zip and b/tests/ast-parsing/compile/for-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.19-compact.zip b/tests/ast-parsing/compile/for-0.4.19-compact.zip index 88d4074b3..90cea2c45 100644 Binary files a/tests/ast-parsing/compile/for-0.4.19-compact.zip and b/tests/ast-parsing/compile/for-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.19-legacy.zip b/tests/ast-parsing/compile/for-0.4.19-legacy.zip index f44de9cfe..ce6019cd9 100644 Binary files a/tests/ast-parsing/compile/for-0.4.19-legacy.zip and b/tests/ast-parsing/compile/for-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.2-legacy.zip b/tests/ast-parsing/compile/for-0.4.2-legacy.zip index fd64a9a0a..329f4532f 100644 Binary files a/tests/ast-parsing/compile/for-0.4.2-legacy.zip and b/tests/ast-parsing/compile/for-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.20-compact.zip b/tests/ast-parsing/compile/for-0.4.20-compact.zip index 50b8a3099..9754c8914 100644 Binary files a/tests/ast-parsing/compile/for-0.4.20-compact.zip and b/tests/ast-parsing/compile/for-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.20-legacy.zip b/tests/ast-parsing/compile/for-0.4.20-legacy.zip index d573a184d..4b51ea912 100644 Binary files a/tests/ast-parsing/compile/for-0.4.20-legacy.zip and b/tests/ast-parsing/compile/for-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.21-compact.zip b/tests/ast-parsing/compile/for-0.4.21-compact.zip index 83dbfb657..65a184c19 100644 Binary files a/tests/ast-parsing/compile/for-0.4.21-compact.zip and b/tests/ast-parsing/compile/for-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.21-legacy.zip b/tests/ast-parsing/compile/for-0.4.21-legacy.zip index 50eaf4466..d6b5cf545 100644 Binary files a/tests/ast-parsing/compile/for-0.4.21-legacy.zip and b/tests/ast-parsing/compile/for-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.22-compact.zip b/tests/ast-parsing/compile/for-0.4.22-compact.zip index 943f75fe1..ddc0fb8ba 100644 Binary files a/tests/ast-parsing/compile/for-0.4.22-compact.zip and b/tests/ast-parsing/compile/for-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.22-legacy.zip b/tests/ast-parsing/compile/for-0.4.22-legacy.zip index 57f32b773..2b7bf0537 100644 Binary files a/tests/ast-parsing/compile/for-0.4.22-legacy.zip and b/tests/ast-parsing/compile/for-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.23-compact.zip b/tests/ast-parsing/compile/for-0.4.23-compact.zip index bdf5a295c..ae7edb9da 100644 Binary files a/tests/ast-parsing/compile/for-0.4.23-compact.zip and b/tests/ast-parsing/compile/for-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.23-legacy.zip b/tests/ast-parsing/compile/for-0.4.23-legacy.zip index 44fd4dd98..1fa1cb963 100644 Binary files a/tests/ast-parsing/compile/for-0.4.23-legacy.zip and b/tests/ast-parsing/compile/for-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.24-compact.zip b/tests/ast-parsing/compile/for-0.4.24-compact.zip index 7227c9db9..588054ca8 100644 Binary files a/tests/ast-parsing/compile/for-0.4.24-compact.zip and b/tests/ast-parsing/compile/for-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.24-legacy.zip b/tests/ast-parsing/compile/for-0.4.24-legacy.zip index b02aa285e..a3fe591c6 100644 Binary files a/tests/ast-parsing/compile/for-0.4.24-legacy.zip and b/tests/ast-parsing/compile/for-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.25-compact.zip b/tests/ast-parsing/compile/for-0.4.25-compact.zip index b0883bf1f..b1c7823bb 100644 Binary files a/tests/ast-parsing/compile/for-0.4.25-compact.zip and b/tests/ast-parsing/compile/for-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.25-legacy.zip b/tests/ast-parsing/compile/for-0.4.25-legacy.zip index 910cf9aef..1210d9735 100644 Binary files a/tests/ast-parsing/compile/for-0.4.25-legacy.zip and b/tests/ast-parsing/compile/for-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.26-compact.zip b/tests/ast-parsing/compile/for-0.4.26-compact.zip index 80274c3b2..af0980143 100644 Binary files a/tests/ast-parsing/compile/for-0.4.26-compact.zip and b/tests/ast-parsing/compile/for-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.26-legacy.zip b/tests/ast-parsing/compile/for-0.4.26-legacy.zip index c890a5ab4..b880a48a6 100644 Binary files a/tests/ast-parsing/compile/for-0.4.26-legacy.zip and b/tests/ast-parsing/compile/for-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.3-legacy.zip b/tests/ast-parsing/compile/for-0.4.3-legacy.zip index 88a7cd22f..ce3401019 100644 Binary files a/tests/ast-parsing/compile/for-0.4.3-legacy.zip and b/tests/ast-parsing/compile/for-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.4-legacy.zip b/tests/ast-parsing/compile/for-0.4.4-legacy.zip index 092223ae2..d67e0a073 100644 Binary files a/tests/ast-parsing/compile/for-0.4.4-legacy.zip and b/tests/ast-parsing/compile/for-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.5-legacy.zip b/tests/ast-parsing/compile/for-0.4.5-legacy.zip index 46e1a80b9..e603634d6 100644 Binary files a/tests/ast-parsing/compile/for-0.4.5-legacy.zip and b/tests/ast-parsing/compile/for-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.6-legacy.zip b/tests/ast-parsing/compile/for-0.4.6-legacy.zip index 2a99213cc..f7b9a0dd9 100644 Binary files a/tests/ast-parsing/compile/for-0.4.6-legacy.zip and b/tests/ast-parsing/compile/for-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.7-legacy.zip b/tests/ast-parsing/compile/for-0.4.7-legacy.zip index 36fe46b4e..b8616fe7f 100644 Binary files a/tests/ast-parsing/compile/for-0.4.7-legacy.zip and b/tests/ast-parsing/compile/for-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.8-legacy.zip b/tests/ast-parsing/compile/for-0.4.8-legacy.zip index cc5245ee7..e08fa422f 100644 Binary files a/tests/ast-parsing/compile/for-0.4.8-legacy.zip and b/tests/ast-parsing/compile/for-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.4.9-legacy.zip b/tests/ast-parsing/compile/for-0.4.9-legacy.zip index b7012f21a..f37e6ae7c 100644 Binary files a/tests/ast-parsing/compile/for-0.4.9-legacy.zip and b/tests/ast-parsing/compile/for-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.0-compact.zip b/tests/ast-parsing/compile/for-0.5.0-compact.zip index 59e09fca3..a0736e42b 100644 Binary files a/tests/ast-parsing/compile/for-0.5.0-compact.zip and b/tests/ast-parsing/compile/for-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.0-legacy.zip b/tests/ast-parsing/compile/for-0.5.0-legacy.zip index b541b2ba9..4fc709b9a 100644 Binary files a/tests/ast-parsing/compile/for-0.5.0-legacy.zip and b/tests/ast-parsing/compile/for-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.1-compact.zip b/tests/ast-parsing/compile/for-0.5.1-compact.zip index 3da53bd8e..822296be2 100644 Binary files a/tests/ast-parsing/compile/for-0.5.1-compact.zip and b/tests/ast-parsing/compile/for-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.1-legacy.zip b/tests/ast-parsing/compile/for-0.5.1-legacy.zip index c7865b47e..b90df3a90 100644 Binary files a/tests/ast-parsing/compile/for-0.5.1-legacy.zip and b/tests/ast-parsing/compile/for-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.10-compact.zip b/tests/ast-parsing/compile/for-0.5.10-compact.zip index 9644c648a..95ac4e52f 100644 Binary files a/tests/ast-parsing/compile/for-0.5.10-compact.zip and b/tests/ast-parsing/compile/for-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.10-legacy.zip b/tests/ast-parsing/compile/for-0.5.10-legacy.zip index 244c6a6b5..bbbb2d5fa 100644 Binary files a/tests/ast-parsing/compile/for-0.5.10-legacy.zip and b/tests/ast-parsing/compile/for-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.11-compact.zip b/tests/ast-parsing/compile/for-0.5.11-compact.zip index 489debbc9..9e42e578c 100644 Binary files a/tests/ast-parsing/compile/for-0.5.11-compact.zip and b/tests/ast-parsing/compile/for-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.11-legacy.zip b/tests/ast-parsing/compile/for-0.5.11-legacy.zip index 3d5cfba10..9ac198efa 100644 Binary files a/tests/ast-parsing/compile/for-0.5.11-legacy.zip and b/tests/ast-parsing/compile/for-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.12-compact.zip b/tests/ast-parsing/compile/for-0.5.12-compact.zip index fc6d2642c..397e81d7f 100644 Binary files a/tests/ast-parsing/compile/for-0.5.12-compact.zip and b/tests/ast-parsing/compile/for-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.12-legacy.zip b/tests/ast-parsing/compile/for-0.5.12-legacy.zip index fde5173e6..4fda1126b 100644 Binary files a/tests/ast-parsing/compile/for-0.5.12-legacy.zip and b/tests/ast-parsing/compile/for-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.13-compact.zip b/tests/ast-parsing/compile/for-0.5.13-compact.zip index 657879581..9e81f1e0d 100644 Binary files a/tests/ast-parsing/compile/for-0.5.13-compact.zip and b/tests/ast-parsing/compile/for-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.13-legacy.zip b/tests/ast-parsing/compile/for-0.5.13-legacy.zip index d77bb3412..f9cf78212 100644 Binary files a/tests/ast-parsing/compile/for-0.5.13-legacy.zip and b/tests/ast-parsing/compile/for-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.14-compact.zip b/tests/ast-parsing/compile/for-0.5.14-compact.zip index a0ea98595..2cd2a6c1a 100644 Binary files a/tests/ast-parsing/compile/for-0.5.14-compact.zip and b/tests/ast-parsing/compile/for-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.14-legacy.zip b/tests/ast-parsing/compile/for-0.5.14-legacy.zip index 307d24088..e2e8b4cab 100644 Binary files a/tests/ast-parsing/compile/for-0.5.14-legacy.zip and b/tests/ast-parsing/compile/for-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.15-compact.zip b/tests/ast-parsing/compile/for-0.5.15-compact.zip index 68449c8ea..a6c831102 100644 Binary files a/tests/ast-parsing/compile/for-0.5.15-compact.zip and b/tests/ast-parsing/compile/for-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.15-legacy.zip b/tests/ast-parsing/compile/for-0.5.15-legacy.zip index d8f6abfe3..65f3217f5 100644 Binary files a/tests/ast-parsing/compile/for-0.5.15-legacy.zip and b/tests/ast-parsing/compile/for-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.16-compact.zip b/tests/ast-parsing/compile/for-0.5.16-compact.zip index b9c6f735b..ae9ce8b73 100644 Binary files a/tests/ast-parsing/compile/for-0.5.16-compact.zip and b/tests/ast-parsing/compile/for-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.16-legacy.zip b/tests/ast-parsing/compile/for-0.5.16-legacy.zip index 5eca84bed..a47abcb65 100644 Binary files a/tests/ast-parsing/compile/for-0.5.16-legacy.zip and b/tests/ast-parsing/compile/for-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.17-compact.zip b/tests/ast-parsing/compile/for-0.5.17-compact.zip index 5d47cd03b..8843b3983 100644 Binary files a/tests/ast-parsing/compile/for-0.5.17-compact.zip and b/tests/ast-parsing/compile/for-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.17-legacy.zip b/tests/ast-parsing/compile/for-0.5.17-legacy.zip index 2b4eb61d6..d357c8c7d 100644 Binary files a/tests/ast-parsing/compile/for-0.5.17-legacy.zip and b/tests/ast-parsing/compile/for-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.2-compact.zip b/tests/ast-parsing/compile/for-0.5.2-compact.zip index e2bee86fc..b43c18659 100644 Binary files a/tests/ast-parsing/compile/for-0.5.2-compact.zip and b/tests/ast-parsing/compile/for-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.2-legacy.zip b/tests/ast-parsing/compile/for-0.5.2-legacy.zip index f0a49f564..f9aaf7474 100644 Binary files a/tests/ast-parsing/compile/for-0.5.2-legacy.zip and b/tests/ast-parsing/compile/for-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.3-compact.zip b/tests/ast-parsing/compile/for-0.5.3-compact.zip index 4360941b5..da48273a1 100644 Binary files a/tests/ast-parsing/compile/for-0.5.3-compact.zip and b/tests/ast-parsing/compile/for-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.3-legacy.zip b/tests/ast-parsing/compile/for-0.5.3-legacy.zip index 15650b0fd..9108b2577 100644 Binary files a/tests/ast-parsing/compile/for-0.5.3-legacy.zip and b/tests/ast-parsing/compile/for-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.4-compact.zip b/tests/ast-parsing/compile/for-0.5.4-compact.zip index 2e44a9ea7..26df17852 100644 Binary files a/tests/ast-parsing/compile/for-0.5.4-compact.zip and b/tests/ast-parsing/compile/for-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.4-legacy.zip b/tests/ast-parsing/compile/for-0.5.4-legacy.zip index 43cd2a461..2e9e4e6ce 100644 Binary files a/tests/ast-parsing/compile/for-0.5.4-legacy.zip and b/tests/ast-parsing/compile/for-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.5-compact.zip b/tests/ast-parsing/compile/for-0.5.5-compact.zip index 444283982..bf305eda9 100644 Binary files a/tests/ast-parsing/compile/for-0.5.5-compact.zip and b/tests/ast-parsing/compile/for-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.5-legacy.zip b/tests/ast-parsing/compile/for-0.5.5-legacy.zip index 633b9b35f..3447f243e 100644 Binary files a/tests/ast-parsing/compile/for-0.5.5-legacy.zip and b/tests/ast-parsing/compile/for-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.6-compact.zip b/tests/ast-parsing/compile/for-0.5.6-compact.zip index 3e747c8d2..5c91cc7df 100644 Binary files a/tests/ast-parsing/compile/for-0.5.6-compact.zip and b/tests/ast-parsing/compile/for-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.6-legacy.zip b/tests/ast-parsing/compile/for-0.5.6-legacy.zip index f37d687f6..140d3e5f4 100644 Binary files a/tests/ast-parsing/compile/for-0.5.6-legacy.zip and b/tests/ast-parsing/compile/for-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.7-compact.zip b/tests/ast-parsing/compile/for-0.5.7-compact.zip index 3f1e207f9..e2c7143bd 100644 Binary files a/tests/ast-parsing/compile/for-0.5.7-compact.zip and b/tests/ast-parsing/compile/for-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.7-legacy.zip b/tests/ast-parsing/compile/for-0.5.7-legacy.zip index c8f1e8bbb..d6c0d3cc5 100644 Binary files a/tests/ast-parsing/compile/for-0.5.7-legacy.zip and b/tests/ast-parsing/compile/for-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.8-compact.zip b/tests/ast-parsing/compile/for-0.5.8-compact.zip index f074ec4f6..121d93e69 100644 Binary files a/tests/ast-parsing/compile/for-0.5.8-compact.zip and b/tests/ast-parsing/compile/for-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.8-legacy.zip b/tests/ast-parsing/compile/for-0.5.8-legacy.zip index 283064c8e..acba1557b 100644 Binary files a/tests/ast-parsing/compile/for-0.5.8-legacy.zip and b/tests/ast-parsing/compile/for-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.9-compact.zip b/tests/ast-parsing/compile/for-0.5.9-compact.zip index ed46b58ba..07cb79010 100644 Binary files a/tests/ast-parsing/compile/for-0.5.9-compact.zip and b/tests/ast-parsing/compile/for-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.5.9-legacy.zip b/tests/ast-parsing/compile/for-0.5.9-legacy.zip index 8f0337947..5a2e0c61a 100644 Binary files a/tests/ast-parsing/compile/for-0.5.9-legacy.zip and b/tests/ast-parsing/compile/for-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.0-compact.zip b/tests/ast-parsing/compile/for-0.6.0-compact.zip index 6874313a5..2bf582fd8 100644 Binary files a/tests/ast-parsing/compile/for-0.6.0-compact.zip and b/tests/ast-parsing/compile/for-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.0-legacy.zip b/tests/ast-parsing/compile/for-0.6.0-legacy.zip index 2563a2b12..a16cd6866 100644 Binary files a/tests/ast-parsing/compile/for-0.6.0-legacy.zip and b/tests/ast-parsing/compile/for-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.1-compact.zip b/tests/ast-parsing/compile/for-0.6.1-compact.zip index 15b5ba978..d74b7b0f8 100644 Binary files a/tests/ast-parsing/compile/for-0.6.1-compact.zip and b/tests/ast-parsing/compile/for-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.1-legacy.zip b/tests/ast-parsing/compile/for-0.6.1-legacy.zip index c49067be7..8385b29f2 100644 Binary files a/tests/ast-parsing/compile/for-0.6.1-legacy.zip and b/tests/ast-parsing/compile/for-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.10-compact.zip b/tests/ast-parsing/compile/for-0.6.10-compact.zip index 1805b017d..fbb108786 100644 Binary files a/tests/ast-parsing/compile/for-0.6.10-compact.zip and b/tests/ast-parsing/compile/for-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.10-legacy.zip b/tests/ast-parsing/compile/for-0.6.10-legacy.zip index d533f952d..7b7d51fd3 100644 Binary files a/tests/ast-parsing/compile/for-0.6.10-legacy.zip and b/tests/ast-parsing/compile/for-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.11-compact.zip b/tests/ast-parsing/compile/for-0.6.11-compact.zip index eec42372f..6fbac5268 100644 Binary files a/tests/ast-parsing/compile/for-0.6.11-compact.zip and b/tests/ast-parsing/compile/for-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.11-legacy.zip b/tests/ast-parsing/compile/for-0.6.11-legacy.zip index 8432b7003..4aeff11e0 100644 Binary files a/tests/ast-parsing/compile/for-0.6.11-legacy.zip and b/tests/ast-parsing/compile/for-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.12-compact.zip b/tests/ast-parsing/compile/for-0.6.12-compact.zip index f37669b2b..fbef5865a 100644 Binary files a/tests/ast-parsing/compile/for-0.6.12-compact.zip and b/tests/ast-parsing/compile/for-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.12-legacy.zip b/tests/ast-parsing/compile/for-0.6.12-legacy.zip index 723374bd7..4d39a91fb 100644 Binary files a/tests/ast-parsing/compile/for-0.6.12-legacy.zip and b/tests/ast-parsing/compile/for-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.2-compact.zip b/tests/ast-parsing/compile/for-0.6.2-compact.zip index 0463e90ac..eb2e6e411 100644 Binary files a/tests/ast-parsing/compile/for-0.6.2-compact.zip and b/tests/ast-parsing/compile/for-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.2-legacy.zip b/tests/ast-parsing/compile/for-0.6.2-legacy.zip index a45809493..6a6d4ae54 100644 Binary files a/tests/ast-parsing/compile/for-0.6.2-legacy.zip and b/tests/ast-parsing/compile/for-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.3-compact.zip b/tests/ast-parsing/compile/for-0.6.3-compact.zip index 1264fbefe..4f2fb47fb 100644 Binary files a/tests/ast-parsing/compile/for-0.6.3-compact.zip and b/tests/ast-parsing/compile/for-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.3-legacy.zip b/tests/ast-parsing/compile/for-0.6.3-legacy.zip index ecf8352c0..3e33b735f 100644 Binary files a/tests/ast-parsing/compile/for-0.6.3-legacy.zip and b/tests/ast-parsing/compile/for-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.4-compact.zip b/tests/ast-parsing/compile/for-0.6.4-compact.zip index e75a13405..16b5cadf9 100644 Binary files a/tests/ast-parsing/compile/for-0.6.4-compact.zip and b/tests/ast-parsing/compile/for-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.4-legacy.zip b/tests/ast-parsing/compile/for-0.6.4-legacy.zip index 0622b60a8..09ae85a45 100644 Binary files a/tests/ast-parsing/compile/for-0.6.4-legacy.zip and b/tests/ast-parsing/compile/for-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.5-compact.zip b/tests/ast-parsing/compile/for-0.6.5-compact.zip index 79ed83313..1748a7848 100644 Binary files a/tests/ast-parsing/compile/for-0.6.5-compact.zip and b/tests/ast-parsing/compile/for-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.5-legacy.zip b/tests/ast-parsing/compile/for-0.6.5-legacy.zip index 54c6bbc09..1d6cf3474 100644 Binary files a/tests/ast-parsing/compile/for-0.6.5-legacy.zip and b/tests/ast-parsing/compile/for-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.6-compact.zip b/tests/ast-parsing/compile/for-0.6.6-compact.zip index 4f6e736fe..bfa6bee99 100644 Binary files a/tests/ast-parsing/compile/for-0.6.6-compact.zip and b/tests/ast-parsing/compile/for-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.6-legacy.zip b/tests/ast-parsing/compile/for-0.6.6-legacy.zip index 311f3f099..529b70d04 100644 Binary files a/tests/ast-parsing/compile/for-0.6.6-legacy.zip and b/tests/ast-parsing/compile/for-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.7-compact.zip b/tests/ast-parsing/compile/for-0.6.7-compact.zip index 3f1ef8958..583b2a457 100644 Binary files a/tests/ast-parsing/compile/for-0.6.7-compact.zip and b/tests/ast-parsing/compile/for-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.7-legacy.zip b/tests/ast-parsing/compile/for-0.6.7-legacy.zip index 7748cddb0..0e055f6a6 100644 Binary files a/tests/ast-parsing/compile/for-0.6.7-legacy.zip and b/tests/ast-parsing/compile/for-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.8-compact.zip b/tests/ast-parsing/compile/for-0.6.8-compact.zip index 554760cec..52a9ef430 100644 Binary files a/tests/ast-parsing/compile/for-0.6.8-compact.zip and b/tests/ast-parsing/compile/for-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.8-legacy.zip b/tests/ast-parsing/compile/for-0.6.8-legacy.zip index b50558fd9..fdd8f7824 100644 Binary files a/tests/ast-parsing/compile/for-0.6.8-legacy.zip and b/tests/ast-parsing/compile/for-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.9-compact.zip b/tests/ast-parsing/compile/for-0.6.9-compact.zip index 25b1f748d..4c8dd6c11 100644 Binary files a/tests/ast-parsing/compile/for-0.6.9-compact.zip and b/tests/ast-parsing/compile/for-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.6.9-legacy.zip b/tests/ast-parsing/compile/for-0.6.9-legacy.zip index e6ab5dc2b..fa470d2b6 100644 Binary files a/tests/ast-parsing/compile/for-0.6.9-legacy.zip and b/tests/ast-parsing/compile/for-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.0-compact.zip b/tests/ast-parsing/compile/for-0.7.0-compact.zip index 28cf00787..0b7652eb3 100644 Binary files a/tests/ast-parsing/compile/for-0.7.0-compact.zip and b/tests/ast-parsing/compile/for-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.0-legacy.zip b/tests/ast-parsing/compile/for-0.7.0-legacy.zip index 5535e1658..b0d15cd1a 100644 Binary files a/tests/ast-parsing/compile/for-0.7.0-legacy.zip and b/tests/ast-parsing/compile/for-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.1-compact.zip b/tests/ast-parsing/compile/for-0.7.1-compact.zip index 4cf076950..b23e0a24c 100644 Binary files a/tests/ast-parsing/compile/for-0.7.1-compact.zip and b/tests/ast-parsing/compile/for-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.1-legacy.zip b/tests/ast-parsing/compile/for-0.7.1-legacy.zip index 7fe3dc8e9..f3d34b999 100644 Binary files a/tests/ast-parsing/compile/for-0.7.1-legacy.zip and b/tests/ast-parsing/compile/for-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.2-compact.zip b/tests/ast-parsing/compile/for-0.7.2-compact.zip index 05e3fc0a9..da341ed49 100644 Binary files a/tests/ast-parsing/compile/for-0.7.2-compact.zip and b/tests/ast-parsing/compile/for-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.2-legacy.zip b/tests/ast-parsing/compile/for-0.7.2-legacy.zip index 9de9f437d..77217fdd7 100644 Binary files a/tests/ast-parsing/compile/for-0.7.2-legacy.zip and b/tests/ast-parsing/compile/for-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.3-compact.zip b/tests/ast-parsing/compile/for-0.7.3-compact.zip index f3d88c676..d23fcf32f 100644 Binary files a/tests/ast-parsing/compile/for-0.7.3-compact.zip and b/tests/ast-parsing/compile/for-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.3-legacy.zip b/tests/ast-parsing/compile/for-0.7.3-legacy.zip index fa02f13c1..5824b8264 100644 Binary files a/tests/ast-parsing/compile/for-0.7.3-legacy.zip and b/tests/ast-parsing/compile/for-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.4-compact.zip b/tests/ast-parsing/compile/for-0.7.4-compact.zip index 62a0de56d..76819aec6 100644 Binary files a/tests/ast-parsing/compile/for-0.7.4-compact.zip and b/tests/ast-parsing/compile/for-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.4-legacy.zip b/tests/ast-parsing/compile/for-0.7.4-legacy.zip index c1c279288..8c5d3f521 100644 Binary files a/tests/ast-parsing/compile/for-0.7.4-legacy.zip and b/tests/ast-parsing/compile/for-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.5-compact.zip b/tests/ast-parsing/compile/for-0.7.5-compact.zip index 48f0b6be3..ccc7f51f4 100644 Binary files a/tests/ast-parsing/compile/for-0.7.5-compact.zip and b/tests/ast-parsing/compile/for-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.5-legacy.zip b/tests/ast-parsing/compile/for-0.7.5-legacy.zip index 1a0c8752c..5d25d56e0 100644 Binary files a/tests/ast-parsing/compile/for-0.7.5-legacy.zip and b/tests/ast-parsing/compile/for-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.6-compact.zip b/tests/ast-parsing/compile/for-0.7.6-compact.zip index e22eb77bc..c8e4a5c85 100644 Binary files a/tests/ast-parsing/compile/for-0.7.6-compact.zip and b/tests/ast-parsing/compile/for-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.7.6-legacy.zip b/tests/ast-parsing/compile/for-0.7.6-legacy.zip index eb1d8d009..d3a0d626d 100644 Binary files a/tests/ast-parsing/compile/for-0.7.6-legacy.zip and b/tests/ast-parsing/compile/for-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.0-compact.zip b/tests/ast-parsing/compile/for-0.8.0-compact.zip index 70b5ba7ab..43eea9727 100644 Binary files a/tests/ast-parsing/compile/for-0.8.0-compact.zip and b/tests/ast-parsing/compile/for-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.1-compact.zip b/tests/ast-parsing/compile/for-0.8.1-compact.zip index 0ae65e537..27ba601f1 100644 Binary files a/tests/ast-parsing/compile/for-0.8.1-compact.zip and b/tests/ast-parsing/compile/for-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.2-compact.zip b/tests/ast-parsing/compile/for-0.8.2-compact.zip index b60dc3ba1..aa82ce09e 100644 Binary files a/tests/ast-parsing/compile/for-0.8.2-compact.zip and b/tests/ast-parsing/compile/for-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.3-compact.zip b/tests/ast-parsing/compile/for-0.8.3-compact.zip index 2739340d9..3c9f4bc7c 100644 Binary files a/tests/ast-parsing/compile/for-0.8.3-compact.zip and b/tests/ast-parsing/compile/for-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.4-compact.zip b/tests/ast-parsing/compile/for-0.8.4-compact.zip index 37cc1fda7..253f45b44 100644 Binary files a/tests/ast-parsing/compile/for-0.8.4-compact.zip and b/tests/ast-parsing/compile/for-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.5-compact.zip b/tests/ast-parsing/compile/for-0.8.5-compact.zip index d26521c31..3c73894cd 100644 Binary files a/tests/ast-parsing/compile/for-0.8.5-compact.zip and b/tests/ast-parsing/compile/for-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.6-compact.zip b/tests/ast-parsing/compile/for-0.8.6-compact.zip index cf0ec6873..bf74aaa25 100644 Binary files a/tests/ast-parsing/compile/for-0.8.6-compact.zip and b/tests/ast-parsing/compile/for-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/for-0.8.7-compact.zip b/tests/ast-parsing/compile/for-0.8.7-compact.zip index d006dd736..dce7f6f00 100644 Binary files a/tests/ast-parsing/compile/for-0.8.7-compact.zip and b/tests/ast-parsing/compile/for-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.0-legacy.zip b/tests/ast-parsing/compile/function-0.4.0-legacy.zip index 1d9a6980a..31498b4da 100644 Binary files a/tests/ast-parsing/compile/function-0.4.0-legacy.zip and b/tests/ast-parsing/compile/function-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.1-legacy.zip b/tests/ast-parsing/compile/function-0.4.1-legacy.zip index 3dc612d25..3fda76b8d 100644 Binary files a/tests/ast-parsing/compile/function-0.4.1-legacy.zip and b/tests/ast-parsing/compile/function-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.10-legacy.zip b/tests/ast-parsing/compile/function-0.4.10-legacy.zip index 3b8f5f8c4..01c7151b1 100644 Binary files a/tests/ast-parsing/compile/function-0.4.10-legacy.zip and b/tests/ast-parsing/compile/function-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.11-legacy.zip b/tests/ast-parsing/compile/function-0.4.11-legacy.zip index 6e43be191..49a669eec 100644 Binary files a/tests/ast-parsing/compile/function-0.4.11-legacy.zip and b/tests/ast-parsing/compile/function-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.12-compact.zip b/tests/ast-parsing/compile/function-0.4.12-compact.zip index 250d964be..9de10a717 100644 Binary files a/tests/ast-parsing/compile/function-0.4.12-compact.zip and b/tests/ast-parsing/compile/function-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.12-legacy.zip b/tests/ast-parsing/compile/function-0.4.12-legacy.zip index ee9bb3eda..72711f438 100644 Binary files a/tests/ast-parsing/compile/function-0.4.12-legacy.zip and b/tests/ast-parsing/compile/function-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.13-compact.zip b/tests/ast-parsing/compile/function-0.4.13-compact.zip index 20adc2aa0..1153f5e2b 100644 Binary files a/tests/ast-parsing/compile/function-0.4.13-compact.zip and b/tests/ast-parsing/compile/function-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.13-legacy.zip b/tests/ast-parsing/compile/function-0.4.13-legacy.zip index 5162d0a9a..e84fef893 100644 Binary files a/tests/ast-parsing/compile/function-0.4.13-legacy.zip and b/tests/ast-parsing/compile/function-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.14-compact.zip b/tests/ast-parsing/compile/function-0.4.14-compact.zip index 785f9bb90..aeaf0fd7f 100644 Binary files a/tests/ast-parsing/compile/function-0.4.14-compact.zip and b/tests/ast-parsing/compile/function-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.14-legacy.zip b/tests/ast-parsing/compile/function-0.4.14-legacy.zip index e22138e63..de5b4176e 100644 Binary files a/tests/ast-parsing/compile/function-0.4.14-legacy.zip and b/tests/ast-parsing/compile/function-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.15-compact.zip b/tests/ast-parsing/compile/function-0.4.15-compact.zip index 6d6e0dc2e..b90ed3404 100644 Binary files a/tests/ast-parsing/compile/function-0.4.15-compact.zip and b/tests/ast-parsing/compile/function-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.15-legacy.zip b/tests/ast-parsing/compile/function-0.4.15-legacy.zip index 1bf6e6e6a..2695ff04b 100644 Binary files a/tests/ast-parsing/compile/function-0.4.15-legacy.zip and b/tests/ast-parsing/compile/function-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.16-compact.zip b/tests/ast-parsing/compile/function-0.4.16-compact.zip index 5991cb883..e2bf9760a 100644 Binary files a/tests/ast-parsing/compile/function-0.4.16-compact.zip and b/tests/ast-parsing/compile/function-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.16-legacy.zip b/tests/ast-parsing/compile/function-0.4.16-legacy.zip index e73843010..0fe08fed3 100644 Binary files a/tests/ast-parsing/compile/function-0.4.16-legacy.zip and b/tests/ast-parsing/compile/function-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.17-compact.zip b/tests/ast-parsing/compile/function-0.4.17-compact.zip index 8f7b67cde..87e6871b7 100644 Binary files a/tests/ast-parsing/compile/function-0.4.17-compact.zip and b/tests/ast-parsing/compile/function-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.17-legacy.zip b/tests/ast-parsing/compile/function-0.4.17-legacy.zip index a4a82b6b4..3cb4d9499 100644 Binary files a/tests/ast-parsing/compile/function-0.4.17-legacy.zip and b/tests/ast-parsing/compile/function-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.18-compact.zip b/tests/ast-parsing/compile/function-0.4.18-compact.zip index d0c1d38bb..e73407b14 100644 Binary files a/tests/ast-parsing/compile/function-0.4.18-compact.zip and b/tests/ast-parsing/compile/function-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.18-legacy.zip b/tests/ast-parsing/compile/function-0.4.18-legacy.zip index bbcf9fc74..c8447ff2f 100644 Binary files a/tests/ast-parsing/compile/function-0.4.18-legacy.zip and b/tests/ast-parsing/compile/function-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.19-compact.zip b/tests/ast-parsing/compile/function-0.4.19-compact.zip index 77f3cf674..5cdd2cf7e 100644 Binary files a/tests/ast-parsing/compile/function-0.4.19-compact.zip and b/tests/ast-parsing/compile/function-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.19-legacy.zip b/tests/ast-parsing/compile/function-0.4.19-legacy.zip index e8a93ffeb..423149a5a 100644 Binary files a/tests/ast-parsing/compile/function-0.4.19-legacy.zip and b/tests/ast-parsing/compile/function-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.2-legacy.zip b/tests/ast-parsing/compile/function-0.4.2-legacy.zip index 138bdf646..45e6a0f02 100644 Binary files a/tests/ast-parsing/compile/function-0.4.2-legacy.zip and b/tests/ast-parsing/compile/function-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.20-compact.zip b/tests/ast-parsing/compile/function-0.4.20-compact.zip index 579e5d6f8..db3cf7eb4 100644 Binary files a/tests/ast-parsing/compile/function-0.4.20-compact.zip and b/tests/ast-parsing/compile/function-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.20-legacy.zip b/tests/ast-parsing/compile/function-0.4.20-legacy.zip index 28ba4a34b..3d41fbd63 100644 Binary files a/tests/ast-parsing/compile/function-0.4.20-legacy.zip and b/tests/ast-parsing/compile/function-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.21-compact.zip b/tests/ast-parsing/compile/function-0.4.21-compact.zip index 43a8b8bdb..412d473a7 100644 Binary files a/tests/ast-parsing/compile/function-0.4.21-compact.zip and b/tests/ast-parsing/compile/function-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.21-legacy.zip b/tests/ast-parsing/compile/function-0.4.21-legacy.zip index 2026f891e..8cf608e09 100644 Binary files a/tests/ast-parsing/compile/function-0.4.21-legacy.zip and b/tests/ast-parsing/compile/function-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.22-compact.zip b/tests/ast-parsing/compile/function-0.4.22-compact.zip index 258b09cf3..22d793cff 100644 Binary files a/tests/ast-parsing/compile/function-0.4.22-compact.zip and b/tests/ast-parsing/compile/function-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.22-legacy.zip b/tests/ast-parsing/compile/function-0.4.22-legacy.zip index b4034d54d..e88197b0b 100644 Binary files a/tests/ast-parsing/compile/function-0.4.22-legacy.zip and b/tests/ast-parsing/compile/function-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.23-compact.zip b/tests/ast-parsing/compile/function-0.4.23-compact.zip index a7765e455..aa9b17cbc 100644 Binary files a/tests/ast-parsing/compile/function-0.4.23-compact.zip and b/tests/ast-parsing/compile/function-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.23-legacy.zip b/tests/ast-parsing/compile/function-0.4.23-legacy.zip index 623921457..869ed23ad 100644 Binary files a/tests/ast-parsing/compile/function-0.4.23-legacy.zip and b/tests/ast-parsing/compile/function-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.24-compact.zip b/tests/ast-parsing/compile/function-0.4.24-compact.zip index 3dbe1d49c..adaaf7627 100644 Binary files a/tests/ast-parsing/compile/function-0.4.24-compact.zip and b/tests/ast-parsing/compile/function-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.24-legacy.zip b/tests/ast-parsing/compile/function-0.4.24-legacy.zip index 8c8677f60..bea019504 100644 Binary files a/tests/ast-parsing/compile/function-0.4.24-legacy.zip and b/tests/ast-parsing/compile/function-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.25-compact.zip b/tests/ast-parsing/compile/function-0.4.25-compact.zip index 88c02f16f..123af84e2 100644 Binary files a/tests/ast-parsing/compile/function-0.4.25-compact.zip and b/tests/ast-parsing/compile/function-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.25-legacy.zip b/tests/ast-parsing/compile/function-0.4.25-legacy.zip index efb614dbf..0c1e5e771 100644 Binary files a/tests/ast-parsing/compile/function-0.4.25-legacy.zip and b/tests/ast-parsing/compile/function-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.26-compact.zip b/tests/ast-parsing/compile/function-0.4.26-compact.zip index be3dd1175..f2e274cfd 100644 Binary files a/tests/ast-parsing/compile/function-0.4.26-compact.zip and b/tests/ast-parsing/compile/function-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.26-legacy.zip b/tests/ast-parsing/compile/function-0.4.26-legacy.zip index 6cb9097d3..b60da87e7 100644 Binary files a/tests/ast-parsing/compile/function-0.4.26-legacy.zip and b/tests/ast-parsing/compile/function-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.3-legacy.zip b/tests/ast-parsing/compile/function-0.4.3-legacy.zip index 0a98e6992..c930ec019 100644 Binary files a/tests/ast-parsing/compile/function-0.4.3-legacy.zip and b/tests/ast-parsing/compile/function-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.4-legacy.zip b/tests/ast-parsing/compile/function-0.4.4-legacy.zip index ee9265a36..680bfeb11 100644 Binary files a/tests/ast-parsing/compile/function-0.4.4-legacy.zip and b/tests/ast-parsing/compile/function-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.5-legacy.zip b/tests/ast-parsing/compile/function-0.4.5-legacy.zip index a508f5a93..bcaf5fcde 100644 Binary files a/tests/ast-parsing/compile/function-0.4.5-legacy.zip and b/tests/ast-parsing/compile/function-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.6-legacy.zip b/tests/ast-parsing/compile/function-0.4.6-legacy.zip index 42113e53a..26031d74c 100644 Binary files a/tests/ast-parsing/compile/function-0.4.6-legacy.zip and b/tests/ast-parsing/compile/function-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.7-legacy.zip b/tests/ast-parsing/compile/function-0.4.7-legacy.zip index c18d749ae..2a67e87d3 100644 Binary files a/tests/ast-parsing/compile/function-0.4.7-legacy.zip and b/tests/ast-parsing/compile/function-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.8-legacy.zip b/tests/ast-parsing/compile/function-0.4.8-legacy.zip index aa3b2ddc2..3b412dd85 100644 Binary files a/tests/ast-parsing/compile/function-0.4.8-legacy.zip and b/tests/ast-parsing/compile/function-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.4.9-legacy.zip b/tests/ast-parsing/compile/function-0.4.9-legacy.zip index 701d2a265..dfe40fa56 100644 Binary files a/tests/ast-parsing/compile/function-0.4.9-legacy.zip and b/tests/ast-parsing/compile/function-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.0-compact.zip b/tests/ast-parsing/compile/function-0.5.0-compact.zip index 613fdb8fe..0e0d731fd 100644 Binary files a/tests/ast-parsing/compile/function-0.5.0-compact.zip and b/tests/ast-parsing/compile/function-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.0-legacy.zip b/tests/ast-parsing/compile/function-0.5.0-legacy.zip index 0c03ce612..1f7693942 100644 Binary files a/tests/ast-parsing/compile/function-0.5.0-legacy.zip and b/tests/ast-parsing/compile/function-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.1-compact.zip b/tests/ast-parsing/compile/function-0.5.1-compact.zip index 5b918a739..20e292a2e 100644 Binary files a/tests/ast-parsing/compile/function-0.5.1-compact.zip and b/tests/ast-parsing/compile/function-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.1-legacy.zip b/tests/ast-parsing/compile/function-0.5.1-legacy.zip index 09569191f..674454d4b 100644 Binary files a/tests/ast-parsing/compile/function-0.5.1-legacy.zip and b/tests/ast-parsing/compile/function-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.10-compact.zip b/tests/ast-parsing/compile/function-0.5.10-compact.zip index aad088ae3..148c1c644 100644 Binary files a/tests/ast-parsing/compile/function-0.5.10-compact.zip and b/tests/ast-parsing/compile/function-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.10-legacy.zip b/tests/ast-parsing/compile/function-0.5.10-legacy.zip index 1d268bd0b..41dcd95e7 100644 Binary files a/tests/ast-parsing/compile/function-0.5.10-legacy.zip and b/tests/ast-parsing/compile/function-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.11-compact.zip b/tests/ast-parsing/compile/function-0.5.11-compact.zip index d33a4703b..603ea56a6 100644 Binary files a/tests/ast-parsing/compile/function-0.5.11-compact.zip and b/tests/ast-parsing/compile/function-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.11-legacy.zip b/tests/ast-parsing/compile/function-0.5.11-legacy.zip index 11f7ae770..e58685206 100644 Binary files a/tests/ast-parsing/compile/function-0.5.11-legacy.zip and b/tests/ast-parsing/compile/function-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.12-compact.zip b/tests/ast-parsing/compile/function-0.5.12-compact.zip index 2cc3bbf87..d3ecdc1f9 100644 Binary files a/tests/ast-parsing/compile/function-0.5.12-compact.zip and b/tests/ast-parsing/compile/function-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.12-legacy.zip b/tests/ast-parsing/compile/function-0.5.12-legacy.zip index 5e44f8a23..97ac7bece 100644 Binary files a/tests/ast-parsing/compile/function-0.5.12-legacy.zip and b/tests/ast-parsing/compile/function-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.13-compact.zip b/tests/ast-parsing/compile/function-0.5.13-compact.zip index 4429a889c..777f15891 100644 Binary files a/tests/ast-parsing/compile/function-0.5.13-compact.zip and b/tests/ast-parsing/compile/function-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.13-legacy.zip b/tests/ast-parsing/compile/function-0.5.13-legacy.zip index 87eb62377..ad4040fb7 100644 Binary files a/tests/ast-parsing/compile/function-0.5.13-legacy.zip and b/tests/ast-parsing/compile/function-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.14-compact.zip b/tests/ast-parsing/compile/function-0.5.14-compact.zip index aecb264f6..52e7216fa 100644 Binary files a/tests/ast-parsing/compile/function-0.5.14-compact.zip and b/tests/ast-parsing/compile/function-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.14-legacy.zip b/tests/ast-parsing/compile/function-0.5.14-legacy.zip index fb88339e1..5bcd33a20 100644 Binary files a/tests/ast-parsing/compile/function-0.5.14-legacy.zip and b/tests/ast-parsing/compile/function-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.15-compact.zip b/tests/ast-parsing/compile/function-0.5.15-compact.zip index 08fb8ca55..5c2951baa 100644 Binary files a/tests/ast-parsing/compile/function-0.5.15-compact.zip and b/tests/ast-parsing/compile/function-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.15-legacy.zip b/tests/ast-parsing/compile/function-0.5.15-legacy.zip index d82914b9a..2a9174ece 100644 Binary files a/tests/ast-parsing/compile/function-0.5.15-legacy.zip and b/tests/ast-parsing/compile/function-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.16-compact.zip b/tests/ast-parsing/compile/function-0.5.16-compact.zip index f5aa6cf19..da5000b52 100644 Binary files a/tests/ast-parsing/compile/function-0.5.16-compact.zip and b/tests/ast-parsing/compile/function-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.16-legacy.zip b/tests/ast-parsing/compile/function-0.5.16-legacy.zip index 5ec582143..2e98d8a72 100644 Binary files a/tests/ast-parsing/compile/function-0.5.16-legacy.zip and b/tests/ast-parsing/compile/function-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.17-compact.zip b/tests/ast-parsing/compile/function-0.5.17-compact.zip index e51ebb170..517ad5448 100644 Binary files a/tests/ast-parsing/compile/function-0.5.17-compact.zip and b/tests/ast-parsing/compile/function-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.17-legacy.zip b/tests/ast-parsing/compile/function-0.5.17-legacy.zip index 7941362e1..cc82a2952 100644 Binary files a/tests/ast-parsing/compile/function-0.5.17-legacy.zip and b/tests/ast-parsing/compile/function-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.2-compact.zip b/tests/ast-parsing/compile/function-0.5.2-compact.zip index fc44455cd..5330b4df3 100644 Binary files a/tests/ast-parsing/compile/function-0.5.2-compact.zip and b/tests/ast-parsing/compile/function-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.2-legacy.zip b/tests/ast-parsing/compile/function-0.5.2-legacy.zip index fdd1eac10..a25bdee0d 100644 Binary files a/tests/ast-parsing/compile/function-0.5.2-legacy.zip and b/tests/ast-parsing/compile/function-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.3-compact.zip b/tests/ast-parsing/compile/function-0.5.3-compact.zip index 285d7857b..65f26381f 100644 Binary files a/tests/ast-parsing/compile/function-0.5.3-compact.zip and b/tests/ast-parsing/compile/function-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.3-legacy.zip b/tests/ast-parsing/compile/function-0.5.3-legacy.zip index a62ea7259..0957e6949 100644 Binary files a/tests/ast-parsing/compile/function-0.5.3-legacy.zip and b/tests/ast-parsing/compile/function-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.4-compact.zip b/tests/ast-parsing/compile/function-0.5.4-compact.zip index 116f81ee6..91b352e0f 100644 Binary files a/tests/ast-parsing/compile/function-0.5.4-compact.zip and b/tests/ast-parsing/compile/function-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.4-legacy.zip b/tests/ast-parsing/compile/function-0.5.4-legacy.zip index 991c6d064..cd2f13e8b 100644 Binary files a/tests/ast-parsing/compile/function-0.5.4-legacy.zip and b/tests/ast-parsing/compile/function-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.5-compact.zip b/tests/ast-parsing/compile/function-0.5.5-compact.zip index 036cab452..8405a4929 100644 Binary files a/tests/ast-parsing/compile/function-0.5.5-compact.zip and b/tests/ast-parsing/compile/function-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.5-legacy.zip b/tests/ast-parsing/compile/function-0.5.5-legacy.zip index 87b5bf5ee..8ea7253d7 100644 Binary files a/tests/ast-parsing/compile/function-0.5.5-legacy.zip and b/tests/ast-parsing/compile/function-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.6-compact.zip b/tests/ast-parsing/compile/function-0.5.6-compact.zip index b7807910b..4f01ebda4 100644 Binary files a/tests/ast-parsing/compile/function-0.5.6-compact.zip and b/tests/ast-parsing/compile/function-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.6-legacy.zip b/tests/ast-parsing/compile/function-0.5.6-legacy.zip index 46195e36b..7b5bd2bbb 100644 Binary files a/tests/ast-parsing/compile/function-0.5.6-legacy.zip and b/tests/ast-parsing/compile/function-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.7-compact.zip b/tests/ast-parsing/compile/function-0.5.7-compact.zip index b35686158..01e9a623a 100644 Binary files a/tests/ast-parsing/compile/function-0.5.7-compact.zip and b/tests/ast-parsing/compile/function-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.7-legacy.zip b/tests/ast-parsing/compile/function-0.5.7-legacy.zip index ba9d1dda2..29d9e61b4 100644 Binary files a/tests/ast-parsing/compile/function-0.5.7-legacy.zip and b/tests/ast-parsing/compile/function-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.8-compact.zip b/tests/ast-parsing/compile/function-0.5.8-compact.zip index 302520170..d0685c69f 100644 Binary files a/tests/ast-parsing/compile/function-0.5.8-compact.zip and b/tests/ast-parsing/compile/function-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.8-legacy.zip b/tests/ast-parsing/compile/function-0.5.8-legacy.zip index 9c5e52af1..3f993557a 100644 Binary files a/tests/ast-parsing/compile/function-0.5.8-legacy.zip and b/tests/ast-parsing/compile/function-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.9-compact.zip b/tests/ast-parsing/compile/function-0.5.9-compact.zip index cd90665a3..59b12298f 100644 Binary files a/tests/ast-parsing/compile/function-0.5.9-compact.zip and b/tests/ast-parsing/compile/function-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.5.9-legacy.zip b/tests/ast-parsing/compile/function-0.5.9-legacy.zip index 6b1cb7468..59714ee8b 100644 Binary files a/tests/ast-parsing/compile/function-0.5.9-legacy.zip and b/tests/ast-parsing/compile/function-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.0-compact.zip b/tests/ast-parsing/compile/function-0.6.0-compact.zip index 0d41aa8ca..41b576ca9 100644 Binary files a/tests/ast-parsing/compile/function-0.6.0-compact.zip and b/tests/ast-parsing/compile/function-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.0-legacy.zip b/tests/ast-parsing/compile/function-0.6.0-legacy.zip index cb6d5d54b..a94220d78 100644 Binary files a/tests/ast-parsing/compile/function-0.6.0-legacy.zip and b/tests/ast-parsing/compile/function-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.1-compact.zip b/tests/ast-parsing/compile/function-0.6.1-compact.zip index 56f5d4c61..a4c3389e2 100644 Binary files a/tests/ast-parsing/compile/function-0.6.1-compact.zip and b/tests/ast-parsing/compile/function-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.1-legacy.zip b/tests/ast-parsing/compile/function-0.6.1-legacy.zip index 7a9ed3d8d..205188bca 100644 Binary files a/tests/ast-parsing/compile/function-0.6.1-legacy.zip and b/tests/ast-parsing/compile/function-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.10-compact.zip b/tests/ast-parsing/compile/function-0.6.10-compact.zip index e69b6c2ff..6e2d61c34 100644 Binary files a/tests/ast-parsing/compile/function-0.6.10-compact.zip and b/tests/ast-parsing/compile/function-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.10-legacy.zip b/tests/ast-parsing/compile/function-0.6.10-legacy.zip index f661e5231..889ff304f 100644 Binary files a/tests/ast-parsing/compile/function-0.6.10-legacy.zip and b/tests/ast-parsing/compile/function-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.11-compact.zip b/tests/ast-parsing/compile/function-0.6.11-compact.zip index a4e719a22..435c78fa9 100644 Binary files a/tests/ast-parsing/compile/function-0.6.11-compact.zip and b/tests/ast-parsing/compile/function-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.11-legacy.zip b/tests/ast-parsing/compile/function-0.6.11-legacy.zip index 404630d91..2d1cf77ac 100644 Binary files a/tests/ast-parsing/compile/function-0.6.11-legacy.zip and b/tests/ast-parsing/compile/function-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.12-compact.zip b/tests/ast-parsing/compile/function-0.6.12-compact.zip index 5101489d3..3423c9700 100644 Binary files a/tests/ast-parsing/compile/function-0.6.12-compact.zip and b/tests/ast-parsing/compile/function-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.12-legacy.zip b/tests/ast-parsing/compile/function-0.6.12-legacy.zip index 808615cf4..7693992fa 100644 Binary files a/tests/ast-parsing/compile/function-0.6.12-legacy.zip and b/tests/ast-parsing/compile/function-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.2-compact.zip b/tests/ast-parsing/compile/function-0.6.2-compact.zip index 87d6a20bb..2071dc788 100644 Binary files a/tests/ast-parsing/compile/function-0.6.2-compact.zip and b/tests/ast-parsing/compile/function-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.2-legacy.zip b/tests/ast-parsing/compile/function-0.6.2-legacy.zip index 55d4fcb53..f44ed8dcf 100644 Binary files a/tests/ast-parsing/compile/function-0.6.2-legacy.zip and b/tests/ast-parsing/compile/function-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.3-compact.zip b/tests/ast-parsing/compile/function-0.6.3-compact.zip index 865fb9c21..2e3b01db7 100644 Binary files a/tests/ast-parsing/compile/function-0.6.3-compact.zip and b/tests/ast-parsing/compile/function-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.3-legacy.zip b/tests/ast-parsing/compile/function-0.6.3-legacy.zip index 6b99ce704..c937ae5c6 100644 Binary files a/tests/ast-parsing/compile/function-0.6.3-legacy.zip and b/tests/ast-parsing/compile/function-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.4-compact.zip b/tests/ast-parsing/compile/function-0.6.4-compact.zip index 5b1a40cdb..9403be89d 100644 Binary files a/tests/ast-parsing/compile/function-0.6.4-compact.zip and b/tests/ast-parsing/compile/function-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.4-legacy.zip b/tests/ast-parsing/compile/function-0.6.4-legacy.zip index c4f63afc2..08d632282 100644 Binary files a/tests/ast-parsing/compile/function-0.6.4-legacy.zip and b/tests/ast-parsing/compile/function-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.5-compact.zip b/tests/ast-parsing/compile/function-0.6.5-compact.zip index 5e8ec46f9..a232e6a91 100644 Binary files a/tests/ast-parsing/compile/function-0.6.5-compact.zip and b/tests/ast-parsing/compile/function-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.5-legacy.zip b/tests/ast-parsing/compile/function-0.6.5-legacy.zip index 547aa572c..33f1c3d7a 100644 Binary files a/tests/ast-parsing/compile/function-0.6.5-legacy.zip and b/tests/ast-parsing/compile/function-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.6-compact.zip b/tests/ast-parsing/compile/function-0.6.6-compact.zip index faf58511b..d2469ab1c 100644 Binary files a/tests/ast-parsing/compile/function-0.6.6-compact.zip and b/tests/ast-parsing/compile/function-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.6-legacy.zip b/tests/ast-parsing/compile/function-0.6.6-legacy.zip index 3411215db..966b4fbce 100644 Binary files a/tests/ast-parsing/compile/function-0.6.6-legacy.zip and b/tests/ast-parsing/compile/function-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.7-compact.zip b/tests/ast-parsing/compile/function-0.6.7-compact.zip index 38871122b..fa1aa7677 100644 Binary files a/tests/ast-parsing/compile/function-0.6.7-compact.zip and b/tests/ast-parsing/compile/function-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.7-legacy.zip b/tests/ast-parsing/compile/function-0.6.7-legacy.zip index 754dbf109..1deec7d09 100644 Binary files a/tests/ast-parsing/compile/function-0.6.7-legacy.zip and b/tests/ast-parsing/compile/function-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.8-compact.zip b/tests/ast-parsing/compile/function-0.6.8-compact.zip index aabbd6985..671f6b3b4 100644 Binary files a/tests/ast-parsing/compile/function-0.6.8-compact.zip and b/tests/ast-parsing/compile/function-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.8-legacy.zip b/tests/ast-parsing/compile/function-0.6.8-legacy.zip index 34fcc1cf5..c48a0b3ad 100644 Binary files a/tests/ast-parsing/compile/function-0.6.8-legacy.zip and b/tests/ast-parsing/compile/function-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.9-compact.zip b/tests/ast-parsing/compile/function-0.6.9-compact.zip index 2b0814022..8441b9e82 100644 Binary files a/tests/ast-parsing/compile/function-0.6.9-compact.zip and b/tests/ast-parsing/compile/function-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.6.9-legacy.zip b/tests/ast-parsing/compile/function-0.6.9-legacy.zip index 7ffbd2af2..5d9fabe48 100644 Binary files a/tests/ast-parsing/compile/function-0.6.9-legacy.zip and b/tests/ast-parsing/compile/function-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.0-compact.zip b/tests/ast-parsing/compile/function-0.7.0-compact.zip index b741f9d4f..f5986a8dc 100644 Binary files a/tests/ast-parsing/compile/function-0.7.0-compact.zip and b/tests/ast-parsing/compile/function-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.0-legacy.zip b/tests/ast-parsing/compile/function-0.7.0-legacy.zip index 469d0095a..943677151 100644 Binary files a/tests/ast-parsing/compile/function-0.7.0-legacy.zip and b/tests/ast-parsing/compile/function-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.1-compact.zip b/tests/ast-parsing/compile/function-0.7.1-compact.zip index 90131ff03..0355a437e 100644 Binary files a/tests/ast-parsing/compile/function-0.7.1-compact.zip and b/tests/ast-parsing/compile/function-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.1-legacy.zip b/tests/ast-parsing/compile/function-0.7.1-legacy.zip index bc59799b9..2e9e3f6c9 100644 Binary files a/tests/ast-parsing/compile/function-0.7.1-legacy.zip and b/tests/ast-parsing/compile/function-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.2-compact.zip b/tests/ast-parsing/compile/function-0.7.2-compact.zip index 0196d97dd..fa1fdd503 100644 Binary files a/tests/ast-parsing/compile/function-0.7.2-compact.zip and b/tests/ast-parsing/compile/function-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.2-legacy.zip b/tests/ast-parsing/compile/function-0.7.2-legacy.zip index 8064c3c28..55d430fda 100644 Binary files a/tests/ast-parsing/compile/function-0.7.2-legacy.zip and b/tests/ast-parsing/compile/function-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.3-compact.zip b/tests/ast-parsing/compile/function-0.7.3-compact.zip index fdfa21b00..49e369f3f 100644 Binary files a/tests/ast-parsing/compile/function-0.7.3-compact.zip and b/tests/ast-parsing/compile/function-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.3-legacy.zip b/tests/ast-parsing/compile/function-0.7.3-legacy.zip index 4d3bca8e3..431b1a2a8 100644 Binary files a/tests/ast-parsing/compile/function-0.7.3-legacy.zip and b/tests/ast-parsing/compile/function-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.4-compact.zip b/tests/ast-parsing/compile/function-0.7.4-compact.zip index bc6681e82..7f95889e7 100644 Binary files a/tests/ast-parsing/compile/function-0.7.4-compact.zip and b/tests/ast-parsing/compile/function-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.4-legacy.zip b/tests/ast-parsing/compile/function-0.7.4-legacy.zip index 26e52d913..fad2c8821 100644 Binary files a/tests/ast-parsing/compile/function-0.7.4-legacy.zip and b/tests/ast-parsing/compile/function-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.5-compact.zip b/tests/ast-parsing/compile/function-0.7.5-compact.zip index 67f314b7c..07271ac11 100644 Binary files a/tests/ast-parsing/compile/function-0.7.5-compact.zip and b/tests/ast-parsing/compile/function-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.5-legacy.zip b/tests/ast-parsing/compile/function-0.7.5-legacy.zip index 61a735e56..3cadf7e54 100644 Binary files a/tests/ast-parsing/compile/function-0.7.5-legacy.zip and b/tests/ast-parsing/compile/function-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.6-compact.zip b/tests/ast-parsing/compile/function-0.7.6-compact.zip index 58849aa38..7c1c5af4c 100644 Binary files a/tests/ast-parsing/compile/function-0.7.6-compact.zip and b/tests/ast-parsing/compile/function-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.7.6-legacy.zip b/tests/ast-parsing/compile/function-0.7.6-legacy.zip index 3811d3717..25303cc75 100644 Binary files a/tests/ast-parsing/compile/function-0.7.6-legacy.zip and b/tests/ast-parsing/compile/function-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.0-compact.zip b/tests/ast-parsing/compile/function-0.8.0-compact.zip index 17f3b7a04..5d6cc350d 100644 Binary files a/tests/ast-parsing/compile/function-0.8.0-compact.zip and b/tests/ast-parsing/compile/function-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.1-compact.zip b/tests/ast-parsing/compile/function-0.8.1-compact.zip index f609910e1..6ddbfe864 100644 Binary files a/tests/ast-parsing/compile/function-0.8.1-compact.zip and b/tests/ast-parsing/compile/function-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.2-compact.zip b/tests/ast-parsing/compile/function-0.8.2-compact.zip index 7bfb9354e..ffdd1f9da 100644 Binary files a/tests/ast-parsing/compile/function-0.8.2-compact.zip and b/tests/ast-parsing/compile/function-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.3-compact.zip b/tests/ast-parsing/compile/function-0.8.3-compact.zip index a63e3d5d3..0c1d47ed0 100644 Binary files a/tests/ast-parsing/compile/function-0.8.3-compact.zip and b/tests/ast-parsing/compile/function-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.4-compact.zip b/tests/ast-parsing/compile/function-0.8.4-compact.zip index 018ae1beb..cd2d5d478 100644 Binary files a/tests/ast-parsing/compile/function-0.8.4-compact.zip and b/tests/ast-parsing/compile/function-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.5-compact.zip b/tests/ast-parsing/compile/function-0.8.5-compact.zip index f81a54bab..48697f93c 100644 Binary files a/tests/ast-parsing/compile/function-0.8.5-compact.zip and b/tests/ast-parsing/compile/function-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.6-compact.zip b/tests/ast-parsing/compile/function-0.8.6-compact.zip index f14d76c29..d8aaec155 100644 Binary files a/tests/ast-parsing/compile/function-0.8.6-compact.zip and b/tests/ast-parsing/compile/function-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/function-0.8.7-compact.zip b/tests/ast-parsing/compile/function-0.8.7-compact.zip index 5c21a5d20..62afc33a5 100644 Binary files a/tests/ast-parsing/compile/function-0.8.7-compact.zip and b/tests/ast-parsing/compile/function-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.0-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.0-legacy.zip deleted file mode 100644 index 87757a3c8..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.0-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.1-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.1-legacy.zip deleted file mode 100644 index 9d6a3a8b6..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.1-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.10-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.10-legacy.zip deleted file mode 100644 index 2a6a53678..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.10-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.11-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.11-legacy.zip deleted file mode 100644 index beebc6a93..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.11-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.12-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.12-compact.zip deleted file mode 100644 index 1bff8479c..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.12-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.12-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.12-legacy.zip deleted file mode 100644 index 13070186d..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.12-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.13-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.13-compact.zip deleted file mode 100644 index fc1dff438..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.13-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.13-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.13-legacy.zip deleted file mode 100644 index a7ec0364d..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.13-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.14-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.14-compact.zip deleted file mode 100644 index a5bc46609..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.14-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.14-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.14-legacy.zip deleted file mode 100644 index 2023485a7..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.14-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.15-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.15-compact.zip deleted file mode 100644 index 0c49edaa6..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.15-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.15-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.15-legacy.zip deleted file mode 100644 index f470ea927..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.15-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.16-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.16-compact.zip deleted file mode 100644 index 50ef9c94b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.16-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.16-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.16-legacy.zip deleted file mode 100644 index 90fd131ea..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.16-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.17-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.17-compact.zip deleted file mode 100644 index b743a50aa..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.17-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.17-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.17-legacy.zip deleted file mode 100644 index 8ad0bb7fb..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.17-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.18-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.18-compact.zip deleted file mode 100644 index c798e126b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.18-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.18-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.18-legacy.zip deleted file mode 100644 index 893dfb70b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.18-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.19-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.19-compact.zip deleted file mode 100644 index dd8e8dc54..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.19-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.19-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.19-legacy.zip deleted file mode 100644 index 464cebc0a..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.19-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.2-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.2-legacy.zip deleted file mode 100644 index 83f7aff51..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.2-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.20-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.20-compact.zip deleted file mode 100644 index 2d17d8446..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.20-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.20-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.20-legacy.zip deleted file mode 100644 index 4e9a60102..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.20-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.21-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.21-compact.zip deleted file mode 100644 index 305a0d316..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.21-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.21-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.21-legacy.zip deleted file mode 100644 index 0e8910c11..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.21-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.22-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.22-compact.zip deleted file mode 100644 index 1f7c9a317..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.22-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.22-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.22-legacy.zip deleted file mode 100644 index 1e32c6506..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.22-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.23-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.23-compact.zip deleted file mode 100644 index 677f7559c..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.23-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.23-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.23-legacy.zip deleted file mode 100644 index 515c839ef..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.23-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.24-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.24-compact.zip deleted file mode 100644 index 63905fc1a..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.24-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.24-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.24-legacy.zip deleted file mode 100644 index 86a996ff3..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.24-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.25-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.25-compact.zip deleted file mode 100644 index 494c8df9f..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.25-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.25-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.25-legacy.zip deleted file mode 100644 index 733e853c4..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.25-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.26-compact.zip b/tests/ast-parsing/compile/function_lookup-0.4.26-compact.zip deleted file mode 100644 index ef25a4d64..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.26-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.26-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.26-legacy.zip deleted file mode 100644 index 10f57b6a3..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.26-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.3-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.3-legacy.zip deleted file mode 100644 index 401ea876a..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.3-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.4-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.4-legacy.zip deleted file mode 100644 index fa70f28b7..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.4-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.5-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.5-legacy.zip deleted file mode 100644 index 73d41ab4e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.5-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.6-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.6-legacy.zip deleted file mode 100644 index bbf419cd6..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.6-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.7-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.7-legacy.zip deleted file mode 100644 index 2f6bf5f3e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.7-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.8-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.8-legacy.zip deleted file mode 100644 index cd488e376..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.8-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.4.9-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.4.9-legacy.zip deleted file mode 100644 index cce318918..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.4.9-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.0-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.0-compact.zip deleted file mode 100644 index e86c0e8b7..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.0-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.0-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.0-legacy.zip deleted file mode 100644 index b9c6e6ef1..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.0-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.1-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.1-compact.zip deleted file mode 100644 index a260aec81..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.1-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.1-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.1-legacy.zip deleted file mode 100644 index c0ca9b8ff..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.1-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.10-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.10-compact.zip deleted file mode 100644 index 38ddd5c92..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.10-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.10-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.10-legacy.zip deleted file mode 100644 index 3b828bc94..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.10-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.11-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.11-compact.zip deleted file mode 100644 index dc7526336..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.11-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.11-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.11-legacy.zip deleted file mode 100644 index 88c3776dd..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.11-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.12-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.12-compact.zip deleted file mode 100644 index d415377d7..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.12-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.12-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.12-legacy.zip deleted file mode 100644 index c5c93571e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.12-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.13-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.13-compact.zip deleted file mode 100644 index 959cb2f5d..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.13-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.13-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.13-legacy.zip deleted file mode 100644 index fdb52d448..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.13-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.14-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.14-compact.zip deleted file mode 100644 index 34edc7869..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.14-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.14-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.14-legacy.zip deleted file mode 100644 index 10989ebb8..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.14-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.15-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.15-compact.zip deleted file mode 100644 index 6189ec909..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.15-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.15-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.15-legacy.zip deleted file mode 100644 index ce133677d..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.15-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.16-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.16-compact.zip deleted file mode 100644 index 30129cfe3..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.16-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.16-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.16-legacy.zip deleted file mode 100644 index 641d77868..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.16-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.17-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.17-compact.zip deleted file mode 100644 index 1e307eae2..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.17-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.17-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.17-legacy.zip deleted file mode 100644 index 195cd3168..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.17-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.2-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.2-compact.zip deleted file mode 100644 index d2d1dd9f6..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.2-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.2-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.2-legacy.zip deleted file mode 100644 index 997a471ae..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.2-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.3-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.3-compact.zip deleted file mode 100644 index 8f4762854..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.3-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.3-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.3-legacy.zip deleted file mode 100644 index 765899148..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.3-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.4-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.4-compact.zip deleted file mode 100644 index 1600e89f6..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.4-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.4-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.4-legacy.zip deleted file mode 100644 index 7beca05b5..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.4-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.5-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.5-compact.zip deleted file mode 100644 index 57ae415b0..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.5-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.5-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.5-legacy.zip deleted file mode 100644 index ed460d0be..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.5-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.6-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.6-compact.zip deleted file mode 100644 index 7cb51adcf..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.6-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.6-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.6-legacy.zip deleted file mode 100644 index 514ad3691..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.6-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.7-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.7-compact.zip deleted file mode 100644 index f5678aab4..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.7-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.7-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.7-legacy.zip deleted file mode 100644 index b500ecf70..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.7-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.8-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.8-compact.zip deleted file mode 100644 index f31cf3fb1..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.8-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.8-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.8-legacy.zip deleted file mode 100644 index 84c0edce3..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.8-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.9-compact.zip b/tests/ast-parsing/compile/function_lookup-0.5.9-compact.zip deleted file mode 100644 index 316d659cf..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.9-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.5.9-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.5.9-legacy.zip deleted file mode 100644 index 1f1d3a57f..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.5.9-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.0-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.0-compact.zip deleted file mode 100644 index 8db22ab8d..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.0-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.0-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.0-legacy.zip deleted file mode 100644 index 568f470a9..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.0-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.1-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.1-compact.zip deleted file mode 100644 index 4d74d1f59..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.1-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.1-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.1-legacy.zip deleted file mode 100644 index 56eb1ba1e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.1-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.10-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.10-compact.zip deleted file mode 100644 index 8c26ad81c..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.10-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.10-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.10-legacy.zip deleted file mode 100644 index 5f79aaf87..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.10-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.11-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.11-compact.zip deleted file mode 100644 index d1f4ac199..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.11-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.11-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.11-legacy.zip deleted file mode 100644 index ea09839eb..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.11-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.12-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.12-compact.zip deleted file mode 100644 index 53a8a674e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.12-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.12-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.12-legacy.zip deleted file mode 100644 index a5349725a..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.12-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.2-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.2-compact.zip deleted file mode 100644 index 41016d6f2..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.2-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.2-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.2-legacy.zip deleted file mode 100644 index 22dde2b15..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.2-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.3-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.3-compact.zip deleted file mode 100644 index 5e9e2e966..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.3-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.3-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.3-legacy.zip deleted file mode 100644 index a4bd99250..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.3-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.4-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.4-compact.zip deleted file mode 100644 index 95164eeef..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.4-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.4-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.4-legacy.zip deleted file mode 100644 index f88f574fb..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.4-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.5-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.5-compact.zip deleted file mode 100644 index ed079d33c..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.5-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.5-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.5-legacy.zip deleted file mode 100644 index 1ff348718..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.5-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.6-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.6-compact.zip deleted file mode 100644 index ea096cd8b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.6-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.6-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.6-legacy.zip deleted file mode 100644 index b24f0c97d..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.6-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.7-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.7-compact.zip deleted file mode 100644 index 6c27d65e0..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.7-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.7-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.7-legacy.zip deleted file mode 100644 index 5643eed05..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.7-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.8-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.8-compact.zip deleted file mode 100644 index c9d8a7ce8..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.8-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.8-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.8-legacy.zip deleted file mode 100644 index 55af3d556..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.8-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.9-compact.zip b/tests/ast-parsing/compile/function_lookup-0.6.9-compact.zip deleted file mode 100644 index a75b23ae5..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.9-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.6.9-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.6.9-legacy.zip deleted file mode 100644 index c86ac5b2b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.6.9-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.0-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.0-compact.zip deleted file mode 100644 index 729beeff0..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.0-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.0-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.0-legacy.zip deleted file mode 100644 index bf0ab58e8..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.0-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.1-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.1-compact.zip deleted file mode 100644 index 7e0eeb50b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.1-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.1-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.1-legacy.zip deleted file mode 100644 index e45921d55..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.1-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.2-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.2-compact.zip deleted file mode 100644 index 8523d1184..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.2-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.2-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.2-legacy.zip deleted file mode 100644 index 11801ca0e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.2-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.3-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.3-compact.zip deleted file mode 100644 index 540cf67bb..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.3-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.3-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.3-legacy.zip deleted file mode 100644 index 61115d5b0..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.3-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.4-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.4-compact.zip deleted file mode 100644 index f306a0151..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.4-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.4-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.4-legacy.zip deleted file mode 100644 index 3cac3767c..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.4-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.5-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.5-compact.zip deleted file mode 100644 index 3d52abdd7..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.5-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.5-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.5-legacy.zip deleted file mode 100644 index 82cf6400b..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.5-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.6-compact.zip b/tests/ast-parsing/compile/function_lookup-0.7.6-compact.zip deleted file mode 100644 index b09a09acb..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.6-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.7.6-legacy.zip b/tests/ast-parsing/compile/function_lookup-0.7.6-legacy.zip deleted file mode 100644 index c72b83e54..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.7.6-legacy.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.8.0-compact.zip b/tests/ast-parsing/compile/function_lookup-0.8.0-compact.zip deleted file mode 100644 index f60adaf7f..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.8.0-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.8.1-compact.zip b/tests/ast-parsing/compile/function_lookup-0.8.1-compact.zip deleted file mode 100644 index 18048d057..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.8.1-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.8.2-compact.zip b/tests/ast-parsing/compile/function_lookup-0.8.2-compact.zip deleted file mode 100644 index 057cbdc7e..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.8.2-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.8.3-compact.zip b/tests/ast-parsing/compile/function_lookup-0.8.3-compact.zip deleted file mode 100644 index ae9a5e990..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.8.3-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/function_lookup-0.8.4-compact.zip b/tests/ast-parsing/compile/function_lookup-0.8.4-compact.zip deleted file mode 100644 index a29a2cbe2..000000000 Binary files a/tests/ast-parsing/compile/function_lookup-0.8.4-compact.zip and /dev/null differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.0-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.0-legacy.zip index e6ae82004..9642181ba 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.0-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.1-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.1-legacy.zip index 773c67249..949ed5081 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.1-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.10-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.10-legacy.zip index a3ad2c1ee..3420c4762 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.10-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.11-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.11-legacy.zip index f75515450..cf4554ae3 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.11-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.12-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.12-compact.zip index 0390332da..e1dd3229a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.12-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.12-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.12-legacy.zip index b1a1e8aa9..9b33a1108 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.12-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.13-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.13-compact.zip index 494de9522..70a0e8448 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.13-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.13-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.13-legacy.zip index bbcc43402..8cc1bb26d 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.13-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.14-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.14-compact.zip index 23125c5df..03307f7cc 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.14-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.14-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.14-legacy.zip index 9fa36a738..8bccdebeb 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.14-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.15-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.15-compact.zip index 1108e97ea..7a223cf89 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.15-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.15-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.15-legacy.zip index c879fde45..177e7ded7 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.15-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.16-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.16-compact.zip index ca46943e4..f634d706d 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.16-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.16-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.16-legacy.zip index 646e82cf3..e0ce2ebba 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.16-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.17-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.17-compact.zip index b107eb2c3..e0a405f39 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.17-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.17-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.17-legacy.zip index ea739007e..6f5d729c4 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.17-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.18-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.18-compact.zip index 3268e5df0..9a22b3309 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.18-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.18-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.18-legacy.zip index eae0bb51e..b6fa42e60 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.18-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.19-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.19-compact.zip index 00c88691b..77b4c1997 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.19-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.19-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.19-legacy.zip index b2cf514a6..4133f4c1e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.19-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.2-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.2-legacy.zip index 17a278560..266e9bfc6 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.2-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.20-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.20-compact.zip index c0e233f92..25b90c2c9 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.20-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.20-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.20-legacy.zip index ca926ab36..8b8b950b6 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.20-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.21-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.21-compact.zip index d3351fac4..19d9b73e0 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.21-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.21-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.21-legacy.zip index aafcc82fd..1641992f1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.21-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.22-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.22-compact.zip index 199bfe307..8cfacdd9c 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.22-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.22-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.22-legacy.zip index 511e4e319..23926c5b1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.22-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.23-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.23-compact.zip index 39f66b861..fa213f9b1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.23-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.23-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.23-legacy.zip index 5388c1489..3c4863a7e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.23-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.24-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.24-compact.zip index 134bae609..e1d1a8346 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.24-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.24-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.24-legacy.zip index 7b0e5b1d0..05d1405e1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.24-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.25-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.25-compact.zip index 61791d9c5..2a6f147c5 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.25-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.25-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.25-legacy.zip index 407c51dda..a1930af94 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.25-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.26-compact.zip b/tests/ast-parsing/compile/functioncall-0.4.26-compact.zip index bda4b44eb..838df6e2d 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.26-compact.zip and b/tests/ast-parsing/compile/functioncall-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.26-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.26-legacy.zip index 4c0692ccb..801bc6e9f 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.26-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.3-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.3-legacy.zip index d3bf63cc3..d2c75bd3b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.3-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.4-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.4-legacy.zip index 58e56f7f0..ead26838f 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.4-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.5-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.5-legacy.zip index ab2a902a4..6370eda3c 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.5-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.6-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.6-legacy.zip index 53239c533..31e067600 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.6-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.7-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.7-legacy.zip index 887166800..ea17c75d8 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.7-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.8-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.8-legacy.zip index c71491e5b..d15d2562a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.8-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.4.9-legacy.zip b/tests/ast-parsing/compile/functioncall-0.4.9-legacy.zip index ee629ed5d..4e4d673c1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.4.9-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.0-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.0-compact.zip index fdc012e37..8e811f4b1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.0-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.0-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.0-legacy.zip index 1e28a8cf3..ecf3060c4 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.0-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.1-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.1-compact.zip index c18e3ca84..18abcce5d 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.1-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.1-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.1-legacy.zip index 90fdc0113..34d07f04f 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.1-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.10-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.10-compact.zip index e83be8120..ff580a4ed 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.10-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.10-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.10-legacy.zip index c0ade59bb..c75f2cf87 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.10-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.11-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.11-compact.zip index 06b58e1de..04c674485 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.11-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.11-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.11-legacy.zip index 0b58d0917..80459d1a7 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.11-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.12-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.12-compact.zip index ca5bca325..ef4e47460 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.12-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.12-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.12-legacy.zip index 4a3c936a0..c2807d853 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.12-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.13-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.13-compact.zip index e1b26d937..fc1f0c67e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.13-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.13-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.13-legacy.zip index 763aa5a5f..58c383b6a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.13-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.14-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.14-compact.zip index 99fb8c5da..0a811e01d 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.14-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.14-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.14-legacy.zip index c7b782189..c8d64948e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.14-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.15-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.15-compact.zip index 57199774f..9073bce5e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.15-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.15-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.15-legacy.zip index 0916b2b60..f69b88698 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.15-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.16-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.16-compact.zip index e3dbfc748..288984daa 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.16-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.16-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.16-legacy.zip index b09e8bd2d..58a8c0b4e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.16-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.17-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.17-compact.zip index 1a153af7f..1a8ed68fe 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.17-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.17-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.17-legacy.zip index b8f5881e2..9b48810b9 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.17-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.2-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.2-compact.zip index 1d84bed93..9aefb0676 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.2-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.2-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.2-legacy.zip index 83266de54..731cbc457 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.2-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.3-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.3-compact.zip index a15b5e0e1..2ea225c7f 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.3-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.3-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.3-legacy.zip index 3fff85b11..54d45603c 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.3-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.4-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.4-compact.zip index f54cff530..a7f7fafa8 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.4-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.4-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.4-legacy.zip index 35993358a..dcd59cc28 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.4-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.5-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.5-compact.zip index 8515e09a2..4c171ca00 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.5-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.5-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.5-legacy.zip index 5dfc3232c..d28f11477 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.5-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.6-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.6-compact.zip index 91156ce08..6a7fdbbc1 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.6-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.6-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.6-legacy.zip index e9c85dfd7..990a72281 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.6-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.7-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.7-compact.zip index bab20686e..d429fd7dc 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.7-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.7-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.7-legacy.zip index b8cddcae1..ca08f0676 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.7-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.8-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.8-compact.zip index e5ab8712c..28e1c24e9 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.8-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.8-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.8-legacy.zip index 2ac028967..42283a3e8 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.8-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.9-compact.zip b/tests/ast-parsing/compile/functioncall-0.5.9-compact.zip index 0651221df..7a3991624 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.9-compact.zip and b/tests/ast-parsing/compile/functioncall-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.5.9-legacy.zip b/tests/ast-parsing/compile/functioncall-0.5.9-legacy.zip index 7913675ae..db9fcf855 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.5.9-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.0-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.0-compact.zip index 696f18a8e..d8541c609 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.0-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.0-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.0-legacy.zip index c49679b12..86b8b8797 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.0-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.1-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.1-compact.zip index f0d8915bb..7d22fef60 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.1-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.1-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.1-legacy.zip index a2e693598..c6a114384 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.1-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.10-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.10-compact.zip index 98a264ad4..0a02be734 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.10-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.10-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.10-legacy.zip index 2b1db9f79..53dccb11f 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.10-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.11-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.11-compact.zip index 3d9bf0214..b3cc91dcd 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.11-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.11-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.11-legacy.zip index 66c50b430..48c6294ab 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.11-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.12-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.12-compact.zip index 400e05c4a..dc227ef34 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.12-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.12-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.12-legacy.zip index 87a6ba977..5f60148ff 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.12-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.2-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.2-compact.zip index 1c59f453e..11e36bb0a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.2-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.2-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.2-legacy.zip index 3a97e7389..c6a411085 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.2-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.3-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.3-compact.zip index 3da56adae..23cad1867 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.3-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.3-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.3-legacy.zip index 43f123270..98ceaba63 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.3-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.4-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.4-compact.zip index 6ad221401..b8331ed18 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.4-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.4-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.4-legacy.zip index 9b7ea54db..38b946204 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.4-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.5-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.5-compact.zip index e1dcb0e95..80f43a1a6 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.5-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.5-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.5-legacy.zip index 444e14560..5c6564bdf 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.5-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.6-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.6-compact.zip index a57845189..61398857a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.6-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.6-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.6-legacy.zip index f738cbe15..75187ce24 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.6-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.7-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.7-compact.zip index bb9a1962c..129ca1199 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.7-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.7-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.7-legacy.zip index a5823f306..08519b5e8 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.7-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.8-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.8-compact.zip index 4dcc90165..fe62f3993 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.8-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.8-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.8-legacy.zip index c441e2c3e..8dda60186 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.8-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.9-compact.zip b/tests/ast-parsing/compile/functioncall-0.6.9-compact.zip index 34ac0e13c..4c0d486ca 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.9-compact.zip and b/tests/ast-parsing/compile/functioncall-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.6.9-legacy.zip b/tests/ast-parsing/compile/functioncall-0.6.9-legacy.zip index 4f6b93520..76df06b69 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.6.9-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.0-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.0-compact.zip index 3effd2c38..295b34caa 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.0-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.0-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.0-legacy.zip index 0789e0293..4efe7ee6b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.0-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.1-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.1-compact.zip index c84733e5b..eebcc7e6b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.1-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.1-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.1-legacy.zip index 9c96c440c..0d85d475b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.1-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.2-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.2-compact.zip index a50be3ae1..96396e94a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.2-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.2-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.2-legacy.zip index 545cd7698..e11291b0a 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.2-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.3-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.3-compact.zip index e37e03148..bd5b22737 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.3-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.3-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.3-legacy.zip index a69d5d25e..d8f98bc98 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.3-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.4-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.4-compact.zip index bd93f2803..a37a70fa5 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.4-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.4-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.4-legacy.zip index 85b81bee1..fd894478e 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.4-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.5-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.5-compact.zip index 30050df79..9e914bc62 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.5-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.5-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.5-legacy.zip index 78fa9a099..0e389536b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.5-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.6-compact.zip b/tests/ast-parsing/compile/functioncall-0.7.6-compact.zip index 42227ea9f..ba1b5bd0b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.6-compact.zip and b/tests/ast-parsing/compile/functioncall-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.7.6-legacy.zip b/tests/ast-parsing/compile/functioncall-0.7.6-legacy.zip index d8d40b40b..d3d7b40a8 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.7.6-legacy.zip and b/tests/ast-parsing/compile/functioncall-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.0-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.0-compact.zip index 168bb6b06..4005cf7a7 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.0-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.1-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.1-compact.zip index b66aed7ee..5a1acf696 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.1-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.2-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.2-compact.zip index 76df1c4d0..81391bcc6 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.2-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.3-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.3-compact.zip index e6054d9d8..ec35d015b 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.3-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.4-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.4-compact.zip index c18120a05..e3e42d26f 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.4-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.5-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.5-compact.zip index fec69c90b..60d62bda4 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.5-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.6-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.6-compact.zip index 29143f13c..ea31cdcfc 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.6-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/functioncall-0.8.7-compact.zip b/tests/ast-parsing/compile/functioncall-0.8.7-compact.zip index 9c787b80d..f8da13107 100644 Binary files a/tests/ast-parsing/compile/functioncall-0.8.7-compact.zip and b/tests/ast-parsing/compile/functioncall-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.0-legacy.zip b/tests/ast-parsing/compile/if-0.4.0-legacy.zip index 44531c146..ef03b3f2b 100644 Binary files a/tests/ast-parsing/compile/if-0.4.0-legacy.zip and b/tests/ast-parsing/compile/if-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.1-legacy.zip b/tests/ast-parsing/compile/if-0.4.1-legacy.zip index 9eb90e35c..7918fd10a 100644 Binary files a/tests/ast-parsing/compile/if-0.4.1-legacy.zip and b/tests/ast-parsing/compile/if-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.10-legacy.zip b/tests/ast-parsing/compile/if-0.4.10-legacy.zip index 00d38cc56..dfcca295b 100644 Binary files a/tests/ast-parsing/compile/if-0.4.10-legacy.zip and b/tests/ast-parsing/compile/if-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.11-legacy.zip b/tests/ast-parsing/compile/if-0.4.11-legacy.zip index 31d5ee71e..723eda72d 100644 Binary files a/tests/ast-parsing/compile/if-0.4.11-legacy.zip and b/tests/ast-parsing/compile/if-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.12-compact.zip b/tests/ast-parsing/compile/if-0.4.12-compact.zip index 909067dd7..9fcf2b68f 100644 Binary files a/tests/ast-parsing/compile/if-0.4.12-compact.zip and b/tests/ast-parsing/compile/if-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.12-legacy.zip b/tests/ast-parsing/compile/if-0.4.12-legacy.zip index 2b0757f7e..456a3d38e 100644 Binary files a/tests/ast-parsing/compile/if-0.4.12-legacy.zip and b/tests/ast-parsing/compile/if-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.13-compact.zip b/tests/ast-parsing/compile/if-0.4.13-compact.zip index 4259ca42c..8b00c9bbf 100644 Binary files a/tests/ast-parsing/compile/if-0.4.13-compact.zip and b/tests/ast-parsing/compile/if-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.13-legacy.zip b/tests/ast-parsing/compile/if-0.4.13-legacy.zip index 0cfe30c0a..1c9102d0b 100644 Binary files a/tests/ast-parsing/compile/if-0.4.13-legacy.zip and b/tests/ast-parsing/compile/if-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.14-compact.zip b/tests/ast-parsing/compile/if-0.4.14-compact.zip index a33c4cf11..9ad5e2934 100644 Binary files a/tests/ast-parsing/compile/if-0.4.14-compact.zip and b/tests/ast-parsing/compile/if-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.14-legacy.zip b/tests/ast-parsing/compile/if-0.4.14-legacy.zip index 7d5db36f8..e688caeef 100644 Binary files a/tests/ast-parsing/compile/if-0.4.14-legacy.zip and b/tests/ast-parsing/compile/if-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.15-compact.zip b/tests/ast-parsing/compile/if-0.4.15-compact.zip index 4ec0972ab..cd22f7b40 100644 Binary files a/tests/ast-parsing/compile/if-0.4.15-compact.zip and b/tests/ast-parsing/compile/if-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.15-legacy.zip b/tests/ast-parsing/compile/if-0.4.15-legacy.zip index 24a1c588f..c21ac424e 100644 Binary files a/tests/ast-parsing/compile/if-0.4.15-legacy.zip and b/tests/ast-parsing/compile/if-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.16-compact.zip b/tests/ast-parsing/compile/if-0.4.16-compact.zip index f8feefe7f..9e411373e 100644 Binary files a/tests/ast-parsing/compile/if-0.4.16-compact.zip and b/tests/ast-parsing/compile/if-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.16-legacy.zip b/tests/ast-parsing/compile/if-0.4.16-legacy.zip index 09cb67201..294a8af0f 100644 Binary files a/tests/ast-parsing/compile/if-0.4.16-legacy.zip and b/tests/ast-parsing/compile/if-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.17-compact.zip b/tests/ast-parsing/compile/if-0.4.17-compact.zip index 77ccd7a3e..4ced5cee6 100644 Binary files a/tests/ast-parsing/compile/if-0.4.17-compact.zip and b/tests/ast-parsing/compile/if-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.17-legacy.zip b/tests/ast-parsing/compile/if-0.4.17-legacy.zip index 381394a29..b61452c39 100644 Binary files a/tests/ast-parsing/compile/if-0.4.17-legacy.zip and b/tests/ast-parsing/compile/if-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.18-compact.zip b/tests/ast-parsing/compile/if-0.4.18-compact.zip index e41ad9e49..f783d3da6 100644 Binary files a/tests/ast-parsing/compile/if-0.4.18-compact.zip and b/tests/ast-parsing/compile/if-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.18-legacy.zip b/tests/ast-parsing/compile/if-0.4.18-legacy.zip index 5e6546798..18f87b153 100644 Binary files a/tests/ast-parsing/compile/if-0.4.18-legacy.zip and b/tests/ast-parsing/compile/if-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.19-compact.zip b/tests/ast-parsing/compile/if-0.4.19-compact.zip index 68238ae82..c4735da00 100644 Binary files a/tests/ast-parsing/compile/if-0.4.19-compact.zip and b/tests/ast-parsing/compile/if-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.19-legacy.zip b/tests/ast-parsing/compile/if-0.4.19-legacy.zip index c0c560270..7920575bc 100644 Binary files a/tests/ast-parsing/compile/if-0.4.19-legacy.zip and b/tests/ast-parsing/compile/if-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.2-legacy.zip b/tests/ast-parsing/compile/if-0.4.2-legacy.zip index 099b2e830..69e46f2be 100644 Binary files a/tests/ast-parsing/compile/if-0.4.2-legacy.zip and b/tests/ast-parsing/compile/if-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.20-compact.zip b/tests/ast-parsing/compile/if-0.4.20-compact.zip index 795716e4f..44fee6299 100644 Binary files a/tests/ast-parsing/compile/if-0.4.20-compact.zip and b/tests/ast-parsing/compile/if-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.20-legacy.zip b/tests/ast-parsing/compile/if-0.4.20-legacy.zip index c55ff6d4e..c9015af77 100644 Binary files a/tests/ast-parsing/compile/if-0.4.20-legacy.zip and b/tests/ast-parsing/compile/if-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.21-compact.zip b/tests/ast-parsing/compile/if-0.4.21-compact.zip index c36ec4d42..2b1bead25 100644 Binary files a/tests/ast-parsing/compile/if-0.4.21-compact.zip and b/tests/ast-parsing/compile/if-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.21-legacy.zip b/tests/ast-parsing/compile/if-0.4.21-legacy.zip index ab4561da2..04a10145e 100644 Binary files a/tests/ast-parsing/compile/if-0.4.21-legacy.zip and b/tests/ast-parsing/compile/if-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.22-compact.zip b/tests/ast-parsing/compile/if-0.4.22-compact.zip index abe5d2a33..c0cd3a3ba 100644 Binary files a/tests/ast-parsing/compile/if-0.4.22-compact.zip and b/tests/ast-parsing/compile/if-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.22-legacy.zip b/tests/ast-parsing/compile/if-0.4.22-legacy.zip index 65dd13bc4..dc2add663 100644 Binary files a/tests/ast-parsing/compile/if-0.4.22-legacy.zip and b/tests/ast-parsing/compile/if-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.23-compact.zip b/tests/ast-parsing/compile/if-0.4.23-compact.zip index 5b06cf034..baafa4ae2 100644 Binary files a/tests/ast-parsing/compile/if-0.4.23-compact.zip and b/tests/ast-parsing/compile/if-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.23-legacy.zip b/tests/ast-parsing/compile/if-0.4.23-legacy.zip index 66abc3c3b..b068a4391 100644 Binary files a/tests/ast-parsing/compile/if-0.4.23-legacy.zip and b/tests/ast-parsing/compile/if-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.24-compact.zip b/tests/ast-parsing/compile/if-0.4.24-compact.zip index 9bfe4fe91..11175a754 100644 Binary files a/tests/ast-parsing/compile/if-0.4.24-compact.zip and b/tests/ast-parsing/compile/if-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.24-legacy.zip b/tests/ast-parsing/compile/if-0.4.24-legacy.zip index ea850960d..7e5cced0e 100644 Binary files a/tests/ast-parsing/compile/if-0.4.24-legacy.zip and b/tests/ast-parsing/compile/if-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.25-compact.zip b/tests/ast-parsing/compile/if-0.4.25-compact.zip index b6543a40a..29ca48d07 100644 Binary files a/tests/ast-parsing/compile/if-0.4.25-compact.zip and b/tests/ast-parsing/compile/if-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.25-legacy.zip b/tests/ast-parsing/compile/if-0.4.25-legacy.zip index c19a9a873..bbe665db3 100644 Binary files a/tests/ast-parsing/compile/if-0.4.25-legacy.zip and b/tests/ast-parsing/compile/if-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.26-compact.zip b/tests/ast-parsing/compile/if-0.4.26-compact.zip index 241ddace7..176bf6925 100644 Binary files a/tests/ast-parsing/compile/if-0.4.26-compact.zip and b/tests/ast-parsing/compile/if-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.26-legacy.zip b/tests/ast-parsing/compile/if-0.4.26-legacy.zip index b31279152..f52d8f88f 100644 Binary files a/tests/ast-parsing/compile/if-0.4.26-legacy.zip and b/tests/ast-parsing/compile/if-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.3-legacy.zip b/tests/ast-parsing/compile/if-0.4.3-legacy.zip index 31aff7026..783d35f76 100644 Binary files a/tests/ast-parsing/compile/if-0.4.3-legacy.zip and b/tests/ast-parsing/compile/if-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.4-legacy.zip b/tests/ast-parsing/compile/if-0.4.4-legacy.zip index 4ef5ed9d7..d60fa902e 100644 Binary files a/tests/ast-parsing/compile/if-0.4.4-legacy.zip and b/tests/ast-parsing/compile/if-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.5-legacy.zip b/tests/ast-parsing/compile/if-0.4.5-legacy.zip index ec93a6b23..13906adce 100644 Binary files a/tests/ast-parsing/compile/if-0.4.5-legacy.zip and b/tests/ast-parsing/compile/if-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.6-legacy.zip b/tests/ast-parsing/compile/if-0.4.6-legacy.zip index e1c39de80..1ed9bd834 100644 Binary files a/tests/ast-parsing/compile/if-0.4.6-legacy.zip and b/tests/ast-parsing/compile/if-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.7-legacy.zip b/tests/ast-parsing/compile/if-0.4.7-legacy.zip index 0eb295db1..b8c6c3dfc 100644 Binary files a/tests/ast-parsing/compile/if-0.4.7-legacy.zip and b/tests/ast-parsing/compile/if-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.8-legacy.zip b/tests/ast-parsing/compile/if-0.4.8-legacy.zip index fbe84d1d7..9cd9aba4b 100644 Binary files a/tests/ast-parsing/compile/if-0.4.8-legacy.zip and b/tests/ast-parsing/compile/if-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.4.9-legacy.zip b/tests/ast-parsing/compile/if-0.4.9-legacy.zip index 384e23ca4..50da070ee 100644 Binary files a/tests/ast-parsing/compile/if-0.4.9-legacy.zip and b/tests/ast-parsing/compile/if-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.0-compact.zip b/tests/ast-parsing/compile/if-0.5.0-compact.zip index 67093a6c2..80d5e5449 100644 Binary files a/tests/ast-parsing/compile/if-0.5.0-compact.zip and b/tests/ast-parsing/compile/if-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.0-legacy.zip b/tests/ast-parsing/compile/if-0.5.0-legacy.zip index 57f4d7428..ded64499c 100644 Binary files a/tests/ast-parsing/compile/if-0.5.0-legacy.zip and b/tests/ast-parsing/compile/if-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.1-compact.zip b/tests/ast-parsing/compile/if-0.5.1-compact.zip index f49ac0166..0f013795c 100644 Binary files a/tests/ast-parsing/compile/if-0.5.1-compact.zip and b/tests/ast-parsing/compile/if-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.1-legacy.zip b/tests/ast-parsing/compile/if-0.5.1-legacy.zip index 126ea012b..0538ffad8 100644 Binary files a/tests/ast-parsing/compile/if-0.5.1-legacy.zip and b/tests/ast-parsing/compile/if-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.10-compact.zip b/tests/ast-parsing/compile/if-0.5.10-compact.zip index b7e177075..5dc50c02d 100644 Binary files a/tests/ast-parsing/compile/if-0.5.10-compact.zip and b/tests/ast-parsing/compile/if-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.10-legacy.zip b/tests/ast-parsing/compile/if-0.5.10-legacy.zip index 67ea497f2..0b4b45ef7 100644 Binary files a/tests/ast-parsing/compile/if-0.5.10-legacy.zip and b/tests/ast-parsing/compile/if-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.11-compact.zip b/tests/ast-parsing/compile/if-0.5.11-compact.zip index 83163847c..734301f8b 100644 Binary files a/tests/ast-parsing/compile/if-0.5.11-compact.zip and b/tests/ast-parsing/compile/if-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.11-legacy.zip b/tests/ast-parsing/compile/if-0.5.11-legacy.zip index 0c7bbf584..6593ad0ef 100644 Binary files a/tests/ast-parsing/compile/if-0.5.11-legacy.zip and b/tests/ast-parsing/compile/if-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.12-compact.zip b/tests/ast-parsing/compile/if-0.5.12-compact.zip index 25e4ece8d..48b703c51 100644 Binary files a/tests/ast-parsing/compile/if-0.5.12-compact.zip and b/tests/ast-parsing/compile/if-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.12-legacy.zip b/tests/ast-parsing/compile/if-0.5.12-legacy.zip index 400fbf65b..4f5ae4479 100644 Binary files a/tests/ast-parsing/compile/if-0.5.12-legacy.zip and b/tests/ast-parsing/compile/if-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.13-compact.zip b/tests/ast-parsing/compile/if-0.5.13-compact.zip index 474860fd4..deb604a8c 100644 Binary files a/tests/ast-parsing/compile/if-0.5.13-compact.zip and b/tests/ast-parsing/compile/if-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.13-legacy.zip b/tests/ast-parsing/compile/if-0.5.13-legacy.zip index 45aa975b9..421e8d171 100644 Binary files a/tests/ast-parsing/compile/if-0.5.13-legacy.zip and b/tests/ast-parsing/compile/if-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.14-compact.zip b/tests/ast-parsing/compile/if-0.5.14-compact.zip index ba2c24dae..99c2f1db0 100644 Binary files a/tests/ast-parsing/compile/if-0.5.14-compact.zip and b/tests/ast-parsing/compile/if-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.14-legacy.zip b/tests/ast-parsing/compile/if-0.5.14-legacy.zip index d8f820d56..1559ed84d 100644 Binary files a/tests/ast-parsing/compile/if-0.5.14-legacy.zip and b/tests/ast-parsing/compile/if-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.15-compact.zip b/tests/ast-parsing/compile/if-0.5.15-compact.zip index 2968cb53e..4b101cd1a 100644 Binary files a/tests/ast-parsing/compile/if-0.5.15-compact.zip and b/tests/ast-parsing/compile/if-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.15-legacy.zip b/tests/ast-parsing/compile/if-0.5.15-legacy.zip index 789114247..a5acd63c1 100644 Binary files a/tests/ast-parsing/compile/if-0.5.15-legacy.zip and b/tests/ast-parsing/compile/if-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.16-compact.zip b/tests/ast-parsing/compile/if-0.5.16-compact.zip index e46e14842..9e877a226 100644 Binary files a/tests/ast-parsing/compile/if-0.5.16-compact.zip and b/tests/ast-parsing/compile/if-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.16-legacy.zip b/tests/ast-parsing/compile/if-0.5.16-legacy.zip index fd8168dc5..d5fa5a98c 100644 Binary files a/tests/ast-parsing/compile/if-0.5.16-legacy.zip and b/tests/ast-parsing/compile/if-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.17-compact.zip b/tests/ast-parsing/compile/if-0.5.17-compact.zip index 1e263f674..2e5abaec8 100644 Binary files a/tests/ast-parsing/compile/if-0.5.17-compact.zip and b/tests/ast-parsing/compile/if-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.17-legacy.zip b/tests/ast-parsing/compile/if-0.5.17-legacy.zip index f1dc62966..464e29c50 100644 Binary files a/tests/ast-parsing/compile/if-0.5.17-legacy.zip and b/tests/ast-parsing/compile/if-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.2-compact.zip b/tests/ast-parsing/compile/if-0.5.2-compact.zip index 8269b06c3..ddb6adfca 100644 Binary files a/tests/ast-parsing/compile/if-0.5.2-compact.zip and b/tests/ast-parsing/compile/if-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.2-legacy.zip b/tests/ast-parsing/compile/if-0.5.2-legacy.zip index 616d7c93c..cb961d465 100644 Binary files a/tests/ast-parsing/compile/if-0.5.2-legacy.zip and b/tests/ast-parsing/compile/if-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.3-compact.zip b/tests/ast-parsing/compile/if-0.5.3-compact.zip index 1a665553c..2d5e3bf01 100644 Binary files a/tests/ast-parsing/compile/if-0.5.3-compact.zip and b/tests/ast-parsing/compile/if-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.3-legacy.zip b/tests/ast-parsing/compile/if-0.5.3-legacy.zip index 7e2fd2878..9ba827916 100644 Binary files a/tests/ast-parsing/compile/if-0.5.3-legacy.zip and b/tests/ast-parsing/compile/if-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.4-compact.zip b/tests/ast-parsing/compile/if-0.5.4-compact.zip index ecda53a88..c0b5161e1 100644 Binary files a/tests/ast-parsing/compile/if-0.5.4-compact.zip and b/tests/ast-parsing/compile/if-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.4-legacy.zip b/tests/ast-parsing/compile/if-0.5.4-legacy.zip index ca179102a..55112e69c 100644 Binary files a/tests/ast-parsing/compile/if-0.5.4-legacy.zip and b/tests/ast-parsing/compile/if-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.5-compact.zip b/tests/ast-parsing/compile/if-0.5.5-compact.zip index fc800a7d0..034ca841b 100644 Binary files a/tests/ast-parsing/compile/if-0.5.5-compact.zip and b/tests/ast-parsing/compile/if-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.5-legacy.zip b/tests/ast-parsing/compile/if-0.5.5-legacy.zip index b24e43061..f6c4d87cf 100644 Binary files a/tests/ast-parsing/compile/if-0.5.5-legacy.zip and b/tests/ast-parsing/compile/if-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.6-compact.zip b/tests/ast-parsing/compile/if-0.5.6-compact.zip index b803994ef..4d8bc905b 100644 Binary files a/tests/ast-parsing/compile/if-0.5.6-compact.zip and b/tests/ast-parsing/compile/if-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.6-legacy.zip b/tests/ast-parsing/compile/if-0.5.6-legacy.zip index 8c31a333e..162f5bc0c 100644 Binary files a/tests/ast-parsing/compile/if-0.5.6-legacy.zip and b/tests/ast-parsing/compile/if-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.7-compact.zip b/tests/ast-parsing/compile/if-0.5.7-compact.zip index 9c270f080..6a27a9cc6 100644 Binary files a/tests/ast-parsing/compile/if-0.5.7-compact.zip and b/tests/ast-parsing/compile/if-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.7-legacy.zip b/tests/ast-parsing/compile/if-0.5.7-legacy.zip index 9b3d8d8bb..6f27a660e 100644 Binary files a/tests/ast-parsing/compile/if-0.5.7-legacy.zip and b/tests/ast-parsing/compile/if-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.8-compact.zip b/tests/ast-parsing/compile/if-0.5.8-compact.zip index 7570a6bc1..aa42942b1 100644 Binary files a/tests/ast-parsing/compile/if-0.5.8-compact.zip and b/tests/ast-parsing/compile/if-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.8-legacy.zip b/tests/ast-parsing/compile/if-0.5.8-legacy.zip index cf480250b..1ff42e7a4 100644 Binary files a/tests/ast-parsing/compile/if-0.5.8-legacy.zip and b/tests/ast-parsing/compile/if-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.9-compact.zip b/tests/ast-parsing/compile/if-0.5.9-compact.zip index 37f982091..b418dbbd9 100644 Binary files a/tests/ast-parsing/compile/if-0.5.9-compact.zip and b/tests/ast-parsing/compile/if-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.5.9-legacy.zip b/tests/ast-parsing/compile/if-0.5.9-legacy.zip index 7c78ba39f..41373e2ad 100644 Binary files a/tests/ast-parsing/compile/if-0.5.9-legacy.zip and b/tests/ast-parsing/compile/if-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.0-compact.zip b/tests/ast-parsing/compile/if-0.6.0-compact.zip index 1ba78553c..00dd058ee 100644 Binary files a/tests/ast-parsing/compile/if-0.6.0-compact.zip and b/tests/ast-parsing/compile/if-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.0-legacy.zip b/tests/ast-parsing/compile/if-0.6.0-legacy.zip index 407be1177..aeeb320fc 100644 Binary files a/tests/ast-parsing/compile/if-0.6.0-legacy.zip and b/tests/ast-parsing/compile/if-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.1-compact.zip b/tests/ast-parsing/compile/if-0.6.1-compact.zip index 55663b8f8..ab91ffc02 100644 Binary files a/tests/ast-parsing/compile/if-0.6.1-compact.zip and b/tests/ast-parsing/compile/if-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.1-legacy.zip b/tests/ast-parsing/compile/if-0.6.1-legacy.zip index 683934c9a..fbf820878 100644 Binary files a/tests/ast-parsing/compile/if-0.6.1-legacy.zip and b/tests/ast-parsing/compile/if-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.10-compact.zip b/tests/ast-parsing/compile/if-0.6.10-compact.zip index e98fcff70..312172fd0 100644 Binary files a/tests/ast-parsing/compile/if-0.6.10-compact.zip and b/tests/ast-parsing/compile/if-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.10-legacy.zip b/tests/ast-parsing/compile/if-0.6.10-legacy.zip index 8c72532ea..01460bf05 100644 Binary files a/tests/ast-parsing/compile/if-0.6.10-legacy.zip and b/tests/ast-parsing/compile/if-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.11-compact.zip b/tests/ast-parsing/compile/if-0.6.11-compact.zip index 9c841202d..4346a4364 100644 Binary files a/tests/ast-parsing/compile/if-0.6.11-compact.zip and b/tests/ast-parsing/compile/if-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.11-legacy.zip b/tests/ast-parsing/compile/if-0.6.11-legacy.zip index db794cb45..592d17952 100644 Binary files a/tests/ast-parsing/compile/if-0.6.11-legacy.zip and b/tests/ast-parsing/compile/if-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.12-compact.zip b/tests/ast-parsing/compile/if-0.6.12-compact.zip index 913bfc65c..c210d7874 100644 Binary files a/tests/ast-parsing/compile/if-0.6.12-compact.zip and b/tests/ast-parsing/compile/if-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.12-legacy.zip b/tests/ast-parsing/compile/if-0.6.12-legacy.zip index 1d7534ac9..17a2fc6c2 100644 Binary files a/tests/ast-parsing/compile/if-0.6.12-legacy.zip and b/tests/ast-parsing/compile/if-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.2-compact.zip b/tests/ast-parsing/compile/if-0.6.2-compact.zip index 2ed8c818a..58cd210ac 100644 Binary files a/tests/ast-parsing/compile/if-0.6.2-compact.zip and b/tests/ast-parsing/compile/if-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.2-legacy.zip b/tests/ast-parsing/compile/if-0.6.2-legacy.zip index 43408feb6..9c2efdaa2 100644 Binary files a/tests/ast-parsing/compile/if-0.6.2-legacy.zip and b/tests/ast-parsing/compile/if-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.3-compact.zip b/tests/ast-parsing/compile/if-0.6.3-compact.zip index 2f710341f..81811b976 100644 Binary files a/tests/ast-parsing/compile/if-0.6.3-compact.zip and b/tests/ast-parsing/compile/if-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.3-legacy.zip b/tests/ast-parsing/compile/if-0.6.3-legacy.zip index ac932232e..7f1ffcad0 100644 Binary files a/tests/ast-parsing/compile/if-0.6.3-legacy.zip and b/tests/ast-parsing/compile/if-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.4-compact.zip b/tests/ast-parsing/compile/if-0.6.4-compact.zip index 2971a22e5..f3eb02dc5 100644 Binary files a/tests/ast-parsing/compile/if-0.6.4-compact.zip and b/tests/ast-parsing/compile/if-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.4-legacy.zip b/tests/ast-parsing/compile/if-0.6.4-legacy.zip index 13fa40a04..4da7948bc 100644 Binary files a/tests/ast-parsing/compile/if-0.6.4-legacy.zip and b/tests/ast-parsing/compile/if-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.5-compact.zip b/tests/ast-parsing/compile/if-0.6.5-compact.zip index 9382a9be4..c1bc46452 100644 Binary files a/tests/ast-parsing/compile/if-0.6.5-compact.zip and b/tests/ast-parsing/compile/if-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.5-legacy.zip b/tests/ast-parsing/compile/if-0.6.5-legacy.zip index 3fa75715f..85e7a1d23 100644 Binary files a/tests/ast-parsing/compile/if-0.6.5-legacy.zip and b/tests/ast-parsing/compile/if-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.6-compact.zip b/tests/ast-parsing/compile/if-0.6.6-compact.zip index 516a070ef..bb41b18e4 100644 Binary files a/tests/ast-parsing/compile/if-0.6.6-compact.zip and b/tests/ast-parsing/compile/if-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.6-legacy.zip b/tests/ast-parsing/compile/if-0.6.6-legacy.zip index 88af6a561..380a4a0c9 100644 Binary files a/tests/ast-parsing/compile/if-0.6.6-legacy.zip and b/tests/ast-parsing/compile/if-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.7-compact.zip b/tests/ast-parsing/compile/if-0.6.7-compact.zip index 747c65f18..170c1b92a 100644 Binary files a/tests/ast-parsing/compile/if-0.6.7-compact.zip and b/tests/ast-parsing/compile/if-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.7-legacy.zip b/tests/ast-parsing/compile/if-0.6.7-legacy.zip index 77fe1f37c..2bed94a15 100644 Binary files a/tests/ast-parsing/compile/if-0.6.7-legacy.zip and b/tests/ast-parsing/compile/if-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.8-compact.zip b/tests/ast-parsing/compile/if-0.6.8-compact.zip index 82b15645a..2140c49cf 100644 Binary files a/tests/ast-parsing/compile/if-0.6.8-compact.zip and b/tests/ast-parsing/compile/if-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.8-legacy.zip b/tests/ast-parsing/compile/if-0.6.8-legacy.zip index e34299039..09820f615 100644 Binary files a/tests/ast-parsing/compile/if-0.6.8-legacy.zip and b/tests/ast-parsing/compile/if-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.9-compact.zip b/tests/ast-parsing/compile/if-0.6.9-compact.zip index b04214b58..2a26b2b6e 100644 Binary files a/tests/ast-parsing/compile/if-0.6.9-compact.zip and b/tests/ast-parsing/compile/if-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.6.9-legacy.zip b/tests/ast-parsing/compile/if-0.6.9-legacy.zip index d4b32b981..753eeb37b 100644 Binary files a/tests/ast-parsing/compile/if-0.6.9-legacy.zip and b/tests/ast-parsing/compile/if-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.0-compact.zip b/tests/ast-parsing/compile/if-0.7.0-compact.zip index d126efc76..5ccb8a7c7 100644 Binary files a/tests/ast-parsing/compile/if-0.7.0-compact.zip and b/tests/ast-parsing/compile/if-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.0-legacy.zip b/tests/ast-parsing/compile/if-0.7.0-legacy.zip index 11809f14c..fac24d548 100644 Binary files a/tests/ast-parsing/compile/if-0.7.0-legacy.zip and b/tests/ast-parsing/compile/if-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.1-compact.zip b/tests/ast-parsing/compile/if-0.7.1-compact.zip index 9dadd4543..3a869018e 100644 Binary files a/tests/ast-parsing/compile/if-0.7.1-compact.zip and b/tests/ast-parsing/compile/if-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.1-legacy.zip b/tests/ast-parsing/compile/if-0.7.1-legacy.zip index bbead8977..1bb3b4ace 100644 Binary files a/tests/ast-parsing/compile/if-0.7.1-legacy.zip and b/tests/ast-parsing/compile/if-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.2-compact.zip b/tests/ast-parsing/compile/if-0.7.2-compact.zip index 53e1680e8..27cd1721c 100644 Binary files a/tests/ast-parsing/compile/if-0.7.2-compact.zip and b/tests/ast-parsing/compile/if-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.2-legacy.zip b/tests/ast-parsing/compile/if-0.7.2-legacy.zip index 7bc5167f7..e71d8c796 100644 Binary files a/tests/ast-parsing/compile/if-0.7.2-legacy.zip and b/tests/ast-parsing/compile/if-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.3-compact.zip b/tests/ast-parsing/compile/if-0.7.3-compact.zip index affa192ac..8f7f0b5a3 100644 Binary files a/tests/ast-parsing/compile/if-0.7.3-compact.zip and b/tests/ast-parsing/compile/if-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.3-legacy.zip b/tests/ast-parsing/compile/if-0.7.3-legacy.zip index ab2d87a5f..0ec3835df 100644 Binary files a/tests/ast-parsing/compile/if-0.7.3-legacy.zip and b/tests/ast-parsing/compile/if-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.4-compact.zip b/tests/ast-parsing/compile/if-0.7.4-compact.zip index 975329b0a..9e584dc73 100644 Binary files a/tests/ast-parsing/compile/if-0.7.4-compact.zip and b/tests/ast-parsing/compile/if-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.4-legacy.zip b/tests/ast-parsing/compile/if-0.7.4-legacy.zip index 84ea37b7d..88719429b 100644 Binary files a/tests/ast-parsing/compile/if-0.7.4-legacy.zip and b/tests/ast-parsing/compile/if-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.5-compact.zip b/tests/ast-parsing/compile/if-0.7.5-compact.zip index a2dbb7393..ff5856d15 100644 Binary files a/tests/ast-parsing/compile/if-0.7.5-compact.zip and b/tests/ast-parsing/compile/if-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.5-legacy.zip b/tests/ast-parsing/compile/if-0.7.5-legacy.zip index d1c949794..8f7ab2d1a 100644 Binary files a/tests/ast-parsing/compile/if-0.7.5-legacy.zip and b/tests/ast-parsing/compile/if-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.6-compact.zip b/tests/ast-parsing/compile/if-0.7.6-compact.zip index c94e7557f..99c44a932 100644 Binary files a/tests/ast-parsing/compile/if-0.7.6-compact.zip and b/tests/ast-parsing/compile/if-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.7.6-legacy.zip b/tests/ast-parsing/compile/if-0.7.6-legacy.zip index 7f5cdbaf2..785ffbbc3 100644 Binary files a/tests/ast-parsing/compile/if-0.7.6-legacy.zip and b/tests/ast-parsing/compile/if-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.0-compact.zip b/tests/ast-parsing/compile/if-0.8.0-compact.zip index 1df361015..a7335bde4 100644 Binary files a/tests/ast-parsing/compile/if-0.8.0-compact.zip and b/tests/ast-parsing/compile/if-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.1-compact.zip b/tests/ast-parsing/compile/if-0.8.1-compact.zip index 10a6eb017..98ef3c23f 100644 Binary files a/tests/ast-parsing/compile/if-0.8.1-compact.zip and b/tests/ast-parsing/compile/if-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.2-compact.zip b/tests/ast-parsing/compile/if-0.8.2-compact.zip index f6eacefab..89a31e48b 100644 Binary files a/tests/ast-parsing/compile/if-0.8.2-compact.zip and b/tests/ast-parsing/compile/if-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.3-compact.zip b/tests/ast-parsing/compile/if-0.8.3-compact.zip index a32ac2a58..700864038 100644 Binary files a/tests/ast-parsing/compile/if-0.8.3-compact.zip and b/tests/ast-parsing/compile/if-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.4-compact.zip b/tests/ast-parsing/compile/if-0.8.4-compact.zip index c49136c28..8f7ebdade 100644 Binary files a/tests/ast-parsing/compile/if-0.8.4-compact.zip and b/tests/ast-parsing/compile/if-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.5-compact.zip b/tests/ast-parsing/compile/if-0.8.5-compact.zip index 4efd0248c..591ed0b15 100644 Binary files a/tests/ast-parsing/compile/if-0.8.5-compact.zip and b/tests/ast-parsing/compile/if-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.6-compact.zip b/tests/ast-parsing/compile/if-0.8.6-compact.zip index c9af131ee..b5f6f7d72 100644 Binary files a/tests/ast-parsing/compile/if-0.8.6-compact.zip and b/tests/ast-parsing/compile/if-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/if-0.8.7-compact.zip b/tests/ast-parsing/compile/if-0.8.7-compact.zip index ed4927d13..2a7fa92bb 100644 Binary files a/tests/ast-parsing/compile/if-0.8.7-compact.zip and b/tests/ast-parsing/compile/if-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.0-legacy.zip b/tests/ast-parsing/compile/import-0.4.0-legacy.zip index a912dc36c..6a20ff332 100644 Binary files a/tests/ast-parsing/compile/import-0.4.0-legacy.zip and b/tests/ast-parsing/compile/import-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.1-legacy.zip b/tests/ast-parsing/compile/import-0.4.1-legacy.zip index c1c772c32..996cf0b6b 100644 Binary files a/tests/ast-parsing/compile/import-0.4.1-legacy.zip and b/tests/ast-parsing/compile/import-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.10-legacy.zip b/tests/ast-parsing/compile/import-0.4.10-legacy.zip index d882fcde4..10b92ffd5 100644 Binary files a/tests/ast-parsing/compile/import-0.4.10-legacy.zip and b/tests/ast-parsing/compile/import-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.11-legacy.zip b/tests/ast-parsing/compile/import-0.4.11-legacy.zip index 611e8c7f0..ccaebef50 100644 Binary files a/tests/ast-parsing/compile/import-0.4.11-legacy.zip and b/tests/ast-parsing/compile/import-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.12-compact.zip b/tests/ast-parsing/compile/import-0.4.12-compact.zip index 823b95562..e79360614 100644 Binary files a/tests/ast-parsing/compile/import-0.4.12-compact.zip and b/tests/ast-parsing/compile/import-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.12-legacy.zip b/tests/ast-parsing/compile/import-0.4.12-legacy.zip index 6f2686721..846ea6c48 100644 Binary files a/tests/ast-parsing/compile/import-0.4.12-legacy.zip and b/tests/ast-parsing/compile/import-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.13-compact.zip b/tests/ast-parsing/compile/import-0.4.13-compact.zip index 9ffce0cb6..3d0336589 100644 Binary files a/tests/ast-parsing/compile/import-0.4.13-compact.zip and b/tests/ast-parsing/compile/import-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.13-legacy.zip b/tests/ast-parsing/compile/import-0.4.13-legacy.zip index c73b20363..1a1615ba7 100644 Binary files a/tests/ast-parsing/compile/import-0.4.13-legacy.zip and b/tests/ast-parsing/compile/import-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.14-compact.zip b/tests/ast-parsing/compile/import-0.4.14-compact.zip index 3880673c0..62e6cfdac 100644 Binary files a/tests/ast-parsing/compile/import-0.4.14-compact.zip and b/tests/ast-parsing/compile/import-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.14-legacy.zip b/tests/ast-parsing/compile/import-0.4.14-legacy.zip index 276562aba..43ca9acc2 100644 Binary files a/tests/ast-parsing/compile/import-0.4.14-legacy.zip and b/tests/ast-parsing/compile/import-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.15-compact.zip b/tests/ast-parsing/compile/import-0.4.15-compact.zip index ae55405b9..669fac70d 100644 Binary files a/tests/ast-parsing/compile/import-0.4.15-compact.zip and b/tests/ast-parsing/compile/import-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.15-legacy.zip b/tests/ast-parsing/compile/import-0.4.15-legacy.zip index 479d360d7..0c2845950 100644 Binary files a/tests/ast-parsing/compile/import-0.4.15-legacy.zip and b/tests/ast-parsing/compile/import-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.16-compact.zip b/tests/ast-parsing/compile/import-0.4.16-compact.zip index b90786b84..f2586c6a3 100644 Binary files a/tests/ast-parsing/compile/import-0.4.16-compact.zip and b/tests/ast-parsing/compile/import-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.16-legacy.zip b/tests/ast-parsing/compile/import-0.4.16-legacy.zip index c8d67335d..8ff3765ab 100644 Binary files a/tests/ast-parsing/compile/import-0.4.16-legacy.zip and b/tests/ast-parsing/compile/import-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.17-compact.zip b/tests/ast-parsing/compile/import-0.4.17-compact.zip index bde7640f0..ec0740972 100644 Binary files a/tests/ast-parsing/compile/import-0.4.17-compact.zip and b/tests/ast-parsing/compile/import-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.17-legacy.zip b/tests/ast-parsing/compile/import-0.4.17-legacy.zip index 945bc94f2..d599c1108 100644 Binary files a/tests/ast-parsing/compile/import-0.4.17-legacy.zip and b/tests/ast-parsing/compile/import-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.18-compact.zip b/tests/ast-parsing/compile/import-0.4.18-compact.zip index a42264457..48ea554df 100644 Binary files a/tests/ast-parsing/compile/import-0.4.18-compact.zip and b/tests/ast-parsing/compile/import-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.18-legacy.zip b/tests/ast-parsing/compile/import-0.4.18-legacy.zip index 98ffdacfb..cf227bfba 100644 Binary files a/tests/ast-parsing/compile/import-0.4.18-legacy.zip and b/tests/ast-parsing/compile/import-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.19-compact.zip b/tests/ast-parsing/compile/import-0.4.19-compact.zip index 0a1469eab..a2ffc6c94 100644 Binary files a/tests/ast-parsing/compile/import-0.4.19-compact.zip and b/tests/ast-parsing/compile/import-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.19-legacy.zip b/tests/ast-parsing/compile/import-0.4.19-legacy.zip index 8eda7f8f1..8a6ec15c0 100644 Binary files a/tests/ast-parsing/compile/import-0.4.19-legacy.zip and b/tests/ast-parsing/compile/import-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.2-legacy.zip b/tests/ast-parsing/compile/import-0.4.2-legacy.zip index 1e19efe07..ee51e2421 100644 Binary files a/tests/ast-parsing/compile/import-0.4.2-legacy.zip and b/tests/ast-parsing/compile/import-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.20-compact.zip b/tests/ast-parsing/compile/import-0.4.20-compact.zip index 188e49a13..a1e35c430 100644 Binary files a/tests/ast-parsing/compile/import-0.4.20-compact.zip and b/tests/ast-parsing/compile/import-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.20-legacy.zip b/tests/ast-parsing/compile/import-0.4.20-legacy.zip index 33aafa731..9e714dd91 100644 Binary files a/tests/ast-parsing/compile/import-0.4.20-legacy.zip and b/tests/ast-parsing/compile/import-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.21-compact.zip b/tests/ast-parsing/compile/import-0.4.21-compact.zip index 0b7bc355b..bc82b8430 100644 Binary files a/tests/ast-parsing/compile/import-0.4.21-compact.zip and b/tests/ast-parsing/compile/import-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.21-legacy.zip b/tests/ast-parsing/compile/import-0.4.21-legacy.zip index 377badb32..2b2c386c6 100644 Binary files a/tests/ast-parsing/compile/import-0.4.21-legacy.zip and b/tests/ast-parsing/compile/import-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.22-compact.zip b/tests/ast-parsing/compile/import-0.4.22-compact.zip index 1837a2006..0ebc0cd37 100644 Binary files a/tests/ast-parsing/compile/import-0.4.22-compact.zip and b/tests/ast-parsing/compile/import-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.22-legacy.zip b/tests/ast-parsing/compile/import-0.4.22-legacy.zip index d1923a442..09b19060f 100644 Binary files a/tests/ast-parsing/compile/import-0.4.22-legacy.zip and b/tests/ast-parsing/compile/import-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.23-compact.zip b/tests/ast-parsing/compile/import-0.4.23-compact.zip index 4806e2955..0d38d3080 100644 Binary files a/tests/ast-parsing/compile/import-0.4.23-compact.zip and b/tests/ast-parsing/compile/import-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.23-legacy.zip b/tests/ast-parsing/compile/import-0.4.23-legacy.zip index 8c18441d9..88645851e 100644 Binary files a/tests/ast-parsing/compile/import-0.4.23-legacy.zip and b/tests/ast-parsing/compile/import-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.24-compact.zip b/tests/ast-parsing/compile/import-0.4.24-compact.zip index 6b12bd15e..715e27423 100644 Binary files a/tests/ast-parsing/compile/import-0.4.24-compact.zip and b/tests/ast-parsing/compile/import-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.24-legacy.zip b/tests/ast-parsing/compile/import-0.4.24-legacy.zip index 26b61aaac..859c863c6 100644 Binary files a/tests/ast-parsing/compile/import-0.4.24-legacy.zip and b/tests/ast-parsing/compile/import-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.25-compact.zip b/tests/ast-parsing/compile/import-0.4.25-compact.zip index 6b7af47ae..675659973 100644 Binary files a/tests/ast-parsing/compile/import-0.4.25-compact.zip and b/tests/ast-parsing/compile/import-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.25-legacy.zip b/tests/ast-parsing/compile/import-0.4.25-legacy.zip index 214e073cc..9c9bb133b 100644 Binary files a/tests/ast-parsing/compile/import-0.4.25-legacy.zip and b/tests/ast-parsing/compile/import-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.26-compact.zip b/tests/ast-parsing/compile/import-0.4.26-compact.zip index b03ceabd2..d35773302 100644 Binary files a/tests/ast-parsing/compile/import-0.4.26-compact.zip and b/tests/ast-parsing/compile/import-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.26-legacy.zip b/tests/ast-parsing/compile/import-0.4.26-legacy.zip index 9a5449556..c17b56a31 100644 Binary files a/tests/ast-parsing/compile/import-0.4.26-legacy.zip and b/tests/ast-parsing/compile/import-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.3-legacy.zip b/tests/ast-parsing/compile/import-0.4.3-legacy.zip index 0acd36bd4..382525169 100644 Binary files a/tests/ast-parsing/compile/import-0.4.3-legacy.zip and b/tests/ast-parsing/compile/import-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.4-legacy.zip b/tests/ast-parsing/compile/import-0.4.4-legacy.zip index 68db57d75..44acbfcc8 100644 Binary files a/tests/ast-parsing/compile/import-0.4.4-legacy.zip and b/tests/ast-parsing/compile/import-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.5-legacy.zip b/tests/ast-parsing/compile/import-0.4.5-legacy.zip index 7d31116a6..89fd056d3 100644 Binary files a/tests/ast-parsing/compile/import-0.4.5-legacy.zip and b/tests/ast-parsing/compile/import-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.6-legacy.zip b/tests/ast-parsing/compile/import-0.4.6-legacy.zip index 3dd9118b8..7f8d912df 100644 Binary files a/tests/ast-parsing/compile/import-0.4.6-legacy.zip and b/tests/ast-parsing/compile/import-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.7-legacy.zip b/tests/ast-parsing/compile/import-0.4.7-legacy.zip index 579c2462b..a9fbdfb48 100644 Binary files a/tests/ast-parsing/compile/import-0.4.7-legacy.zip and b/tests/ast-parsing/compile/import-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.8-legacy.zip b/tests/ast-parsing/compile/import-0.4.8-legacy.zip index 7a575666b..54ae56655 100644 Binary files a/tests/ast-parsing/compile/import-0.4.8-legacy.zip and b/tests/ast-parsing/compile/import-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.4.9-legacy.zip b/tests/ast-parsing/compile/import-0.4.9-legacy.zip index 03c46ffbf..8827e3227 100644 Binary files a/tests/ast-parsing/compile/import-0.4.9-legacy.zip and b/tests/ast-parsing/compile/import-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.0-compact.zip b/tests/ast-parsing/compile/import-0.5.0-compact.zip index 3c2d2b6a8..6f11680aa 100644 Binary files a/tests/ast-parsing/compile/import-0.5.0-compact.zip and b/tests/ast-parsing/compile/import-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.0-legacy.zip b/tests/ast-parsing/compile/import-0.5.0-legacy.zip index e570571f2..42f382567 100644 Binary files a/tests/ast-parsing/compile/import-0.5.0-legacy.zip and b/tests/ast-parsing/compile/import-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.1-compact.zip b/tests/ast-parsing/compile/import-0.5.1-compact.zip index 9c2249679..cecd794a4 100644 Binary files a/tests/ast-parsing/compile/import-0.5.1-compact.zip and b/tests/ast-parsing/compile/import-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.1-legacy.zip b/tests/ast-parsing/compile/import-0.5.1-legacy.zip index 6d7b28700..d4e1590d7 100644 Binary files a/tests/ast-parsing/compile/import-0.5.1-legacy.zip and b/tests/ast-parsing/compile/import-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.10-compact.zip b/tests/ast-parsing/compile/import-0.5.10-compact.zip index b864c3218..fa86dbe8b 100644 Binary files a/tests/ast-parsing/compile/import-0.5.10-compact.zip and b/tests/ast-parsing/compile/import-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.10-legacy.zip b/tests/ast-parsing/compile/import-0.5.10-legacy.zip index 99777770c..0f7f703d5 100644 Binary files a/tests/ast-parsing/compile/import-0.5.10-legacy.zip and b/tests/ast-parsing/compile/import-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.11-compact.zip b/tests/ast-parsing/compile/import-0.5.11-compact.zip index 50852e491..f86e63d39 100644 Binary files a/tests/ast-parsing/compile/import-0.5.11-compact.zip and b/tests/ast-parsing/compile/import-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.11-legacy.zip b/tests/ast-parsing/compile/import-0.5.11-legacy.zip index b0bba207d..d1a112fab 100644 Binary files a/tests/ast-parsing/compile/import-0.5.11-legacy.zip and b/tests/ast-parsing/compile/import-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.12-compact.zip b/tests/ast-parsing/compile/import-0.5.12-compact.zip index 4f97a3175..ffff2ddc5 100644 Binary files a/tests/ast-parsing/compile/import-0.5.12-compact.zip and b/tests/ast-parsing/compile/import-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.12-legacy.zip b/tests/ast-parsing/compile/import-0.5.12-legacy.zip index aa792be5d..49a73045c 100644 Binary files a/tests/ast-parsing/compile/import-0.5.12-legacy.zip and b/tests/ast-parsing/compile/import-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.13-compact.zip b/tests/ast-parsing/compile/import-0.5.13-compact.zip index b1ec68ad5..c723858f8 100644 Binary files a/tests/ast-parsing/compile/import-0.5.13-compact.zip and b/tests/ast-parsing/compile/import-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.13-legacy.zip b/tests/ast-parsing/compile/import-0.5.13-legacy.zip index 446dd29dc..070997705 100644 Binary files a/tests/ast-parsing/compile/import-0.5.13-legacy.zip and b/tests/ast-parsing/compile/import-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.14-compact.zip b/tests/ast-parsing/compile/import-0.5.14-compact.zip index d51ef70a6..2e155c329 100644 Binary files a/tests/ast-parsing/compile/import-0.5.14-compact.zip and b/tests/ast-parsing/compile/import-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.14-legacy.zip b/tests/ast-parsing/compile/import-0.5.14-legacy.zip index 88352a01e..81bade6a1 100644 Binary files a/tests/ast-parsing/compile/import-0.5.14-legacy.zip and b/tests/ast-parsing/compile/import-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.15-compact.zip b/tests/ast-parsing/compile/import-0.5.15-compact.zip index 31010658a..2ed8847b4 100644 Binary files a/tests/ast-parsing/compile/import-0.5.15-compact.zip and b/tests/ast-parsing/compile/import-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.15-legacy.zip b/tests/ast-parsing/compile/import-0.5.15-legacy.zip index 2ef805496..56341b98e 100644 Binary files a/tests/ast-parsing/compile/import-0.5.15-legacy.zip and b/tests/ast-parsing/compile/import-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.16-compact.zip b/tests/ast-parsing/compile/import-0.5.16-compact.zip index c92f33678..054b8c8e1 100644 Binary files a/tests/ast-parsing/compile/import-0.5.16-compact.zip and b/tests/ast-parsing/compile/import-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.16-legacy.zip b/tests/ast-parsing/compile/import-0.5.16-legacy.zip index f20811da8..cb4ad02eb 100644 Binary files a/tests/ast-parsing/compile/import-0.5.16-legacy.zip and b/tests/ast-parsing/compile/import-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.17-compact.zip b/tests/ast-parsing/compile/import-0.5.17-compact.zip index 7a042cc11..b4da7e842 100644 Binary files a/tests/ast-parsing/compile/import-0.5.17-compact.zip and b/tests/ast-parsing/compile/import-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.17-legacy.zip b/tests/ast-parsing/compile/import-0.5.17-legacy.zip index c39553e98..2c5e0547d 100644 Binary files a/tests/ast-parsing/compile/import-0.5.17-legacy.zip and b/tests/ast-parsing/compile/import-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.2-compact.zip b/tests/ast-parsing/compile/import-0.5.2-compact.zip index 930c8e08c..805217a75 100644 Binary files a/tests/ast-parsing/compile/import-0.5.2-compact.zip and b/tests/ast-parsing/compile/import-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.2-legacy.zip b/tests/ast-parsing/compile/import-0.5.2-legacy.zip index 5c86a91d7..a5011bacf 100644 Binary files a/tests/ast-parsing/compile/import-0.5.2-legacy.zip and b/tests/ast-parsing/compile/import-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.3-compact.zip b/tests/ast-parsing/compile/import-0.5.3-compact.zip index ff12c0099..615118e62 100644 Binary files a/tests/ast-parsing/compile/import-0.5.3-compact.zip and b/tests/ast-parsing/compile/import-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.3-legacy.zip b/tests/ast-parsing/compile/import-0.5.3-legacy.zip index 5fc294733..3c8f7b2a6 100644 Binary files a/tests/ast-parsing/compile/import-0.5.3-legacy.zip and b/tests/ast-parsing/compile/import-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.4-compact.zip b/tests/ast-parsing/compile/import-0.5.4-compact.zip index 9dabe01d1..74fb01ffc 100644 Binary files a/tests/ast-parsing/compile/import-0.5.4-compact.zip and b/tests/ast-parsing/compile/import-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.4-legacy.zip b/tests/ast-parsing/compile/import-0.5.4-legacy.zip index b693b4dcb..6a0cb868a 100644 Binary files a/tests/ast-parsing/compile/import-0.5.4-legacy.zip and b/tests/ast-parsing/compile/import-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.5-compact.zip b/tests/ast-parsing/compile/import-0.5.5-compact.zip index da24e5d16..3029a0010 100644 Binary files a/tests/ast-parsing/compile/import-0.5.5-compact.zip and b/tests/ast-parsing/compile/import-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.5-legacy.zip b/tests/ast-parsing/compile/import-0.5.5-legacy.zip index 9130485dc..f81a1a3fa 100644 Binary files a/tests/ast-parsing/compile/import-0.5.5-legacy.zip and b/tests/ast-parsing/compile/import-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.6-compact.zip b/tests/ast-parsing/compile/import-0.5.6-compact.zip index 2d3d0734a..e34ec94fd 100644 Binary files a/tests/ast-parsing/compile/import-0.5.6-compact.zip and b/tests/ast-parsing/compile/import-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.6-legacy.zip b/tests/ast-parsing/compile/import-0.5.6-legacy.zip index 3837ecf37..f4f43a011 100644 Binary files a/tests/ast-parsing/compile/import-0.5.6-legacy.zip and b/tests/ast-parsing/compile/import-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.7-compact.zip b/tests/ast-parsing/compile/import-0.5.7-compact.zip index eb868c4f3..cefbe4482 100644 Binary files a/tests/ast-parsing/compile/import-0.5.7-compact.zip and b/tests/ast-parsing/compile/import-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.7-legacy.zip b/tests/ast-parsing/compile/import-0.5.7-legacy.zip index cb2168c3f..3f78cf608 100644 Binary files a/tests/ast-parsing/compile/import-0.5.7-legacy.zip and b/tests/ast-parsing/compile/import-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.8-compact.zip b/tests/ast-parsing/compile/import-0.5.8-compact.zip index f31fdd9b1..247b36ef9 100644 Binary files a/tests/ast-parsing/compile/import-0.5.8-compact.zip and b/tests/ast-parsing/compile/import-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.8-legacy.zip b/tests/ast-parsing/compile/import-0.5.8-legacy.zip index ab37464f2..3a3fd9e64 100644 Binary files a/tests/ast-parsing/compile/import-0.5.8-legacy.zip and b/tests/ast-parsing/compile/import-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.9-compact.zip b/tests/ast-parsing/compile/import-0.5.9-compact.zip index 7677037be..58538b19e 100644 Binary files a/tests/ast-parsing/compile/import-0.5.9-compact.zip and b/tests/ast-parsing/compile/import-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.5.9-legacy.zip b/tests/ast-parsing/compile/import-0.5.9-legacy.zip index bbb8f9f3c..45c2ccaf4 100644 Binary files a/tests/ast-parsing/compile/import-0.5.9-legacy.zip and b/tests/ast-parsing/compile/import-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.0-compact.zip b/tests/ast-parsing/compile/import-0.6.0-compact.zip index 79cd24256..85dee786a 100644 Binary files a/tests/ast-parsing/compile/import-0.6.0-compact.zip and b/tests/ast-parsing/compile/import-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.0-legacy.zip b/tests/ast-parsing/compile/import-0.6.0-legacy.zip index e21ea67d3..449d0b477 100644 Binary files a/tests/ast-parsing/compile/import-0.6.0-legacy.zip and b/tests/ast-parsing/compile/import-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.1-compact.zip b/tests/ast-parsing/compile/import-0.6.1-compact.zip index a1b6e2746..34bcc89ce 100644 Binary files a/tests/ast-parsing/compile/import-0.6.1-compact.zip and b/tests/ast-parsing/compile/import-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.1-legacy.zip b/tests/ast-parsing/compile/import-0.6.1-legacy.zip index 35458174c..53ef4af82 100644 Binary files a/tests/ast-parsing/compile/import-0.6.1-legacy.zip and b/tests/ast-parsing/compile/import-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.10-compact.zip b/tests/ast-parsing/compile/import-0.6.10-compact.zip index f20609bf7..e6beccf41 100644 Binary files a/tests/ast-parsing/compile/import-0.6.10-compact.zip and b/tests/ast-parsing/compile/import-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.10-legacy.zip b/tests/ast-parsing/compile/import-0.6.10-legacy.zip index d7264547d..2b4174a34 100644 Binary files a/tests/ast-parsing/compile/import-0.6.10-legacy.zip and b/tests/ast-parsing/compile/import-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.11-compact.zip b/tests/ast-parsing/compile/import-0.6.11-compact.zip index 44a859eb8..3ebd8814d 100644 Binary files a/tests/ast-parsing/compile/import-0.6.11-compact.zip and b/tests/ast-parsing/compile/import-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.11-legacy.zip b/tests/ast-parsing/compile/import-0.6.11-legacy.zip index 3a23cd1f2..1be321394 100644 Binary files a/tests/ast-parsing/compile/import-0.6.11-legacy.zip and b/tests/ast-parsing/compile/import-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.12-compact.zip b/tests/ast-parsing/compile/import-0.6.12-compact.zip index cfd945042..91e01885b 100644 Binary files a/tests/ast-parsing/compile/import-0.6.12-compact.zip and b/tests/ast-parsing/compile/import-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.12-legacy.zip b/tests/ast-parsing/compile/import-0.6.12-legacy.zip index 4e3c6dc00..e35beff2d 100644 Binary files a/tests/ast-parsing/compile/import-0.6.12-legacy.zip and b/tests/ast-parsing/compile/import-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.2-compact.zip b/tests/ast-parsing/compile/import-0.6.2-compact.zip index 354f16ee3..9eb989acf 100644 Binary files a/tests/ast-parsing/compile/import-0.6.2-compact.zip and b/tests/ast-parsing/compile/import-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.2-legacy.zip b/tests/ast-parsing/compile/import-0.6.2-legacy.zip index 193761d4e..b1596f55a 100644 Binary files a/tests/ast-parsing/compile/import-0.6.2-legacy.zip and b/tests/ast-parsing/compile/import-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.3-compact.zip b/tests/ast-parsing/compile/import-0.6.3-compact.zip index 5c735f746..6715447d9 100644 Binary files a/tests/ast-parsing/compile/import-0.6.3-compact.zip and b/tests/ast-parsing/compile/import-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.3-legacy.zip b/tests/ast-parsing/compile/import-0.6.3-legacy.zip index e66e518b0..e88b9c7f4 100644 Binary files a/tests/ast-parsing/compile/import-0.6.3-legacy.zip and b/tests/ast-parsing/compile/import-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.4-compact.zip b/tests/ast-parsing/compile/import-0.6.4-compact.zip index a933bfee4..7fcd15756 100644 Binary files a/tests/ast-parsing/compile/import-0.6.4-compact.zip and b/tests/ast-parsing/compile/import-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.4-legacy.zip b/tests/ast-parsing/compile/import-0.6.4-legacy.zip index 7e1d0f20c..8d76c0b98 100644 Binary files a/tests/ast-parsing/compile/import-0.6.4-legacy.zip and b/tests/ast-parsing/compile/import-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.5-compact.zip b/tests/ast-parsing/compile/import-0.6.5-compact.zip index e4a013042..0d8a75402 100644 Binary files a/tests/ast-parsing/compile/import-0.6.5-compact.zip and b/tests/ast-parsing/compile/import-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.5-legacy.zip b/tests/ast-parsing/compile/import-0.6.5-legacy.zip index 584b678cb..300355267 100644 Binary files a/tests/ast-parsing/compile/import-0.6.5-legacy.zip and b/tests/ast-parsing/compile/import-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.6-compact.zip b/tests/ast-parsing/compile/import-0.6.6-compact.zip index 8f61bd0f8..f6cbc40d1 100644 Binary files a/tests/ast-parsing/compile/import-0.6.6-compact.zip and b/tests/ast-parsing/compile/import-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.6-legacy.zip b/tests/ast-parsing/compile/import-0.6.6-legacy.zip index ba038a8f7..ed3b812cb 100644 Binary files a/tests/ast-parsing/compile/import-0.6.6-legacy.zip and b/tests/ast-parsing/compile/import-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.7-compact.zip b/tests/ast-parsing/compile/import-0.6.7-compact.zip index cfab02537..d73513afd 100644 Binary files a/tests/ast-parsing/compile/import-0.6.7-compact.zip and b/tests/ast-parsing/compile/import-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.7-legacy.zip b/tests/ast-parsing/compile/import-0.6.7-legacy.zip index 2fe0e70ad..e67d64648 100644 Binary files a/tests/ast-parsing/compile/import-0.6.7-legacy.zip and b/tests/ast-parsing/compile/import-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.8-compact.zip b/tests/ast-parsing/compile/import-0.6.8-compact.zip index a1aceb69e..63d5d6296 100644 Binary files a/tests/ast-parsing/compile/import-0.6.8-compact.zip and b/tests/ast-parsing/compile/import-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.8-legacy.zip b/tests/ast-parsing/compile/import-0.6.8-legacy.zip index 1db730c1d..7cf0b0def 100644 Binary files a/tests/ast-parsing/compile/import-0.6.8-legacy.zip and b/tests/ast-parsing/compile/import-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.9-compact.zip b/tests/ast-parsing/compile/import-0.6.9-compact.zip index edbb0fd85..3adce8f7c 100644 Binary files a/tests/ast-parsing/compile/import-0.6.9-compact.zip and b/tests/ast-parsing/compile/import-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.6.9-legacy.zip b/tests/ast-parsing/compile/import-0.6.9-legacy.zip index 2b2d22e4d..de331f5f9 100644 Binary files a/tests/ast-parsing/compile/import-0.6.9-legacy.zip and b/tests/ast-parsing/compile/import-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.0-compact.zip b/tests/ast-parsing/compile/import-0.7.0-compact.zip index e6bb18b53..2d809c20f 100644 Binary files a/tests/ast-parsing/compile/import-0.7.0-compact.zip and b/tests/ast-parsing/compile/import-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.0-legacy.zip b/tests/ast-parsing/compile/import-0.7.0-legacy.zip index 4051c3d67..c8ceaa53a 100644 Binary files a/tests/ast-parsing/compile/import-0.7.0-legacy.zip and b/tests/ast-parsing/compile/import-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.1-compact.zip b/tests/ast-parsing/compile/import-0.7.1-compact.zip index 5249326a3..30438b507 100644 Binary files a/tests/ast-parsing/compile/import-0.7.1-compact.zip and b/tests/ast-parsing/compile/import-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.1-legacy.zip b/tests/ast-parsing/compile/import-0.7.1-legacy.zip index 87b406099..3b2d906d7 100644 Binary files a/tests/ast-parsing/compile/import-0.7.1-legacy.zip and b/tests/ast-parsing/compile/import-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.2-compact.zip b/tests/ast-parsing/compile/import-0.7.2-compact.zip index ba7024d9e..14c305eda 100644 Binary files a/tests/ast-parsing/compile/import-0.7.2-compact.zip and b/tests/ast-parsing/compile/import-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.2-legacy.zip b/tests/ast-parsing/compile/import-0.7.2-legacy.zip index 89cb45c5d..b88f9c5bf 100644 Binary files a/tests/ast-parsing/compile/import-0.7.2-legacy.zip and b/tests/ast-parsing/compile/import-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.3-compact.zip b/tests/ast-parsing/compile/import-0.7.3-compact.zip index e06c16919..94f7299a3 100644 Binary files a/tests/ast-parsing/compile/import-0.7.3-compact.zip and b/tests/ast-parsing/compile/import-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.3-legacy.zip b/tests/ast-parsing/compile/import-0.7.3-legacy.zip index 1980f8f58..cf8fa9da1 100644 Binary files a/tests/ast-parsing/compile/import-0.7.3-legacy.zip and b/tests/ast-parsing/compile/import-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.4-compact.zip b/tests/ast-parsing/compile/import-0.7.4-compact.zip index c6b54fbb0..44c418edd 100644 Binary files a/tests/ast-parsing/compile/import-0.7.4-compact.zip and b/tests/ast-parsing/compile/import-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.4-legacy.zip b/tests/ast-parsing/compile/import-0.7.4-legacy.zip index c19b3ca1b..8ac2fea2e 100644 Binary files a/tests/ast-parsing/compile/import-0.7.4-legacy.zip and b/tests/ast-parsing/compile/import-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.5-compact.zip b/tests/ast-parsing/compile/import-0.7.5-compact.zip index d80482c1d..8ab5e891c 100644 Binary files a/tests/ast-parsing/compile/import-0.7.5-compact.zip and b/tests/ast-parsing/compile/import-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.5-legacy.zip b/tests/ast-parsing/compile/import-0.7.5-legacy.zip index 9c2e188f5..bfd1cab94 100644 Binary files a/tests/ast-parsing/compile/import-0.7.5-legacy.zip and b/tests/ast-parsing/compile/import-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.6-compact.zip b/tests/ast-parsing/compile/import-0.7.6-compact.zip index 9bdbe5186..72eb195a4 100644 Binary files a/tests/ast-parsing/compile/import-0.7.6-compact.zip and b/tests/ast-parsing/compile/import-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.7.6-legacy.zip b/tests/ast-parsing/compile/import-0.7.6-legacy.zip index 34dd42fe1..78339639b 100644 Binary files a/tests/ast-parsing/compile/import-0.7.6-legacy.zip and b/tests/ast-parsing/compile/import-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.0-compact.zip b/tests/ast-parsing/compile/import-0.8.0-compact.zip index 544530e97..3907f75f7 100644 Binary files a/tests/ast-parsing/compile/import-0.8.0-compact.zip and b/tests/ast-parsing/compile/import-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.1-compact.zip b/tests/ast-parsing/compile/import-0.8.1-compact.zip index 72a2ac75b..94c85d2e2 100644 Binary files a/tests/ast-parsing/compile/import-0.8.1-compact.zip and b/tests/ast-parsing/compile/import-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.2-compact.zip b/tests/ast-parsing/compile/import-0.8.2-compact.zip index 11678b9f3..5186f1654 100644 Binary files a/tests/ast-parsing/compile/import-0.8.2-compact.zip and b/tests/ast-parsing/compile/import-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.3-compact.zip b/tests/ast-parsing/compile/import-0.8.3-compact.zip index 69195ae6b..bc016ece4 100644 Binary files a/tests/ast-parsing/compile/import-0.8.3-compact.zip and b/tests/ast-parsing/compile/import-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.4-compact.zip b/tests/ast-parsing/compile/import-0.8.4-compact.zip index 83d3f6fd1..c42247e7f 100644 Binary files a/tests/ast-parsing/compile/import-0.8.4-compact.zip and b/tests/ast-parsing/compile/import-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.5-compact.zip b/tests/ast-parsing/compile/import-0.8.5-compact.zip index b43782819..fc2d5c6a8 100644 Binary files a/tests/ast-parsing/compile/import-0.8.5-compact.zip and b/tests/ast-parsing/compile/import-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.6-compact.zip b/tests/ast-parsing/compile/import-0.8.6-compact.zip index 0ecd81672..aebd0dd2c 100644 Binary files a/tests/ast-parsing/compile/import-0.8.6-compact.zip and b/tests/ast-parsing/compile/import-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/import-0.8.7-compact.zip b/tests/ast-parsing/compile/import-0.8.7-compact.zip index 807a0dded..c46197da6 100644 Binary files a/tests/ast-parsing/compile/import-0.8.7-compact.zip and b/tests/ast-parsing/compile/import-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.0-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.0-legacy.zip index 4706c6b90..b45ff4bac 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.0-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.1-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.1-legacy.zip index b66ab883e..c9b680511 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.1-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.10-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.10-legacy.zip index 260bb8064..65f8417d6 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.10-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.11-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.11-legacy.zip index 83ab7738e..82c8d0c48 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.11-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.12-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.12-compact.zip index d617fcdc7..73837eeed 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.12-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.12-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.12-legacy.zip index eb3b52212..7dbebff5c 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.12-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.13-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.13-compact.zip index 47bf81254..9808ad8e5 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.13-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.13-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.13-legacy.zip index e6be2b340..9d4612d53 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.13-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.14-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.14-compact.zip index 2008a7e16..38ce7a8ab 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.14-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.14-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.14-legacy.zip index 9682baf72..2f1eadfc0 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.14-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.15-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.15-compact.zip index 4de8f4a30..2b7758004 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.15-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.15-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.15-legacy.zip index 71161d09a..24d29ad74 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.15-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.16-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.16-compact.zip index b9fdfd39c..f48e7bd23 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.16-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.16-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.16-legacy.zip index da8808c74..ab2434fcf 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.16-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.17-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.17-compact.zip index f76607216..c94e89c7e 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.17-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.17-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.17-legacy.zip index 722e1c46a..4e96d313e 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.17-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.18-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.18-compact.zip index b66d8a312..d3959f415 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.18-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.18-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.18-legacy.zip index d56083acf..a88fd3fa3 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.18-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.19-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.19-compact.zip index f057b0d29..437c48cfd 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.19-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.19-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.19-legacy.zip index 9cd000cd1..79cfb738a 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.19-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.2-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.2-legacy.zip index 98218fa57..9bc69c3a6 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.2-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.20-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.20-compact.zip index a8d21a04d..702e9d301 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.20-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.20-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.20-legacy.zip index 6d431db94..3686e897d 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.20-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.21-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.21-compact.zip index bd1224910..ae73d7d93 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.21-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.21-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.21-legacy.zip index 08dbea0a4..9a1c0a966 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.21-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.22-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.22-compact.zip index 2b2e014cb..ec2e71dec 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.22-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.22-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.22-legacy.zip index 36e08473d..a19124e64 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.22-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.23-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.23-compact.zip index 813c6aab7..b0a8014e7 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.23-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.23-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.23-legacy.zip index f63d77ff6..b2f03579d 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.23-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.24-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.24-compact.zip index 23e26623a..644c1ff9a 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.24-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.24-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.24-legacy.zip index 0a89e022e..b9f0c2a25 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.24-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.25-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.25-compact.zip index 21c1f058f..e99cedf2d 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.25-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.25-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.25-legacy.zip index 798dfb69b..6de6edbc2 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.25-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.26-compact.zip b/tests/ast-parsing/compile/indexaccess-0.4.26-compact.zip index 4d00af053..77d6925c5 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.26-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.26-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.26-legacy.zip index 0c9b18d80..65d4262ae 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.26-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.3-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.3-legacy.zip index 42e7aee2e..64ef7bd06 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.3-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.4-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.4-legacy.zip index 21a6dafd2..3d193e6bf 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.4-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.5-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.5-legacy.zip index eb5ac7a72..31b2ea05e 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.5-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.6-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.6-legacy.zip index 1e5cf5ccc..f77fd2aa6 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.6-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.7-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.7-legacy.zip index bc3646197..9df30161f 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.7-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.8-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.8-legacy.zip index 1dbd7e637..1d6c9bea0 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.8-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.4.9-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.4.9-legacy.zip index 915f639b3..2f8dfd241 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.4.9-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.0-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.0-compact.zip index f92a14221..d7cf0886e 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.0-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.0-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.0-legacy.zip index f89749ea0..abb95a7b9 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.0-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.1-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.1-compact.zip index f56b41984..f7f3be35d 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.1-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.1-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.1-legacy.zip index 20ffa8e58..7775c7e3b 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.1-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.10-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.10-compact.zip index 221543b4b..cfbabb373 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.10-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.10-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.10-legacy.zip index a263f0e26..f0fafdf43 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.10-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.11-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.11-compact.zip index 09f753b7b..12a361084 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.11-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.11-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.11-legacy.zip index 4c054a4bc..6bbfcd487 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.11-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.12-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.12-compact.zip index a850cefdf..75a02894b 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.12-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.12-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.12-legacy.zip index 8b4357b34..ac309b154 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.12-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.13-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.13-compact.zip index 6c0e38f6f..970c5f963 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.13-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.13-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.13-legacy.zip index 5f74b15e9..7206cf05e 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.13-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.14-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.14-compact.zip index 39bf6d63b..7407c3f60 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.14-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.14-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.14-legacy.zip index 2cfea9428..476f1e196 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.14-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.15-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.15-compact.zip index ee8992049..fce238ffc 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.15-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.15-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.15-legacy.zip index b4545faed..0851ea503 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.15-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.16-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.16-compact.zip index d00bddfd0..53904305f 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.16-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.16-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.16-legacy.zip index 0f33f7fb7..7d325edb2 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.16-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.17-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.17-compact.zip index 7797dd333..1472811de 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.17-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.17-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.17-legacy.zip index fff221782..c968b0313 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.17-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.2-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.2-compact.zip index 5a3f6b501..cb6bdeaf1 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.2-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.2-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.2-legacy.zip index 005fbd0cd..9e67245e1 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.2-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.3-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.3-compact.zip index ebeb27dc0..a838fb3ab 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.3-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.3-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.3-legacy.zip index 2faf22f13..3af80af0d 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.3-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.4-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.4-compact.zip index bb108703e..abbc22bdd 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.4-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.4-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.4-legacy.zip index 1151b9980..4a2af1029 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.4-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.5-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.5-compact.zip index 55a87131e..28ddda50c 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.5-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.5-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.5-legacy.zip index 5e9f58a1e..b26be4792 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.5-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.6-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.6-compact.zip index 99a80569c..d149e79ba 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.6-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.6-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.6-legacy.zip index 463fe62a9..f51e796db 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.6-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.7-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.7-compact.zip index de99af7ac..b5f9f5aa0 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.7-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.7-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.7-legacy.zip index f4b184f9c..c027f900c 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.7-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.8-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.8-compact.zip index 890b6b6ed..c52cc5294 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.8-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.8-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.8-legacy.zip index 65ecf6d1b..2d36361ac 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.8-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.9-compact.zip b/tests/ast-parsing/compile/indexaccess-0.5.9-compact.zip index ce71962c8..b9a8f03c1 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.9-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.5.9-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.5.9-legacy.zip index 8fbfbcfa6..ad55faea7 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.5.9-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.0-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.0-compact.zip index ecaf46ac5..b5ce594d2 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.0-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.0-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.0-legacy.zip index 47b64f529..bbc7d1681 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.0-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.1-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.1-compact.zip index 52a9c974e..126c8ccf9 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.1-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.1-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.1-legacy.zip index cd13a4aa7..6877f4e6b 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.1-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.10-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.10-compact.zip index 2d9bf1e1c..4d494f259 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.10-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.10-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.10-legacy.zip index 2a068e89d..92664aef7 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.10-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.11-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.11-compact.zip index bfc496bac..b594967d0 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.11-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.11-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.11-legacy.zip index aa0e96f45..e31b97d76 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.11-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.12-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.12-compact.zip index e22751cb6..9033e043c 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.12-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.12-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.12-legacy.zip index 3fa297573..fe186c1dd 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.12-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.2-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.2-compact.zip index 1328a6084..d28136487 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.2-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.2-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.2-legacy.zip index 1d3a8c6fa..eb2c84e1c 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.2-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.3-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.3-compact.zip index efd3f119a..0b70bb6fb 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.3-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.3-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.3-legacy.zip index 991fabefb..d0c4482ae 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.3-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.4-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.4-compact.zip index fa807de33..ef961366b 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.4-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.4-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.4-legacy.zip index 18a645c4a..40c35ae7c 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.4-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.5-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.5-compact.zip index 3a1c55f00..e9d6e9345 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.5-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.5-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.5-legacy.zip index 2822d0cd4..b287819c8 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.5-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.6-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.6-compact.zip index d40b4035e..1ecf57010 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.6-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.6-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.6-legacy.zip index 4082dfbcb..8af3a37fd 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.6-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.7-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.7-compact.zip index 74bb3a098..1aa0da0a9 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.7-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.7-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.7-legacy.zip index 88c7f3b88..1930227f7 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.7-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.8-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.8-compact.zip index 6a4c8b236..fbb52dcbd 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.8-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.8-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.8-legacy.zip index 3b5509833..0a8031deb 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.8-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.9-compact.zip b/tests/ast-parsing/compile/indexaccess-0.6.9-compact.zip index 39d543724..e9af541f3 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.9-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.6.9-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.6.9-legacy.zip index 232ed46ac..4234df1f5 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.6.9-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.0-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.0-compact.zip index 25d4374ce..d3ddf25e2 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.0-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.0-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.0-legacy.zip index 9a458f1f8..02aea395a 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.0-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.1-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.1-compact.zip index 19920ee6a..6c5e3a595 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.1-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.1-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.1-legacy.zip index 348a0c77b..b57c1bf47 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.1-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.2-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.2-compact.zip index 30827bcb3..f7eaef4eb 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.2-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.2-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.2-legacy.zip index b1e54cba0..76b87c9b9 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.2-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.3-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.3-compact.zip index 6bac1d37d..c04c08c87 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.3-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.3-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.3-legacy.zip index 74049f64f..3e3ac15b7 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.3-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.4-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.4-compact.zip index b04774390..137424be6 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.4-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.4-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.4-legacy.zip index 2246ee43d..fc7b0d0c5 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.4-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.5-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.5-compact.zip index 773d6095e..ed78ba42f 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.5-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.5-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.5-legacy.zip index fba81a7a5..867bdc40f 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.5-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.6-compact.zip b/tests/ast-parsing/compile/indexaccess-0.7.6-compact.zip index dbd922af1..6bca0744a 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.6-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.7.6-legacy.zip b/tests/ast-parsing/compile/indexaccess-0.7.6-legacy.zip index d0c1188d2..8960567a3 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.7.6-legacy.zip and b/tests/ast-parsing/compile/indexaccess-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.0-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.0-compact.zip index f8809a9da..6fceff342 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.0-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.1-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.1-compact.zip index 17b70ec9b..17aea5173 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.1-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.2-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.2-compact.zip index 2bb0103ab..b6852d3c5 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.2-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.3-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.3-compact.zip index dc73cde8c..2cfe297bc 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.3-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.4-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.4-compact.zip index 7a032bab2..e7ef543b0 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.4-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.5-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.5-compact.zip index ad7fc592e..f652646c2 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.5-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.6-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.6-compact.zip index 4c4f868bc..7998eaf98 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.6-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexaccess-0.8.7-compact.zip b/tests/ast-parsing/compile/indexaccess-0.8.7-compact.zip index d3625a144..6a97f0c5e 100644 Binary files a/tests/ast-parsing/compile/indexaccess-0.8.7-compact.zip and b/tests/ast-parsing/compile/indexaccess-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.0-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.0-legacy.zip index 83de1f5e4..0d2215228 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.0-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.1-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.1-legacy.zip index 91894e57d..e76900b2c 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.1-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.10-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.10-legacy.zip index ed0a4fcc4..f1d412bef 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.10-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.11-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.11-legacy.zip index 2557e760a..99991f084 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.11-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.12-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.12-compact.zip index 98419b83a..db0ef133f 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.12-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.12-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.12-legacy.zip index 785d97051..5f35fbc63 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.12-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.13-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.13-compact.zip index f0de100f3..5625aa01d 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.13-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.13-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.13-legacy.zip index 34c061f81..c46749505 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.13-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.14-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.14-compact.zip index e353ee6ff..71d2a1ff9 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.14-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.14-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.14-legacy.zip index 237acc4c1..a5b7db135 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.14-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.15-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.15-compact.zip index 10880a0da..04fa44bee 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.15-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.15-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.15-legacy.zip index 5eb1adc11..c6ceee9a4 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.15-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.16-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.16-compact.zip index 0294a5dca..4ea978e52 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.16-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.16-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.16-legacy.zip index 7ce209246..75fad0b02 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.16-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.17-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.17-compact.zip index 5d7002425..b7203dd8b 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.17-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.17-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.17-legacy.zip index 692c43cd1..9254c59b3 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.17-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.18-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.18-compact.zip index 85ce7ed1a..c284e5b92 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.18-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.18-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.18-legacy.zip index ab2106f9d..75770c517 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.18-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.19-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.19-compact.zip index 0202fdf87..5b619ff27 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.19-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.19-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.19-legacy.zip index 39fed3a3b..7cde4c566 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.19-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.2-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.2-legacy.zip index 9903f0822..9ff242ee3 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.2-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.20-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.20-compact.zip index 59fb4236d..3e715ec0e 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.20-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.20-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.20-legacy.zip index 1062fd4b9..32f46dd5c 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.20-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.21-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.21-compact.zip index a61d95d14..88cd763ff 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.21-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.21-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.21-legacy.zip index 7ab92a397..34933e977 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.21-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.22-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.22-compact.zip index a985c4818..abf244a82 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.22-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.22-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.22-legacy.zip index 4a2a2ee6a..459040cd0 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.22-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.23-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.23-compact.zip index a834c4326..f0d2fcbba 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.23-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.23-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.23-legacy.zip index 3e99854d1..e0af0a373 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.23-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.24-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.24-compact.zip index 6a039d553..0a6107f48 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.24-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.24-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.24-legacy.zip index 65953e0bb..2b980eab1 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.24-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.25-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.25-compact.zip index d8b2e2b1f..a40e878d9 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.25-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.25-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.25-legacy.zip index f3553b745..69c846d79 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.25-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.26-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.26-compact.zip index 01f89b754..2a81ba582 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.26-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.26-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.26-legacy.zip index 7724bbda3..c05af1b8f 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.26-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.3-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.3-legacy.zip index f2e000ffc..3f8729911 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.3-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.4-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.4-legacy.zip index 19379696a..f425d85d8 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.4-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.5-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.5-legacy.zip index 2ffe7c36c..1c17d33f0 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.5-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.6-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.6-legacy.zip index a500b54c2..0b88ad7ae 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.6-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.7-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.7-legacy.zip index 4eabf0cb8..37657cc2f 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.7-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.8-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.8-legacy.zip index 8e2d457fd..02de0c2bb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.8-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.4.9-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.4.9-legacy.zip index 51cc69514..60f6462f5 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.4.9-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.0-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.0-compact.zip index f3fd1e226..e22d0fc10 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.0-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.0-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.0-legacy.zip index c5c59e249..7f4ca74a6 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.0-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.1-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.1-compact.zip index 580dc4ccf..2a255b7ef 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.1-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.1-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.1-legacy.zip index bfc01dad9..407d3914f 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.1-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.10-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.10-compact.zip index 7bb800fce..991651df6 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.10-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.10-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.10-legacy.zip index 63cea9dd3..2be066055 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.10-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.11-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.11-compact.zip index 64380f7cf..c083f8335 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.11-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.11-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.11-legacy.zip index 0849a7aab..f33a6f9f9 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.11-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.12-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.12-compact.zip index 8781d5730..3aeff688e 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.12-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.12-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.12-legacy.zip index 2c8bc5982..28162e1a0 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.12-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.13-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.13-compact.zip index a054df8df..6fd69f1e9 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.13-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.13-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.13-legacy.zip index a255bbcb2..9b496815e 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.13-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.14-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.14-compact.zip index 7a239b5b3..e82c8634f 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.14-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.14-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.14-legacy.zip index 06015ae5e..9596b3397 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.14-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.15-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.15-compact.zip index 24124c880..23b7d130e 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.15-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.15-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.15-legacy.zip index c698e9a81..391a601e3 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.15-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.16-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.16-compact.zip index 61479d368..1c41af820 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.16-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.16-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.16-legacy.zip index 33883bedf..34df9ef80 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.16-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.17-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.17-compact.zip index 6b0fd6a6a..bce8c011e 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.17-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.17-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.17-legacy.zip index 731cba344..15313d47d 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.17-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.2-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.2-compact.zip index a98b2158a..450510958 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.2-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.2-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.2-legacy.zip index e99bf2590..ee4a77cc6 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.2-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.3-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.3-compact.zip index 85951af27..6b47748ad 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.3-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.3-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.3-legacy.zip index d23b44067..692f5bbcd 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.3-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.4-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.4-compact.zip index 908457f0e..2edd096fa 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.4-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.4-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.4-legacy.zip index 776261149..af7e4441d 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.4-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.5-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.5-compact.zip index 2f4d360d4..ea2f6ee16 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.5-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.5-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.5-legacy.zip index 7754bf629..4fcc5f10b 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.5-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.6-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.6-compact.zip index 95fe93262..990a49e5a 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.6-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.6-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.6-legacy.zip index 1a221df22..7a10346e8 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.6-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.7-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.7-compact.zip index 4697d87cb..eb786892c 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.7-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.7-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.7-legacy.zip index 92b9359c4..91bf174de 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.7-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.8-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.8-compact.zip index dcaf94436..54fc6beb3 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.8-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.8-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.8-legacy.zip index a7526d0dc..9a380914e 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.8-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.9-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.9-compact.zip index 1365cfb68..b913d03a8 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.9-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.5.9-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.5.9-legacy.zip index b3e1bc9e7..0531f60ac 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.5.9-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.0-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.0-compact.zip index 89748ffec..4140a7433 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.0-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.0-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.0-legacy.zip index a60ffb742..a48e1ebc7 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.0-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.1-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.1-compact.zip index cd342dece..95bd0d615 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.1-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.1-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.1-legacy.zip index a93f14a38..5e4ab8bdb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.1-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.10-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.10-compact.zip index 584546f1b..0757710d2 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.10-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.10-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.10-legacy.zip index 46447cc3a..b7140606a 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.10-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.11-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.11-compact.zip index ef5ec0062..49c066cfb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.11-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.11-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.11-legacy.zip index 7ebab724a..1f486aa57 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.11-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.12-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.12-compact.zip index f01af165e..c2abcedbb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.12-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.12-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.12-legacy.zip index 7dd38a37c..888c7263c 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.12-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.2-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.2-compact.zip index 97c30d554..4d1048afa 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.2-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.2-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.2-legacy.zip index 4dd7386f7..42e2f21b8 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.2-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.3-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.3-compact.zip index cfc276aac..281b8660a 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.3-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.3-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.3-legacy.zip index 2aae48bd6..8534e47c1 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.3-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.4-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.4-compact.zip index 9c381ff23..7ca8fda68 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.4-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.4-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.4-legacy.zip index d77508394..9206fe008 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.4-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.5-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.5-compact.zip index 9f9cfde3a..04759c6b2 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.5-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.5-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.5-legacy.zip index 53bfaa13e..13fcfac87 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.5-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.6-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.6-compact.zip index fc21083e3..095ec6d0b 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.6-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.6-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.6-legacy.zip index ced8f051f..ea74dc0bb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.6-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.7-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.7-compact.zip index 4aeb96de6..204578767 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.7-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.7-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.7-legacy.zip index 136041353..dcd435efa 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.7-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.8-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.8-compact.zip index 5aa873d3b..23a4ecbfd 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.8-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.8-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.8-legacy.zip index c99414a67..08902671b 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.8-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.9-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.9-compact.zip index dfeaf4684..d37187612 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.9-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.6.9-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.6.9-legacy.zip index 5dc54fda6..9d903cdcb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.6.9-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.0-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.0-compact.zip index be40df227..6ec0c7eda 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.0-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.0-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.0-legacy.zip index 60510971f..bd9fbf825 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.0-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.1-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.1-compact.zip index a46e6bb57..6dc549fb6 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.1-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.1-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.1-legacy.zip index 510947f5f..ee26a3adb 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.1-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.2-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.2-compact.zip index c12d34398..727fadc22 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.2-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.2-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.2-legacy.zip index c07ab2bc7..6e9ce40a8 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.2-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.3-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.3-compact.zip index d478ba53c..d1ef2cb68 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.3-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.3-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.3-legacy.zip index 84275a6be..420408155 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.3-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.4-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.4-compact.zip index 6cc9f4ea8..889412e02 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.4-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.4-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.4-legacy.zip index a5608bdba..364709527 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.4-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.5-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.5-compact.zip index 3601108e5..5f2c92132 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.5-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.5-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.5-legacy.zip index 520d38e00..aecd7c81a 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.5-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.6-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.6-compact.zip index 14f52329f..b3d9e29cf 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.6-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.7.6-legacy.zip b/tests/ast-parsing/compile/indexrangeaccess-0.7.6-legacy.zip index abd66e3dc..7cea0be03 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.7.6-legacy.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.0-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.0-compact.zip index 33a8f0fc3..80505c252 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.0-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.1-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.1-compact.zip index f1296ce38..5ab006d1d 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.1-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.2-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.2-compact.zip index 40290cfe3..12b70a7fe 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.2-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.3-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.3-compact.zip index 5c1bf73fe..e0da723ef 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.3-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.4-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.4-compact.zip index e172b934b..ab963234f 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.4-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.5-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.5-compact.zip index 0562ca792..6a6703f26 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.5-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.6-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.6-compact.zip index 3211c734f..7e32333b2 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.6-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/indexrangeaccess-0.8.7-compact.zip b/tests/ast-parsing/compile/indexrangeaccess-0.8.7-compact.zip index 5b004e76a..e9080b5f1 100644 Binary files a/tests/ast-parsing/compile/indexrangeaccess-0.8.7-compact.zip and b/tests/ast-parsing/compile/indexrangeaccess-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.0-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.0-legacy.zip index 7c55c9923..879aae900 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.0-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.1-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.1-legacy.zip index 25d0e23b7..c72268a2d 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.1-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.10-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.10-legacy.zip index 7533cb8f8..5ccc4d2d6 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.10-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.11-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.11-legacy.zip index 0e0faa0a9..51202b396 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.11-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-compact.zip index f407bdf23..6eb86fd84 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-legacy.zip index eb892fb9c..78a1c7c59 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-compact.zip index 8051d04ba..66f3daa63 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-legacy.zip index e0e0a9d22..0fc8894ba 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-compact.zip index 8434376ef..26b89579e 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-legacy.zip index fe2fe88f4..68dc9f280 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-compact.zip index 64e1610f8..10b8d0da9 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-legacy.zip index 04caeb998..2e1871b5f 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-compact.zip index 6730c7bf5..4fd720237 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-legacy.zip index 2e49819b9..6f1a29b67 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-compact.zip index a50436125..bed40805c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-legacy.zip index caf6eb6c8..00cd1d6f7 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-compact.zip index a55405cd1..e9b92bd3d 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-legacy.zip index 760399ed9..a24d613a3 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-compact.zip index e09209cb4..9b83d2e6c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-legacy.zip index d10e63430..25da60ca4 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.2-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.2-legacy.zip index f16f710ab..65aff70a7 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.2-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-compact.zip index 764e9582a..1cccf542c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-legacy.zip index db6aa33eb..0049f1063 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-compact.zip index 9eb85844f..bcc62c3dd 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-legacy.zip index 36d57b262..afbe36406 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-compact.zip index 790a65d61..f79e52a90 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-legacy.zip index 4236b82be..0baf5750f 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-compact.zip index 5d27fb25e..04586a6fd 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-legacy.zip index 085d8f46b..29c9e03f7 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-compact.zip index 771c8e51f..e2b928c3b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-legacy.zip index 031e102c1..a40578618 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-compact.zip index 63374f6a4..e81cff444 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-legacy.zip index a52938271..984a9ade5 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-compact.zip index 9537236a7..c61c94c1f 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-legacy.zip index d8a899499..ed7fed815 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.3-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.3-legacy.zip index 687ef56c0..f9a5d0f85 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.3-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.4-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.4-legacy.zip index 858329837..241f47714 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.4-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.5-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.5-legacy.zip index abcf6fd9a..6849f5302 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.5-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.6-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.6-legacy.zip index 356da618a..32cb758f5 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.6-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.7-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.7-legacy.zip index d1f860412..ce87aee7b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.7-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.8-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.8-legacy.zip index e20ba5c45..20f824123 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.8-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.4.9-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.4.9-legacy.zip index 03c6d6d4f..fac87625c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.4.9-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-compact.zip index 31f751cf2..73beab36a 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-legacy.zip index 98a7d1f30..edf0f9926 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-compact.zip index 2f72201a8..2aaf5a661 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-legacy.zip index 16722c4cd..20dc53a94 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-compact.zip index 127b3a1d6..5b64e2b73 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-legacy.zip index 0295f88a0..8c12895f4 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-compact.zip index 86a8faaf0..411fa8ae4 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-legacy.zip index 9a438db19..f7ac5149e 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-compact.zip index aa43ec0d4..1336b9c5e 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-legacy.zip index 0bc68fbd6..323623d8f 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-compact.zip index 4cb08f6ae..2b09fdf2b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-legacy.zip index a6928f0f4..3be166102 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-compact.zip index c5ae6144f..0f94f0007 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-legacy.zip index 0278ba2d3..2d7287967 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-compact.zip index cce835d18..9b033588b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-legacy.zip index 5c27a53a5..a4f8b2e9a 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-compact.zip index cdd0e75f1..dc27f4301 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-legacy.zip index d5e0de032..c4fbd7ebc 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-compact.zip index 53e9407f7..10e112d5d 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-legacy.zip index 9ffa22056..552a13e9b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-compact.zip index 98d2a27af..28f4e9100 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-legacy.zip index 3c21d8d97..6f2e4dfc5 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-compact.zip index b9708abe4..16a6411e3 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-legacy.zip index 97cbe64ba..fef68c70b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-compact.zip index 812d526bd..64126aad6 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-legacy.zip index 447135e47..8e0ecd9f1 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-compact.zip index 70a300624..c9a93016b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-legacy.zip index 487beb908..9acbbc88e 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-compact.zip index f65f78242..4b1333310 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-legacy.zip index fe35f9ae5..a34a69807 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-compact.zip index 2992eb515..7bfa896d6 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-legacy.zip index 0cc5e8ed7..77a033524 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-compact.zip index 4fd0a6bbd..221559a78 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-legacy.zip index f62c11c1d..5567b9c83 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-compact.zip index 6bacac483..f727e214c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-legacy.zip index d999ff03b..36d182d11 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-compact.zip index e6d159373..89c42b5a2 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-legacy.zip index 6fc75e3bf..6fed83ea2 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-compact.zip index f30347300..e6b1c584f 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-legacy.zip index 28bfdcb1f..05d6f40a6 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-compact.zip index 0d1eb6fda..35ff8d896 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-legacy.zip index 3df484697..fcbd09b4a 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-compact.zip index 824ddafc7..6a408b883 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-legacy.zip index d8326ca50..f357d409a 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-compact.zip index d9a6c1bf3..1a32c0609 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-legacy.zip index 252c5edee..0301f560c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-compact.zip index f61b0a747..f01dd37a7 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-legacy.zip index 624e9a15a..56ed22855 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-compact.zip index e0e04ae3b..4b71cd350 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-legacy.zip index 868ccfbb2..1c7deffe3 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-compact.zip index b65ff3b73..637c06dd0 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-legacy.zip index a11622e6a..18a5906b3 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-compact.zip index 728fd0728..826f3cef6 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-legacy.zip index f60107647..6d98fb59e 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-compact.zip index 0e6f310e3..db94ea891 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-legacy.zip index c7a674065..31c7cb593 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-compact.zip index 7cf76699d..0073539e6 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-legacy.zip index da8acbe61..6bf4b4401 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-compact.zip index 85a58510d..87aa9794a 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-legacy.zip index 969dad86b..8de566aaa 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-compact.zip index f83b050ed..faf945289 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-legacy.zip index a5268488d..8ac6f6cb9 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-compact.zip index d6c160859..c1381177f 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-legacy.zip index 3027b204b..304edd004 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-compact.zip index 0c3097902..26283a1de 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-legacy.zip index cf4a7394b..7f45a61d5 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-compact.zip index c743da1fa..ea2f7cbef 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-legacy.zip index 7b9723f60..325820564 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-compact.zip index cb32c86c0..8fa43620a 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-legacy.zip index bd984c1c9..2a72f55e9 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-compact.zip index 31425f149..f46e76472 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-legacy.zip index 2f432849b..d3fb08404 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-compact.zip index b71966546..bc3f180bf 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-legacy.zip index e37ca29c5..51d7f7257 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-compact.zip index f0c1b287c..2ebd9e0bc 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-legacy.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-legacy.zip index 109080b67..f228f475c 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-legacy.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.0-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.0-compact.zip index 4c1cd4613..1e9d9a99b 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.0-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.1-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.1-compact.zip index a8adf041a..4ada06953 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.1-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.2-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.2-compact.zip index 4d08d5689..56edadb83 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.2-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.3-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.3-compact.zip index 120f10422..c56fdb7fd 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.3-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.4-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.4-compact.zip index 7f9015431..36b0b9c70 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.4-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.5-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.5-compact.zip index ef6f960d7..fb694fdd9 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.5-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.6-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.6-compact.zip index 46c4b5d97..0b3e523d1 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.6-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/library_implicit_conversion-0.8.7-compact.zip b/tests/ast-parsing/compile/library_implicit_conversion-0.8.7-compact.zip index 2fe7c5b21..a608ad4f8 100644 Binary files a/tests/ast-parsing/compile/library_implicit_conversion-0.8.7-compact.zip and b/tests/ast-parsing/compile/library_implicit_conversion-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.0-legacy.zip b/tests/ast-parsing/compile/literal-0.4.0-legacy.zip index b3fc13941..2712e6cdf 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.0-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.1-legacy.zip b/tests/ast-parsing/compile/literal-0.4.1-legacy.zip index c1c6a1e64..fc99f2082 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.1-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.10-legacy.zip b/tests/ast-parsing/compile/literal-0.4.10-legacy.zip index ebb7be39f..e92c452e1 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.10-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.11-legacy.zip b/tests/ast-parsing/compile/literal-0.4.11-legacy.zip index 7bce54a1c..792201928 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.11-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.12-compact.zip b/tests/ast-parsing/compile/literal-0.4.12-compact.zip index a6eed8795..603ba3182 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.12-compact.zip and b/tests/ast-parsing/compile/literal-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.12-legacy.zip b/tests/ast-parsing/compile/literal-0.4.12-legacy.zip index 3380d5295..44a96e463 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.12-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.13-compact.zip b/tests/ast-parsing/compile/literal-0.4.13-compact.zip index 6048771df..7e98ae72a 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.13-compact.zip and b/tests/ast-parsing/compile/literal-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.13-legacy.zip b/tests/ast-parsing/compile/literal-0.4.13-legacy.zip index cc6ccc585..1c5d5f849 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.13-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.14-compact.zip b/tests/ast-parsing/compile/literal-0.4.14-compact.zip index ce8e54c90..34bad5e43 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.14-compact.zip and b/tests/ast-parsing/compile/literal-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.14-legacy.zip b/tests/ast-parsing/compile/literal-0.4.14-legacy.zip index 4783e2907..59b4284af 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.14-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.15-compact.zip b/tests/ast-parsing/compile/literal-0.4.15-compact.zip index 99952ca4d..0dd585754 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.15-compact.zip and b/tests/ast-parsing/compile/literal-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.15-legacy.zip b/tests/ast-parsing/compile/literal-0.4.15-legacy.zip index 9a760707b..6bc3b496c 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.15-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.16-compact.zip b/tests/ast-parsing/compile/literal-0.4.16-compact.zip index c2767b13a..ce7de2370 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.16-compact.zip and b/tests/ast-parsing/compile/literal-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.16-legacy.zip b/tests/ast-parsing/compile/literal-0.4.16-legacy.zip index d9deb704f..b38c0b65b 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.16-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.17-compact.zip b/tests/ast-parsing/compile/literal-0.4.17-compact.zip index cd7040e33..8c8836a72 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.17-compact.zip and b/tests/ast-parsing/compile/literal-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.17-legacy.zip b/tests/ast-parsing/compile/literal-0.4.17-legacy.zip index 58b16009f..87ddbfa9b 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.17-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.18-compact.zip b/tests/ast-parsing/compile/literal-0.4.18-compact.zip index 7acec9c72..aaf0dcb02 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.18-compact.zip and b/tests/ast-parsing/compile/literal-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.18-legacy.zip b/tests/ast-parsing/compile/literal-0.4.18-legacy.zip index 8eba3be3e..a7655f302 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.18-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.19-compact.zip b/tests/ast-parsing/compile/literal-0.4.19-compact.zip index 158ca2096..04f53dd61 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.19-compact.zip and b/tests/ast-parsing/compile/literal-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.19-legacy.zip b/tests/ast-parsing/compile/literal-0.4.19-legacy.zip index a673340d5..7ad77c0f9 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.19-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.2-legacy.zip b/tests/ast-parsing/compile/literal-0.4.2-legacy.zip index bb5946fd9..f0eeb7224 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.2-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.20-compact.zip b/tests/ast-parsing/compile/literal-0.4.20-compact.zip index 8a06b8ca0..8f63a7c84 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.20-compact.zip and b/tests/ast-parsing/compile/literal-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.20-legacy.zip b/tests/ast-parsing/compile/literal-0.4.20-legacy.zip index 634a1a2be..9a502c9ad 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.20-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.21-compact.zip b/tests/ast-parsing/compile/literal-0.4.21-compact.zip index 9b71e08cd..95f80699f 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.21-compact.zip and b/tests/ast-parsing/compile/literal-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.21-legacy.zip b/tests/ast-parsing/compile/literal-0.4.21-legacy.zip index 92c8032d9..61212745f 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.21-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.22-compact.zip b/tests/ast-parsing/compile/literal-0.4.22-compact.zip index a3c339db7..361a30cb0 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.22-compact.zip and b/tests/ast-parsing/compile/literal-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.22-legacy.zip b/tests/ast-parsing/compile/literal-0.4.22-legacy.zip index 10e36de2e..1d6f4211f 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.22-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.23-compact.zip b/tests/ast-parsing/compile/literal-0.4.23-compact.zip index 8ff061b9c..9fc4771ba 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.23-compact.zip and b/tests/ast-parsing/compile/literal-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.23-legacy.zip b/tests/ast-parsing/compile/literal-0.4.23-legacy.zip index 5446daf9b..a18b58020 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.23-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.24-compact.zip b/tests/ast-parsing/compile/literal-0.4.24-compact.zip index cf0b89225..f3e98c985 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.24-compact.zip and b/tests/ast-parsing/compile/literal-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.24-legacy.zip b/tests/ast-parsing/compile/literal-0.4.24-legacy.zip index 856053fda..2f7d98407 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.24-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.25-compact.zip b/tests/ast-parsing/compile/literal-0.4.25-compact.zip index 4d637a1c1..c36612e37 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.25-compact.zip and b/tests/ast-parsing/compile/literal-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.25-legacy.zip b/tests/ast-parsing/compile/literal-0.4.25-legacy.zip index 9186842c9..b904f4e0e 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.25-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.26-compact.zip b/tests/ast-parsing/compile/literal-0.4.26-compact.zip index b83c3aba8..4c64c3026 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.26-compact.zip and b/tests/ast-parsing/compile/literal-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.26-legacy.zip b/tests/ast-parsing/compile/literal-0.4.26-legacy.zip index 2a16fad98..2ff055688 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.26-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.3-legacy.zip b/tests/ast-parsing/compile/literal-0.4.3-legacy.zip index ccc5ea560..370d3bef6 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.3-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.4-legacy.zip b/tests/ast-parsing/compile/literal-0.4.4-legacy.zip index e953bc4e4..10485f922 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.4-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.5-legacy.zip b/tests/ast-parsing/compile/literal-0.4.5-legacy.zip index 9f50c69b6..4319e751b 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.5-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.6-legacy.zip b/tests/ast-parsing/compile/literal-0.4.6-legacy.zip index 36c9c0fec..693b97c56 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.6-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.7-legacy.zip b/tests/ast-parsing/compile/literal-0.4.7-legacy.zip index b6cc0e5dc..601171214 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.7-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.8-legacy.zip b/tests/ast-parsing/compile/literal-0.4.8-legacy.zip index 12a41f740..4067987ff 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.8-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.4.9-legacy.zip b/tests/ast-parsing/compile/literal-0.4.9-legacy.zip index f9ab1caa1..4d22fbe4b 100644 Binary files a/tests/ast-parsing/compile/literal-0.4.9-legacy.zip and b/tests/ast-parsing/compile/literal-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.0-compact.zip b/tests/ast-parsing/compile/literal-0.5.0-compact.zip index 8097366d8..effb6f0fb 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.0-compact.zip and b/tests/ast-parsing/compile/literal-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.0-legacy.zip b/tests/ast-parsing/compile/literal-0.5.0-legacy.zip index df1a540f1..80f35bbb2 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.0-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.1-compact.zip b/tests/ast-parsing/compile/literal-0.5.1-compact.zip index 71b75ddd5..29d795c6b 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.1-compact.zip and b/tests/ast-parsing/compile/literal-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.1-legacy.zip b/tests/ast-parsing/compile/literal-0.5.1-legacy.zip index ea53fb2d3..508a7f3bd 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.1-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.10-compact.zip b/tests/ast-parsing/compile/literal-0.5.10-compact.zip index 8c720d738..9f85ab3bf 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.10-compact.zip and b/tests/ast-parsing/compile/literal-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.10-legacy.zip b/tests/ast-parsing/compile/literal-0.5.10-legacy.zip index 15c073b3c..fadedbebf 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.10-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.11-compact.zip b/tests/ast-parsing/compile/literal-0.5.11-compact.zip index 2e581aede..9a6fcf1bf 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.11-compact.zip and b/tests/ast-parsing/compile/literal-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.11-legacy.zip b/tests/ast-parsing/compile/literal-0.5.11-legacy.zip index fb97f90a7..eb50774aa 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.11-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.12-compact.zip b/tests/ast-parsing/compile/literal-0.5.12-compact.zip index 59186e200..c20384fef 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.12-compact.zip and b/tests/ast-parsing/compile/literal-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.12-legacy.zip b/tests/ast-parsing/compile/literal-0.5.12-legacy.zip index db7b4d4ac..e3dbc8f3c 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.12-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.13-compact.zip b/tests/ast-parsing/compile/literal-0.5.13-compact.zip index a73a7294e..c919ef9ef 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.13-compact.zip and b/tests/ast-parsing/compile/literal-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.13-legacy.zip b/tests/ast-parsing/compile/literal-0.5.13-legacy.zip index 2ca9a7312..cb8537207 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.13-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.14-compact.zip b/tests/ast-parsing/compile/literal-0.5.14-compact.zip index 83b4b0af9..a38d97ce8 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.14-compact.zip and b/tests/ast-parsing/compile/literal-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.14-legacy.zip b/tests/ast-parsing/compile/literal-0.5.14-legacy.zip index c67c88e06..8677f5914 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.14-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.15-compact.zip b/tests/ast-parsing/compile/literal-0.5.15-compact.zip index 171d53565..5a7f6d1c0 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.15-compact.zip and b/tests/ast-parsing/compile/literal-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.15-legacy.zip b/tests/ast-parsing/compile/literal-0.5.15-legacy.zip index 4f51ad3d0..a0366d8d9 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.15-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.16-compact.zip b/tests/ast-parsing/compile/literal-0.5.16-compact.zip index bcca008bf..4a3fa681f 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.16-compact.zip and b/tests/ast-parsing/compile/literal-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.16-legacy.zip b/tests/ast-parsing/compile/literal-0.5.16-legacy.zip index c91998e4c..bbfe0d57d 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.16-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.17-compact.zip b/tests/ast-parsing/compile/literal-0.5.17-compact.zip index 2e1c1c659..65757589f 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.17-compact.zip and b/tests/ast-parsing/compile/literal-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.17-legacy.zip b/tests/ast-parsing/compile/literal-0.5.17-legacy.zip index 1fa49567b..c8887a301 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.17-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.2-compact.zip b/tests/ast-parsing/compile/literal-0.5.2-compact.zip index 4459d300c..9fdbc01cf 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.2-compact.zip and b/tests/ast-parsing/compile/literal-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.2-legacy.zip b/tests/ast-parsing/compile/literal-0.5.2-legacy.zip index b4bbd3ee3..96b05e3e2 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.2-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.3-compact.zip b/tests/ast-parsing/compile/literal-0.5.3-compact.zip index 3f3e09747..c50fca9ff 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.3-compact.zip and b/tests/ast-parsing/compile/literal-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.3-legacy.zip b/tests/ast-parsing/compile/literal-0.5.3-legacy.zip index 92fd49267..c79fdd175 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.3-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.4-compact.zip b/tests/ast-parsing/compile/literal-0.5.4-compact.zip index 4583b5efa..e79af15ab 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.4-compact.zip and b/tests/ast-parsing/compile/literal-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.4-legacy.zip b/tests/ast-parsing/compile/literal-0.5.4-legacy.zip index 0297f7e8b..70384ba0f 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.4-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.5-compact.zip b/tests/ast-parsing/compile/literal-0.5.5-compact.zip index 0fe0606ae..d8027e7a1 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.5-compact.zip and b/tests/ast-parsing/compile/literal-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.5-legacy.zip b/tests/ast-parsing/compile/literal-0.5.5-legacy.zip index 0ff3bad84..315aac19f 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.5-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.6-compact.zip b/tests/ast-parsing/compile/literal-0.5.6-compact.zip index 454b57a95..2511a1896 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.6-compact.zip and b/tests/ast-parsing/compile/literal-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.6-legacy.zip b/tests/ast-parsing/compile/literal-0.5.6-legacy.zip index 2f40ed3ec..624f229b9 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.6-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.7-compact.zip b/tests/ast-parsing/compile/literal-0.5.7-compact.zip index 558489b24..05c6573dc 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.7-compact.zip and b/tests/ast-parsing/compile/literal-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.7-legacy.zip b/tests/ast-parsing/compile/literal-0.5.7-legacy.zip index f4a1cb5cd..42172c15e 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.7-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.8-compact.zip b/tests/ast-parsing/compile/literal-0.5.8-compact.zip index 93de51da8..9f9061d44 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.8-compact.zip and b/tests/ast-parsing/compile/literal-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.8-legacy.zip b/tests/ast-parsing/compile/literal-0.5.8-legacy.zip index ad14dedbd..de8c5c18b 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.8-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.9-compact.zip b/tests/ast-parsing/compile/literal-0.5.9-compact.zip index af2a50aa7..3776ffac7 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.9-compact.zip and b/tests/ast-parsing/compile/literal-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.5.9-legacy.zip b/tests/ast-parsing/compile/literal-0.5.9-legacy.zip index ac5e19434..8253024cf 100644 Binary files a/tests/ast-parsing/compile/literal-0.5.9-legacy.zip and b/tests/ast-parsing/compile/literal-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.0-compact.zip b/tests/ast-parsing/compile/literal-0.6.0-compact.zip index c0f1fc922..da1c1cae2 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.0-compact.zip and b/tests/ast-parsing/compile/literal-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.0-legacy.zip b/tests/ast-parsing/compile/literal-0.6.0-legacy.zip index 6173b228d..a2bc7702d 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.0-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.1-compact.zip b/tests/ast-parsing/compile/literal-0.6.1-compact.zip index f96cac559..ae6285e34 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.1-compact.zip and b/tests/ast-parsing/compile/literal-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.1-legacy.zip b/tests/ast-parsing/compile/literal-0.6.1-legacy.zip index 8d0e7a252..6e3034a58 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.1-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.10-compact.zip b/tests/ast-parsing/compile/literal-0.6.10-compact.zip index 8a96e096e..6d7bbc123 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.10-compact.zip and b/tests/ast-parsing/compile/literal-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.10-legacy.zip b/tests/ast-parsing/compile/literal-0.6.10-legacy.zip index 66d0b2a02..1c399a08c 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.10-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.11-compact.zip b/tests/ast-parsing/compile/literal-0.6.11-compact.zip index f0ebbdf07..4eec88760 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.11-compact.zip and b/tests/ast-parsing/compile/literal-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.11-legacy.zip b/tests/ast-parsing/compile/literal-0.6.11-legacy.zip index c06c45688..b718f1606 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.11-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.12-compact.zip b/tests/ast-parsing/compile/literal-0.6.12-compact.zip index e539fd961..03c755cc0 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.12-compact.zip and b/tests/ast-parsing/compile/literal-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.12-legacy.zip b/tests/ast-parsing/compile/literal-0.6.12-legacy.zip index 2c6573dcb..3942ee8a6 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.12-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.2-compact.zip b/tests/ast-parsing/compile/literal-0.6.2-compact.zip index 4aff08910..5d5d7b4ca 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.2-compact.zip and b/tests/ast-parsing/compile/literal-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.2-legacy.zip b/tests/ast-parsing/compile/literal-0.6.2-legacy.zip index 449edd2c4..20906cad5 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.2-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.3-compact.zip b/tests/ast-parsing/compile/literal-0.6.3-compact.zip index 55c6a3b4b..84ef32bba 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.3-compact.zip and b/tests/ast-parsing/compile/literal-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.3-legacy.zip b/tests/ast-parsing/compile/literal-0.6.3-legacy.zip index ecc64b33a..e5f732a58 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.3-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.4-compact.zip b/tests/ast-parsing/compile/literal-0.6.4-compact.zip index 2a6a27a4e..cbd23ba80 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.4-compact.zip and b/tests/ast-parsing/compile/literal-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.4-legacy.zip b/tests/ast-parsing/compile/literal-0.6.4-legacy.zip index 53e12a5c6..fb7be37cd 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.4-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.5-compact.zip b/tests/ast-parsing/compile/literal-0.6.5-compact.zip index 505592893..ab8ea363d 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.5-compact.zip and b/tests/ast-parsing/compile/literal-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.5-legacy.zip b/tests/ast-parsing/compile/literal-0.6.5-legacy.zip index 2c33d3cbc..ce91545c1 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.5-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.6-compact.zip b/tests/ast-parsing/compile/literal-0.6.6-compact.zip index 2fee38147..1a34ca626 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.6-compact.zip and b/tests/ast-parsing/compile/literal-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.6-legacy.zip b/tests/ast-parsing/compile/literal-0.6.6-legacy.zip index e5b479d19..fba7a46d4 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.6-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.7-compact.zip b/tests/ast-parsing/compile/literal-0.6.7-compact.zip index 4aea5f80d..9f8e5a836 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.7-compact.zip and b/tests/ast-parsing/compile/literal-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.7-legacy.zip b/tests/ast-parsing/compile/literal-0.6.7-legacy.zip index 61c9d61e2..23ebd8023 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.7-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.8-compact.zip b/tests/ast-parsing/compile/literal-0.6.8-compact.zip index 624c9721d..d3da680ff 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.8-compact.zip and b/tests/ast-parsing/compile/literal-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.8-legacy.zip b/tests/ast-parsing/compile/literal-0.6.8-legacy.zip index 96ea4d9f1..6e31b5b12 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.8-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.9-compact.zip b/tests/ast-parsing/compile/literal-0.6.9-compact.zip index f9ced2d91..830b22fcf 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.9-compact.zip and b/tests/ast-parsing/compile/literal-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.6.9-legacy.zip b/tests/ast-parsing/compile/literal-0.6.9-legacy.zip index eb28241b5..ea77642ac 100644 Binary files a/tests/ast-parsing/compile/literal-0.6.9-legacy.zip and b/tests/ast-parsing/compile/literal-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.0-compact.zip b/tests/ast-parsing/compile/literal-0.7.0-compact.zip index 53768f19d..dcd414d61 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.0-compact.zip and b/tests/ast-parsing/compile/literal-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.0-legacy.zip b/tests/ast-parsing/compile/literal-0.7.0-legacy.zip index cba6ceed2..3eb0cec7c 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.0-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.1-compact.zip b/tests/ast-parsing/compile/literal-0.7.1-compact.zip index 4bbd582f4..6ce9119c1 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.1-compact.zip and b/tests/ast-parsing/compile/literal-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.1-legacy.zip b/tests/ast-parsing/compile/literal-0.7.1-legacy.zip index 4851d3656..e68ec45ac 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.1-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.2-compact.zip b/tests/ast-parsing/compile/literal-0.7.2-compact.zip index 1d34f3614..b93f83e2e 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.2-compact.zip and b/tests/ast-parsing/compile/literal-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.2-legacy.zip b/tests/ast-parsing/compile/literal-0.7.2-legacy.zip index b84cabcb2..6f4f03fe0 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.2-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.3-compact.zip b/tests/ast-parsing/compile/literal-0.7.3-compact.zip index a47343a3e..ba3965000 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.3-compact.zip and b/tests/ast-parsing/compile/literal-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.3-legacy.zip b/tests/ast-parsing/compile/literal-0.7.3-legacy.zip index 58dd325fc..39af02f6c 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.3-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.4-compact.zip b/tests/ast-parsing/compile/literal-0.7.4-compact.zip index 22521628e..8f5f51d6a 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.4-compact.zip and b/tests/ast-parsing/compile/literal-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.4-legacy.zip b/tests/ast-parsing/compile/literal-0.7.4-legacy.zip index 4eb411c1c..94cd881ed 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.4-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.5-compact.zip b/tests/ast-parsing/compile/literal-0.7.5-compact.zip index 885095ecc..d606be15b 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.5-compact.zip and b/tests/ast-parsing/compile/literal-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.5-legacy.zip b/tests/ast-parsing/compile/literal-0.7.5-legacy.zip index 02054c4b2..f5d1c10bb 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.5-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.6-compact.zip b/tests/ast-parsing/compile/literal-0.7.6-compact.zip index 730452950..69ee50209 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.6-compact.zip and b/tests/ast-parsing/compile/literal-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.7.6-legacy.zip b/tests/ast-parsing/compile/literal-0.7.6-legacy.zip index 1fccfa3f8..055eff8a9 100644 Binary files a/tests/ast-parsing/compile/literal-0.7.6-legacy.zip and b/tests/ast-parsing/compile/literal-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.0-compact.zip b/tests/ast-parsing/compile/literal-0.8.0-compact.zip index bbc93a271..a3b93aa2c 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.0-compact.zip and b/tests/ast-parsing/compile/literal-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.1-compact.zip b/tests/ast-parsing/compile/literal-0.8.1-compact.zip index 25d051eb3..683564cbf 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.1-compact.zip and b/tests/ast-parsing/compile/literal-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.2-compact.zip b/tests/ast-parsing/compile/literal-0.8.2-compact.zip index d0fc68229..a38504c4b 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.2-compact.zip and b/tests/ast-parsing/compile/literal-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.3-compact.zip b/tests/ast-parsing/compile/literal-0.8.3-compact.zip index 2fdd4548a..9d2aa4603 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.3-compact.zip and b/tests/ast-parsing/compile/literal-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.4-compact.zip b/tests/ast-parsing/compile/literal-0.8.4-compact.zip index ff36b04e7..595d706b1 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.4-compact.zip and b/tests/ast-parsing/compile/literal-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.5-compact.zip b/tests/ast-parsing/compile/literal-0.8.5-compact.zip index 59d0f6ada..2d20b0d3f 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.5-compact.zip and b/tests/ast-parsing/compile/literal-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.6-compact.zip b/tests/ast-parsing/compile/literal-0.8.6-compact.zip index 2a84e5254..d79150d64 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.6-compact.zip and b/tests/ast-parsing/compile/literal-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/literal-0.8.7-compact.zip b/tests/ast-parsing/compile/literal-0.8.7-compact.zip index 9da08bd70..908bdd156 100644 Binary files a/tests/ast-parsing/compile/literal-0.8.7-compact.zip and b/tests/ast-parsing/compile/literal-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.0-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.0-legacy.zip index d7b43073b..8f169e871 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.0-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.1-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.1-legacy.zip index 07fc0da42..050c956f6 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.1-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.10-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.10-legacy.zip index dc44b3cce..0f8765323 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.10-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.11-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.11-legacy.zip index 01984478c..153f3cc2e 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.11-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.12-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.12-compact.zip index e5b17fb28..319855b0b 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.12-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.12-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.12-legacy.zip index 17aba25f4..43856f65f 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.12-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.13-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.13-compact.zip index 6be37804a..d53d96314 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.13-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.13-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.13-legacy.zip index d33b95968..28e0c352d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.13-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.14-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.14-compact.zip index fade290e3..f21d069b6 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.14-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.14-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.14-legacy.zip index f165cdf51..8389bb357 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.14-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.15-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.15-compact.zip index 4a8903f65..1059d80dd 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.15-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.15-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.15-legacy.zip index 340de3118..6b51c04a7 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.15-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.16-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.16-compact.zip index 2f491d73d..304e6f5fd 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.16-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.16-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.16-legacy.zip index c16925966..f7f09a47e 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.16-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.17-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.17-compact.zip index 5da405dd6..01f7d580b 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.17-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.17-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.17-legacy.zip index 88959210f..3d6b00a58 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.17-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.18-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.18-compact.zip index 99cdbf9bd..7e00febe0 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.18-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.18-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.18-legacy.zip index 763212b6d..e9ba99d97 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.18-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.19-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.19-compact.zip index 2dcd3870e..9234461cb 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.19-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.19-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.19-legacy.zip index 153dd7cb9..0c66f1374 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.19-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.2-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.2-legacy.zip index cd3a802f1..dab9042e0 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.2-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.20-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.20-compact.zip index 0ec82b04f..ddcf03e1e 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.20-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.20-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.20-legacy.zip index eb3da01fb..3b8538cc0 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.20-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.21-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.21-compact.zip index d84585e27..3973cc244 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.21-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.21-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.21-legacy.zip index 9c62f977a..f897c2497 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.21-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.22-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.22-compact.zip index cde8e5b10..63acbb750 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.22-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.22-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.22-legacy.zip index 93b8aa87b..6495966f4 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.22-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.23-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.23-compact.zip index fa9f6d2b7..61a6f4662 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.23-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.23-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.23-legacy.zip index 32e5bfe31..61dbb223d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.23-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.24-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.24-compact.zip index 71b7fabc2..352f6e6e7 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.24-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.24-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.24-legacy.zip index 58b1c6cf6..d159676bc 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.24-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.25-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.25-compact.zip index 24c14e698..bd7bf7a60 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.25-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.25-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.25-legacy.zip index 5580b2304..68c63a206 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.25-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.26-compact.zip b/tests/ast-parsing/compile/memberaccess-0.4.26-compact.zip index ded281f2e..b334fe1ee 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.26-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.26-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.26-legacy.zip index 627b671fd..74878b9e7 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.26-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.3-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.3-legacy.zip index f2ed459c7..74a6e96e9 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.3-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.4-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.4-legacy.zip index 8b6703bb2..11ca33878 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.4-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.5-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.5-legacy.zip index 4fe15bfda..28b0267eb 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.5-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.6-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.6-legacy.zip index 09dd54b1b..015d7600c 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.6-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.7-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.7-legacy.zip index 799c342b1..b9be77b62 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.7-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.8-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.8-legacy.zip index a93fd53db..1beea367b 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.8-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.4.9-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.4.9-legacy.zip index d24269c6e..3d80ff633 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.4.9-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.0-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.0-compact.zip index 84862a17b..d98f4cccf 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.0-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.0-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.0-legacy.zip index 66ac07602..426e213c5 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.0-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.1-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.1-compact.zip index dbcee1ecc..9458f0d96 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.1-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.1-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.1-legacy.zip index 6ea2f481d..c59e7868d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.1-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.10-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.10-compact.zip index 9282afc23..105ab47e2 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.10-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.10-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.10-legacy.zip index 4cee0586c..123779796 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.10-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.11-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.11-compact.zip index c14833faf..8a5f07a10 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.11-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.11-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.11-legacy.zip index e755fe612..c5f806eed 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.11-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.12-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.12-compact.zip index 55f8a5b91..8d4e06fcf 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.12-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.12-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.12-legacy.zip index 31be46b1b..36a62985f 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.12-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.13-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.13-compact.zip index 3806b7772..9beb01453 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.13-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.13-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.13-legacy.zip index f9d6cf9bf..788b1d95e 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.13-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.14-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.14-compact.zip index a54407ef1..65d3912c3 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.14-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.14-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.14-legacy.zip index b6622cc9f..69398e51d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.14-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.15-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.15-compact.zip index 4015a1afd..7d6878ed1 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.15-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.15-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.15-legacy.zip index a15932dd2..1dfd3ba04 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.15-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.16-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.16-compact.zip index a295771e8..343a9dccc 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.16-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.16-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.16-legacy.zip index a3179e8a0..dfdbd8ef4 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.16-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.17-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.17-compact.zip index 2516f3dbc..b353ab516 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.17-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.17-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.17-legacy.zip index 5fe4ba39e..ebb2a97b2 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.17-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.2-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.2-compact.zip index 88c1bf44d..1f78ef2d4 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.2-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.2-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.2-legacy.zip index e9f00dbd3..76ff196c4 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.2-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.3-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.3-compact.zip index c14d4e443..0933cf793 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.3-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.3-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.3-legacy.zip index 6cff0a4ab..593cef5a9 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.3-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.4-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.4-compact.zip index 20fec33e0..203606495 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.4-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.4-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.4-legacy.zip index 41df7fcf8..4d01de740 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.4-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.5-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.5-compact.zip index 0f35a8a10..ae1aa2ddc 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.5-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.5-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.5-legacy.zip index a375541f6..412557ec9 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.5-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.6-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.6-compact.zip index 1affe3df3..7aea0fe7a 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.6-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.6-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.6-legacy.zip index 08b37b39d..bdd0cfab1 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.6-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.7-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.7-compact.zip index 16d2c6de2..48e9db19f 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.7-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.7-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.7-legacy.zip index 4a2cd0f0d..8885bf278 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.7-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.8-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.8-compact.zip index f04b9218e..e6b9993b2 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.8-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.8-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.8-legacy.zip index dd6b83094..91c0868ee 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.8-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.9-compact.zip b/tests/ast-parsing/compile/memberaccess-0.5.9-compact.zip index 7e7654bae..a4ddf7f3b 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.9-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.5.9-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.5.9-legacy.zip index f274e4ff3..ba8680df7 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.5.9-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.0-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.0-compact.zip index c7da2124e..0c2840ec4 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.0-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.0-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.0-legacy.zip index febd85031..acab2356e 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.0-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.1-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.1-compact.zip index 468d1c2d8..297fd178a 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.1-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.1-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.1-legacy.zip index 070beb923..eda56269f 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.1-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.10-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.10-compact.zip index 3d542c58b..a62e5bb74 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.10-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.10-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.10-legacy.zip index 92ea351f5..ea4f6756d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.10-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.11-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.11-compact.zip index cbebb44a1..036941720 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.11-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.11-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.11-legacy.zip index 28d5f3848..cc9968ca7 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.11-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.12-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.12-compact.zip index b248d171b..7e23efd49 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.12-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.12-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.12-legacy.zip index cef551e2c..454c75c2c 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.12-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.2-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.2-compact.zip index 8b519db33..38b2c2b12 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.2-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.2-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.2-legacy.zip index 18c69b58e..2efe2b4d4 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.2-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.3-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.3-compact.zip index bb1e2421a..fd2629090 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.3-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.3-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.3-legacy.zip index c1afe8062..23e9d91a1 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.3-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.4-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.4-compact.zip index d0533b877..427e28a43 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.4-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.4-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.4-legacy.zip index ef6b18b34..c9f702bc2 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.4-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.5-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.5-compact.zip index 052ef7b1d..9478821a0 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.5-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.5-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.5-legacy.zip index 1b4596f76..ccf2be439 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.5-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.6-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.6-compact.zip index f6d9fc85e..68f2618a9 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.6-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.6-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.6-legacy.zip index 0fa0ce6cf..8cb6710de 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.6-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.7-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.7-compact.zip index 4b8e26153..5558e30eb 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.7-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.7-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.7-legacy.zip index 58d318daa..e48b5b637 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.7-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.8-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.8-compact.zip index eedafce84..ff6ca5057 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.8-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.8-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.8-legacy.zip index 4d0b5b030..a541217ee 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.8-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.9-compact.zip b/tests/ast-parsing/compile/memberaccess-0.6.9-compact.zip index e6426a2b1..d6105fde9 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.9-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.6.9-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.6.9-legacy.zip index 3b4b7960f..cae677338 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.6.9-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.0-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.0-compact.zip index 898aab5fd..1f6c2c3f5 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.0-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.0-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.0-legacy.zip index 7149193a0..5e4678695 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.0-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.1-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.1-compact.zip index 4621ed711..e235bae0a 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.1-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.1-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.1-legacy.zip index befff72ff..0eac4d52d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.1-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.2-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.2-compact.zip index 2b30f73c5..c56cca9e1 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.2-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.2-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.2-legacy.zip index 79a56ebb2..298f1dc45 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.2-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.3-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.3-compact.zip index 82ac65ca0..19272dbc5 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.3-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.3-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.3-legacy.zip index 439c85d9a..c2bab157c 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.3-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.4-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.4-compact.zip index 67196b055..223369920 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.4-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.4-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.4-legacy.zip index 5b05cb5b9..8d4fa6e05 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.4-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.5-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.5-compact.zip index aa39bb4eb..4f82c61af 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.5-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.5-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.5-legacy.zip index 118ff456d..310808ae9 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.5-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.6-compact.zip b/tests/ast-parsing/compile/memberaccess-0.7.6-compact.zip index ed8806b77..dfe9ab799 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.6-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.7.6-legacy.zip b/tests/ast-parsing/compile/memberaccess-0.7.6-legacy.zip index a550d9d49..09082206a 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.7.6-legacy.zip and b/tests/ast-parsing/compile/memberaccess-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.0-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.0-compact.zip index 13adb7145..b466af54a 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.0-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.1-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.1-compact.zip index db7164d2d..61125b9a3 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.1-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.2-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.2-compact.zip index 1ba5cdadd..be8f012d6 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.2-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.3-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.3-compact.zip index 72d0dfb8c..c735b1c98 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.3-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.4-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.4-compact.zip index 04346ffbe..1f71536a6 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.4-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.5-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.5-compact.zip index f3627798c..a4530507b 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.5-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.6-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.6-compact.zip index 33580d67e..d77204411 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.6-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/memberaccess-0.8.7-compact.zip b/tests/ast-parsing/compile/memberaccess-0.8.7-compact.zip index 4d23575a2..0e2a2597d 100644 Binary files a/tests/ast-parsing/compile/memberaccess-0.8.7-compact.zip and b/tests/ast-parsing/compile/memberaccess-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.0-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.0-legacy.zip index 290acd89f..13d085603 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.0-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.1-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.1-legacy.zip index cfc4dbd41..0e7ac4be9 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.1-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.10-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.10-legacy.zip index 0173b1685..1cdd63010 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.10-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.11-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.11-legacy.zip index d71acb984..697fc1818 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.11-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.12-compact.zip b/tests/ast-parsing/compile/minmax-0.4.12-compact.zip index 10beef322..5b184d545 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.12-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.12-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.12-legacy.zip index 921711ead..e4f5b84c2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.12-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.13-compact.zip b/tests/ast-parsing/compile/minmax-0.4.13-compact.zip index 876ff3f92..6e380099c 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.13-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.13-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.13-legacy.zip index 73dad4cdf..114b0f2a5 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.13-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.14-compact.zip b/tests/ast-parsing/compile/minmax-0.4.14-compact.zip index 0abd06147..4748e7e6e 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.14-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.14-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.14-legacy.zip index ae057f76a..9376d28ed 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.14-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.15-compact.zip b/tests/ast-parsing/compile/minmax-0.4.15-compact.zip index 4dfc31e52..b60a9f27d 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.15-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.15-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.15-legacy.zip index d3ce8cdb7..e54ce161d 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.15-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.16-compact.zip b/tests/ast-parsing/compile/minmax-0.4.16-compact.zip index 4ffcda58e..a6b8d0651 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.16-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.16-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.16-legacy.zip index a832c7fb8..962e37499 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.16-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.17-compact.zip b/tests/ast-parsing/compile/minmax-0.4.17-compact.zip index 6f9020b9f..3e689a3c7 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.17-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.17-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.17-legacy.zip index c14d53319..f55e4fe92 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.17-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.18-compact.zip b/tests/ast-parsing/compile/minmax-0.4.18-compact.zip index 80db98e15..f4c6004c3 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.18-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.18-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.18-legacy.zip index 6ab982326..860520af2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.18-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.19-compact.zip b/tests/ast-parsing/compile/minmax-0.4.19-compact.zip index ff18ac7f5..de780115b 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.19-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.19-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.19-legacy.zip index d764efd9f..e5f4495d8 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.19-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.2-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.2-legacy.zip index 3000c1d68..93ff53da2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.2-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.20-compact.zip b/tests/ast-parsing/compile/minmax-0.4.20-compact.zip index 8742c03dc..5cf7c2441 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.20-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.20-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.20-legacy.zip index d8a010531..559c4b45d 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.20-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.21-compact.zip b/tests/ast-parsing/compile/minmax-0.4.21-compact.zip index b5a88dce7..424a4dbbf 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.21-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.21-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.21-legacy.zip index ee626acf4..d3cbb2002 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.21-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.22-compact.zip b/tests/ast-parsing/compile/minmax-0.4.22-compact.zip index e4eb4de91..c1b5b9cfc 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.22-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.22-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.22-legacy.zip index f45cbc327..ccc62e8e9 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.22-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.23-compact.zip b/tests/ast-parsing/compile/minmax-0.4.23-compact.zip index f45a63d0a..fded983fa 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.23-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.23-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.23-legacy.zip index 01a39b5cc..27a4c477f 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.23-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.24-compact.zip b/tests/ast-parsing/compile/minmax-0.4.24-compact.zip index e5b511055..272ba8c37 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.24-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.24-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.24-legacy.zip index 18949d421..fe18246ad 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.24-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.25-compact.zip b/tests/ast-parsing/compile/minmax-0.4.25-compact.zip index b3849254d..d0c5c62d7 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.25-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.25-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.25-legacy.zip index 2bb679432..35568bbd5 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.25-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.26-compact.zip b/tests/ast-parsing/compile/minmax-0.4.26-compact.zip index cbfeeb0ce..823125782 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.26-compact.zip and b/tests/ast-parsing/compile/minmax-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.26-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.26-legacy.zip index 487e63d95..053342ceb 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.26-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.3-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.3-legacy.zip index 61634c889..56f428b02 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.3-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.4-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.4-legacy.zip index 2350d4425..626b97f49 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.4-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.5-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.5-legacy.zip index fe94fe260..8ea9d1a82 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.5-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.6-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.6-legacy.zip index db9fc0c50..edc83d61b 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.6-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.7-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.7-legacy.zip index a0e110ac7..6d0e40eb9 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.7-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.8-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.8-legacy.zip index 3a24a40ba..5c2026288 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.8-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.4.9-legacy.zip b/tests/ast-parsing/compile/minmax-0.4.9-legacy.zip index 51f02299a..25401c654 100644 Binary files a/tests/ast-parsing/compile/minmax-0.4.9-legacy.zip and b/tests/ast-parsing/compile/minmax-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.0-compact.zip b/tests/ast-parsing/compile/minmax-0.5.0-compact.zip index 5eb5c67d4..6fae61bc5 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.0-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.0-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.0-legacy.zip index 58663af43..d712efc0e 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.0-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.1-compact.zip b/tests/ast-parsing/compile/minmax-0.5.1-compact.zip index ef396d51f..5170843e7 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.1-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.1-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.1-legacy.zip index 286b60eaa..b955cc265 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.1-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.10-compact.zip b/tests/ast-parsing/compile/minmax-0.5.10-compact.zip index 2fb2bf13b..d1a4b35e2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.10-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.10-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.10-legacy.zip index 3f1279308..08cdfe276 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.10-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.11-compact.zip b/tests/ast-parsing/compile/minmax-0.5.11-compact.zip index f76192099..191136a2c 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.11-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.11-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.11-legacy.zip index 3b6b7c785..f9ed7b326 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.11-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.12-compact.zip b/tests/ast-parsing/compile/minmax-0.5.12-compact.zip index 5c7ea584f..bf11c31d2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.12-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.12-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.12-legacy.zip index 6b6f1a5bd..c5b0dacb4 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.12-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.13-compact.zip b/tests/ast-parsing/compile/minmax-0.5.13-compact.zip index 79446efcc..894696142 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.13-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.13-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.13-legacy.zip index 68016d186..099fedeca 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.13-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.14-compact.zip b/tests/ast-parsing/compile/minmax-0.5.14-compact.zip index f01002f9e..3cf2d741d 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.14-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.14-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.14-legacy.zip index 69375ac67..384623920 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.14-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.15-compact.zip b/tests/ast-parsing/compile/minmax-0.5.15-compact.zip index 5c3cbe9c0..0bf8911ed 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.15-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.15-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.15-legacy.zip index 9bed8f5c1..44cc29fc9 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.15-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.16-compact.zip b/tests/ast-parsing/compile/minmax-0.5.16-compact.zip index 4ffb20329..ffb745eb3 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.16-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.16-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.16-legacy.zip index 696895875..6a0797bd1 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.16-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.17-compact.zip b/tests/ast-parsing/compile/minmax-0.5.17-compact.zip index 878b3288f..beaa107dd 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.17-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.17-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.17-legacy.zip index fa9cede05..6b83101b1 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.17-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.2-compact.zip b/tests/ast-parsing/compile/minmax-0.5.2-compact.zip index 76c831a80..537ec8566 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.2-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.2-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.2-legacy.zip index 01f23ccd4..6737fedb1 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.2-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.3-compact.zip b/tests/ast-parsing/compile/minmax-0.5.3-compact.zip index b12859824..7cdc2e256 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.3-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.3-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.3-legacy.zip index 67aed0a69..be4470ba0 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.3-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.4-compact.zip b/tests/ast-parsing/compile/minmax-0.5.4-compact.zip index 2d92ca43c..3e26fcc96 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.4-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.4-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.4-legacy.zip index 4a95186fe..7e78c5161 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.4-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.5-compact.zip b/tests/ast-parsing/compile/minmax-0.5.5-compact.zip index 1c3f12b04..53d5071ac 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.5-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.5-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.5-legacy.zip index 768975f49..884539dd2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.5-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.6-compact.zip b/tests/ast-parsing/compile/minmax-0.5.6-compact.zip index 90864c075..b643ddef0 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.6-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.6-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.6-legacy.zip index fb6ac0dd3..8aae789b2 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.6-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.7-compact.zip b/tests/ast-parsing/compile/minmax-0.5.7-compact.zip index e994b5640..de08226bd 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.7-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.7-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.7-legacy.zip index d7ed41dd3..33d6f70b5 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.7-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.8-compact.zip b/tests/ast-parsing/compile/minmax-0.5.8-compact.zip index 1fc0f78bf..ad3afc2cb 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.8-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.8-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.8-legacy.zip index ce7f40664..86b1ac286 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.8-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.9-compact.zip b/tests/ast-parsing/compile/minmax-0.5.9-compact.zip index b0ddab11d..714a77dce 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.9-compact.zip and b/tests/ast-parsing/compile/minmax-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.5.9-legacy.zip b/tests/ast-parsing/compile/minmax-0.5.9-legacy.zip index 31bffc9dc..0429ff82e 100644 Binary files a/tests/ast-parsing/compile/minmax-0.5.9-legacy.zip and b/tests/ast-parsing/compile/minmax-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.0-compact.zip b/tests/ast-parsing/compile/minmax-0.6.0-compact.zip index c8215c1e5..bcd907d10 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.0-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.0-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.0-legacy.zip index 5276d045b..27de8be87 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.0-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.1-compact.zip b/tests/ast-parsing/compile/minmax-0.6.1-compact.zip index 998f49aab..a6d5b8cd7 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.1-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.1-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.1-legacy.zip index 6124a3807..a925841b0 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.1-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.10-compact.zip b/tests/ast-parsing/compile/minmax-0.6.10-compact.zip index de82c8a90..c90371698 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.10-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.10-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.10-legacy.zip index f682dc02d..b05cfc080 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.10-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.11-compact.zip b/tests/ast-parsing/compile/minmax-0.6.11-compact.zip index 90824f9de..5957b3e83 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.11-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.11-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.11-legacy.zip index 7118f8498..f017389bd 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.11-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.12-compact.zip b/tests/ast-parsing/compile/minmax-0.6.12-compact.zip index c7b4c58ea..8c45b4199 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.12-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.12-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.12-legacy.zip index 99be70fe1..f908ae1e0 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.12-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.2-compact.zip b/tests/ast-parsing/compile/minmax-0.6.2-compact.zip index c3312519e..4447751e4 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.2-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.2-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.2-legacy.zip index 3ee961a17..5180b2d6e 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.2-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.3-compact.zip b/tests/ast-parsing/compile/minmax-0.6.3-compact.zip index 30e09372f..c7a3ebeb6 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.3-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.3-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.3-legacy.zip index cfddbeaf3..6abe280ed 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.3-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.4-compact.zip b/tests/ast-parsing/compile/minmax-0.6.4-compact.zip index 851df8489..3bdb67b74 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.4-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.4-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.4-legacy.zip index 0652ab86d..8d3ddb266 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.4-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.5-compact.zip b/tests/ast-parsing/compile/minmax-0.6.5-compact.zip index 741066b93..06293e5c1 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.5-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.5-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.5-legacy.zip index a0a64501a..bf61571c7 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.5-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.6-compact.zip b/tests/ast-parsing/compile/minmax-0.6.6-compact.zip index a3268ca2a..e82590088 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.6-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.6-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.6-legacy.zip index c07602112..e4b28e039 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.6-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.7-compact.zip b/tests/ast-parsing/compile/minmax-0.6.7-compact.zip index 910fdb592..239eaa0f8 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.7-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.7-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.7-legacy.zip index 7ae202c13..9849049c4 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.7-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.8-compact.zip b/tests/ast-parsing/compile/minmax-0.6.8-compact.zip index e830f322c..2a90b6929 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.8-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.8-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.8-legacy.zip index 7c52290ef..5e1b40dfe 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.8-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.9-compact.zip b/tests/ast-parsing/compile/minmax-0.6.9-compact.zip index 82122fb74..e03c4db98 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.9-compact.zip and b/tests/ast-parsing/compile/minmax-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.6.9-legacy.zip b/tests/ast-parsing/compile/minmax-0.6.9-legacy.zip index a91e587ff..fa08637e3 100644 Binary files a/tests/ast-parsing/compile/minmax-0.6.9-legacy.zip and b/tests/ast-parsing/compile/minmax-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.0-compact.zip b/tests/ast-parsing/compile/minmax-0.7.0-compact.zip index 4f3d27870..d1f844102 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.0-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.0-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.0-legacy.zip index 3355c828d..b17282e0f 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.0-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.1-compact.zip b/tests/ast-parsing/compile/minmax-0.7.1-compact.zip index 325f01a55..db5914685 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.1-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.1-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.1-legacy.zip index ec35ac4a3..cd485c3ce 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.1-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.2-compact.zip b/tests/ast-parsing/compile/minmax-0.7.2-compact.zip index 986c5acd2..739b9073f 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.2-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.2-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.2-legacy.zip index b605b6720..0e9a5f59e 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.2-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.3-compact.zip b/tests/ast-parsing/compile/minmax-0.7.3-compact.zip index 1eba6987e..39b46ff66 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.3-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.3-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.3-legacy.zip index 522bab140..1379ef62a 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.3-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.4-compact.zip b/tests/ast-parsing/compile/minmax-0.7.4-compact.zip index 9a6bf4c94..39583d3ef 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.4-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.4-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.4-legacy.zip index 6e7f1d072..6659e5eb7 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.4-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.5-compact.zip b/tests/ast-parsing/compile/minmax-0.7.5-compact.zip index 29ad9bc82..dd3c8bfd6 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.5-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.5-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.5-legacy.zip index c6ce96db7..0df9ce656 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.5-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.6-compact.zip b/tests/ast-parsing/compile/minmax-0.7.6-compact.zip index e952b8def..de2a09b69 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.6-compact.zip and b/tests/ast-parsing/compile/minmax-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.7.6-legacy.zip b/tests/ast-parsing/compile/minmax-0.7.6-legacy.zip index 5bb8caec0..72f1043e8 100644 Binary files a/tests/ast-parsing/compile/minmax-0.7.6-legacy.zip and b/tests/ast-parsing/compile/minmax-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.0-compact.zip b/tests/ast-parsing/compile/minmax-0.8.0-compact.zip index 726d25d6a..d3d7da970 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.0-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.1-compact.zip b/tests/ast-parsing/compile/minmax-0.8.1-compact.zip index 5df3d2b1a..25898de2d 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.1-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.2-compact.zip b/tests/ast-parsing/compile/minmax-0.8.2-compact.zip index 414dbe188..90ff9aa89 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.2-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.3-compact.zip b/tests/ast-parsing/compile/minmax-0.8.3-compact.zip index 1dfcda9de..c0039c98d 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.3-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.4-compact.zip b/tests/ast-parsing/compile/minmax-0.8.4-compact.zip index 1a1892cda..3ef48d598 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.4-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.5-compact.zip b/tests/ast-parsing/compile/minmax-0.8.5-compact.zip index 8884b3f0f..df3c606dd 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.5-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.6-compact.zip b/tests/ast-parsing/compile/minmax-0.8.6-compact.zip index 2159d9834..4570ecca4 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.6-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/minmax-0.8.7-compact.zip b/tests/ast-parsing/compile/minmax-0.8.7-compact.zip index 6337fb247..a877b9d4e 100644 Binary files a/tests/ast-parsing/compile/minmax-0.8.7-compact.zip and b/tests/ast-parsing/compile/minmax-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.0-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.0-legacy.zip index b617572c3..c767bab4f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.0-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.1-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.1-legacy.zip index 6fd4ab66f..6ae33a125 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.1-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.10-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.10-legacy.zip index c1715e274..da6c8f997 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.10-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.11-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.11-legacy.zip index e6f4d52b0..93d8c7568 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.11-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.12-compact.zip b/tests/ast-parsing/compile/modifier-0.4.12-compact.zip index a6d0b8a25..152c1e589 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.12-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.12-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.12-legacy.zip index 96541c4ea..8a3f4d9d7 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.12-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.13-compact.zip b/tests/ast-parsing/compile/modifier-0.4.13-compact.zip index 9694e7f4c..2d0e281c4 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.13-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.13-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.13-legacy.zip index 98031d09e..87bb8c748 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.13-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.14-compact.zip b/tests/ast-parsing/compile/modifier-0.4.14-compact.zip index 45552e9b3..a9c88645f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.14-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.14-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.14-legacy.zip index ef238f13b..1055fc550 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.14-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.15-compact.zip b/tests/ast-parsing/compile/modifier-0.4.15-compact.zip index b91849e19..e57fe1e00 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.15-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.15-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.15-legacy.zip index 17a9c8832..ace250717 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.15-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.16-compact.zip b/tests/ast-parsing/compile/modifier-0.4.16-compact.zip index 02d04b673..f9def1c80 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.16-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.16-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.16-legacy.zip index e1cf46aaa..990a88c6c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.16-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.17-compact.zip b/tests/ast-parsing/compile/modifier-0.4.17-compact.zip index 6aa55d423..6243a8d9c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.17-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.17-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.17-legacy.zip index 66b98b03f..d72b8fd2a 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.17-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.18-compact.zip b/tests/ast-parsing/compile/modifier-0.4.18-compact.zip index d08e9097f..ae13f472f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.18-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.18-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.18-legacy.zip index 855f73804..688d56fdb 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.18-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.19-compact.zip b/tests/ast-parsing/compile/modifier-0.4.19-compact.zip index 7c9a53973..feaf39720 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.19-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.19-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.19-legacy.zip index 5ab114223..2a5d16cec 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.19-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.2-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.2-legacy.zip index 22c9f2054..a9af697be 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.2-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.20-compact.zip b/tests/ast-parsing/compile/modifier-0.4.20-compact.zip index 495bd0137..4b2d6c113 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.20-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.20-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.20-legacy.zip index 69c33e7cc..72c6dcfb1 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.20-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.21-compact.zip b/tests/ast-parsing/compile/modifier-0.4.21-compact.zip index f11c59ac0..607175450 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.21-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.21-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.21-legacy.zip index 5a4f69e66..9340662fc 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.21-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.22-compact.zip b/tests/ast-parsing/compile/modifier-0.4.22-compact.zip index a4041d074..b380b65a3 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.22-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.22-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.22-legacy.zip index 7a0611027..66cd180d1 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.22-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.23-compact.zip b/tests/ast-parsing/compile/modifier-0.4.23-compact.zip index c30ba4689..08a8cd152 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.23-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.23-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.23-legacy.zip index 24fefb2a0..ba2dce297 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.23-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.24-compact.zip b/tests/ast-parsing/compile/modifier-0.4.24-compact.zip index 87284f23c..51537e41b 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.24-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.24-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.24-legacy.zip index 0a0a21ca7..0c21f9da9 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.24-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.25-compact.zip b/tests/ast-parsing/compile/modifier-0.4.25-compact.zip index 49aec4f05..331bcdd89 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.25-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.25-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.25-legacy.zip index 39107f741..5f5923eaf 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.25-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.26-compact.zip b/tests/ast-parsing/compile/modifier-0.4.26-compact.zip index 7382a4879..fad066639 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.26-compact.zip and b/tests/ast-parsing/compile/modifier-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.26-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.26-legacy.zip index 66f87fe81..8ccee863a 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.26-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.3-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.3-legacy.zip index a1c1f9e1f..1180785db 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.3-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.4-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.4-legacy.zip index 5d6619411..7414c340f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.4-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.5-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.5-legacy.zip index e422347dc..783c930f7 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.5-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.6-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.6-legacy.zip index 8f53f0292..99bd79340 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.6-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.7-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.7-legacy.zip index 0d83af21d..75e4c48c9 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.7-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.8-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.8-legacy.zip index 35213df4a..8c2f0f676 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.8-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.4.9-legacy.zip b/tests/ast-parsing/compile/modifier-0.4.9-legacy.zip index f3d2f3eb1..a06d91730 100644 Binary files a/tests/ast-parsing/compile/modifier-0.4.9-legacy.zip and b/tests/ast-parsing/compile/modifier-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.0-compact.zip b/tests/ast-parsing/compile/modifier-0.5.0-compact.zip index 451c23b15..e50854c21 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.0-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.0-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.0-legacy.zip index 183431417..f6f221d6c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.0-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.1-compact.zip b/tests/ast-parsing/compile/modifier-0.5.1-compact.zip index a4452e32c..3cfa45440 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.1-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.1-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.1-legacy.zip index 93cc29098..935762d43 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.1-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.10-compact.zip b/tests/ast-parsing/compile/modifier-0.5.10-compact.zip index cd797c227..2f7810ecb 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.10-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.10-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.10-legacy.zip index dd2f95ecf..aa6469110 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.10-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.11-compact.zip b/tests/ast-parsing/compile/modifier-0.5.11-compact.zip index 781964322..b76bafd45 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.11-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.11-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.11-legacy.zip index fd1dfa8ee..06fda6ac2 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.11-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.12-compact.zip b/tests/ast-parsing/compile/modifier-0.5.12-compact.zip index 6ee398db9..71ee103e1 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.12-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.12-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.12-legacy.zip index e11264d77..f5db47c16 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.12-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.13-compact.zip b/tests/ast-parsing/compile/modifier-0.5.13-compact.zip index 5b5215493..aa5930b7b 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.13-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.13-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.13-legacy.zip index 871898bce..30efad784 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.13-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.14-compact.zip b/tests/ast-parsing/compile/modifier-0.5.14-compact.zip index c9f455a2b..0bccd9558 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.14-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.14-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.14-legacy.zip index d69e1ca1f..e08143cc7 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.14-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.15-compact.zip b/tests/ast-parsing/compile/modifier-0.5.15-compact.zip index 48e2b96dd..9bb7cbf22 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.15-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.15-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.15-legacy.zip index 8d6c54508..3b86e12de 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.15-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.16-compact.zip b/tests/ast-parsing/compile/modifier-0.5.16-compact.zip index 8affbfc59..b6a76ad92 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.16-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.16-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.16-legacy.zip index c1411d378..9a1414bf8 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.16-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.17-compact.zip b/tests/ast-parsing/compile/modifier-0.5.17-compact.zip index 69565aa60..05bb9ba05 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.17-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.17-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.17-legacy.zip index 306a4d69c..73ee5eaf9 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.17-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.2-compact.zip b/tests/ast-parsing/compile/modifier-0.5.2-compact.zip index 83bbfa74b..59e09bc95 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.2-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.2-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.2-legacy.zip index 78ec26a46..6adbdafd0 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.2-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.3-compact.zip b/tests/ast-parsing/compile/modifier-0.5.3-compact.zip index 9ce629b0f..969bbd726 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.3-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.3-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.3-legacy.zip index 268f09a85..8501ad48e 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.3-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.4-compact.zip b/tests/ast-parsing/compile/modifier-0.5.4-compact.zip index 87b0fc84b..84675577c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.4-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.4-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.4-legacy.zip index 0f0a76691..721ec64de 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.4-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.5-compact.zip b/tests/ast-parsing/compile/modifier-0.5.5-compact.zip index dde43c01a..bab6b85e5 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.5-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.5-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.5-legacy.zip index fe01496da..0a9fda077 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.5-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.6-compact.zip b/tests/ast-parsing/compile/modifier-0.5.6-compact.zip index d6a8689a1..aa55ef77b 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.6-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.6-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.6-legacy.zip index 83f40b67d..558beae82 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.6-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.7-compact.zip b/tests/ast-parsing/compile/modifier-0.5.7-compact.zip index 362455b1b..461db5012 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.7-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.7-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.7-legacy.zip index bdea716b8..19347abff 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.7-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.8-compact.zip b/tests/ast-parsing/compile/modifier-0.5.8-compact.zip index ae2edeecf..f7d531521 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.8-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.8-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.8-legacy.zip index 5fbd2242c..b2e14ddfe 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.8-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.9-compact.zip b/tests/ast-parsing/compile/modifier-0.5.9-compact.zip index 8035b956e..15ac290da 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.9-compact.zip and b/tests/ast-parsing/compile/modifier-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.5.9-legacy.zip b/tests/ast-parsing/compile/modifier-0.5.9-legacy.zip index e03b36464..c20ef56a9 100644 Binary files a/tests/ast-parsing/compile/modifier-0.5.9-legacy.zip and b/tests/ast-parsing/compile/modifier-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.0-compact.zip b/tests/ast-parsing/compile/modifier-0.6.0-compact.zip index 776934d71..011a142a3 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.0-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.0-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.0-legacy.zip index a3e48dbae..1860fb9c1 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.0-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.1-compact.zip b/tests/ast-parsing/compile/modifier-0.6.1-compact.zip index c928487ff..00d05297a 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.1-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.1-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.1-legacy.zip index 3d3864db0..0df64dfcc 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.1-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.10-compact.zip b/tests/ast-parsing/compile/modifier-0.6.10-compact.zip index 10a59311b..75b413548 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.10-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.10-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.10-legacy.zip index 83d107a02..ca908b5c6 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.10-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.11-compact.zip b/tests/ast-parsing/compile/modifier-0.6.11-compact.zip index 26c9909f7..00eff28bf 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.11-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.11-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.11-legacy.zip index 88e31ffc7..9a5f10ec5 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.11-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.12-compact.zip b/tests/ast-parsing/compile/modifier-0.6.12-compact.zip index 4e2a056e9..459720f8f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.12-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.12-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.12-legacy.zip index e9580f424..008a5675f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.12-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.2-compact.zip b/tests/ast-parsing/compile/modifier-0.6.2-compact.zip index a275c1ed6..34351f4e1 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.2-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.2-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.2-legacy.zip index 92b6b054c..f3d633c0b 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.2-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.3-compact.zip b/tests/ast-parsing/compile/modifier-0.6.3-compact.zip index 9afed639d..87de5bc16 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.3-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.3-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.3-legacy.zip index 33548a651..6ec8f6040 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.3-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.4-compact.zip b/tests/ast-parsing/compile/modifier-0.6.4-compact.zip index b3bfeaf86..050182e1f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.4-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.4-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.4-legacy.zip index 3c28d56a8..601c39c4c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.4-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.5-compact.zip b/tests/ast-parsing/compile/modifier-0.6.5-compact.zip index 645bd6e0a..5f6abea79 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.5-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.5-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.5-legacy.zip index f91c66eb9..2067f4cd2 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.5-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.6-compact.zip b/tests/ast-parsing/compile/modifier-0.6.6-compact.zip index 8a2d4090e..a64b3ed20 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.6-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.6-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.6-legacy.zip index 6c2fc95c5..f93a1e4fb 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.6-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.7-compact.zip b/tests/ast-parsing/compile/modifier-0.6.7-compact.zip index 91743007b..52f4d828b 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.7-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.7-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.7-legacy.zip index 344e26de7..310fd78a5 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.7-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.8-compact.zip b/tests/ast-parsing/compile/modifier-0.6.8-compact.zip index afd47a298..4b401e776 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.8-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.8-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.8-legacy.zip index 5a5865b72..66bca7b1d 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.8-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.9-compact.zip b/tests/ast-parsing/compile/modifier-0.6.9-compact.zip index 9bf7caaf9..6e01bc283 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.9-compact.zip and b/tests/ast-parsing/compile/modifier-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.6.9-legacy.zip b/tests/ast-parsing/compile/modifier-0.6.9-legacy.zip index e59f7358c..1b44dec0f 100644 Binary files a/tests/ast-parsing/compile/modifier-0.6.9-legacy.zip and b/tests/ast-parsing/compile/modifier-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.0-compact.zip b/tests/ast-parsing/compile/modifier-0.7.0-compact.zip index 68f9c536c..ebd221736 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.0-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.0-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.0-legacy.zip index 772d725c8..a5745d8ab 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.0-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.1-compact.zip b/tests/ast-parsing/compile/modifier-0.7.1-compact.zip index fd0eea7da..b2ebc7a13 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.1-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.1-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.1-legacy.zip index 332620a9b..5ab16b003 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.1-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.2-compact.zip b/tests/ast-parsing/compile/modifier-0.7.2-compact.zip index be08088b0..5f046bc79 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.2-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.2-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.2-legacy.zip index 86c2629fe..809664c3c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.2-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.3-compact.zip b/tests/ast-parsing/compile/modifier-0.7.3-compact.zip index 24a57600d..2e9ba475b 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.3-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.3-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.3-legacy.zip index f700d0dd9..327bbfff9 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.3-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.4-compact.zip b/tests/ast-parsing/compile/modifier-0.7.4-compact.zip index f96ac5ad9..ec0426398 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.4-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.4-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.4-legacy.zip index bef09dc0d..55ee241c4 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.4-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.5-compact.zip b/tests/ast-parsing/compile/modifier-0.7.5-compact.zip index b6c3d7510..2d67aa0f3 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.5-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.5-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.5-legacy.zip index 41275c0b4..cab64c46c 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.5-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.6-compact.zip b/tests/ast-parsing/compile/modifier-0.7.6-compact.zip index 2eb572229..e1f30a72a 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.6-compact.zip and b/tests/ast-parsing/compile/modifier-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.7.6-legacy.zip b/tests/ast-parsing/compile/modifier-0.7.6-legacy.zip index 66285399a..60209f0f9 100644 Binary files a/tests/ast-parsing/compile/modifier-0.7.6-legacy.zip and b/tests/ast-parsing/compile/modifier-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.0-compact.zip b/tests/ast-parsing/compile/modifier-0.8.0-compact.zip index 4cfd96f8f..a615f45ea 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.0-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.1-compact.zip b/tests/ast-parsing/compile/modifier-0.8.1-compact.zip index 8009f908d..41bc06310 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.1-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.2-compact.zip b/tests/ast-parsing/compile/modifier-0.8.2-compact.zip index c39fcfa66..cc08141d5 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.2-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.3-compact.zip b/tests/ast-parsing/compile/modifier-0.8.3-compact.zip index ccc49df25..c1a893a9e 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.3-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.4-compact.zip b/tests/ast-parsing/compile/modifier-0.8.4-compact.zip index 41baa0ad4..0793a4cb4 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.4-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.5-compact.zip b/tests/ast-parsing/compile/modifier-0.8.5-compact.zip index 3cc61d46e..762af53dd 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.5-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.6-compact.zip b/tests/ast-parsing/compile/modifier-0.8.6-compact.zip index cd221dd75..6a81e7f41 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.6-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/modifier-0.8.7-compact.zip b/tests/ast-parsing/compile/modifier-0.8.7-compact.zip index 8679e6835..3eb73c197 100644 Binary files a/tests/ast-parsing/compile/modifier-0.8.7-compact.zip and b/tests/ast-parsing/compile/modifier-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.0-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.0-legacy.zip index 3ac7710e1..3afed77d2 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.0-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.1-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.1-legacy.zip index d6a30375a..9d972b1d0 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.1-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.10-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.10-legacy.zip index ddc7d49db..44c580fd2 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.10-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.11-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.11-legacy.zip index a6d4abcea..d26d920c2 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.11-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.12-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.12-compact.zip index 7a39a34f6..cf308110c 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.12-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.12-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.12-legacy.zip index 720a1aaab..6d8c92555 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.12-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.13-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.13-compact.zip index 18ef766d0..2f84c71ae 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.13-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.13-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.13-legacy.zip index be81ba207..45974024d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.13-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.14-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.14-compact.zip index 199f76f62..678d02fde 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.14-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.14-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.14-legacy.zip index ed2d2b5a6..d5e02e205 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.14-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.15-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.15-compact.zip index c98a0eb80..b1f748f04 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.15-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.15-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.15-legacy.zip index 53e72c75b..033aea3dc 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.15-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.16-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.16-compact.zip index 4ee32b193..cccbe8786 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.16-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.16-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.16-legacy.zip index b404f858f..94521cb36 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.16-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.17-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.17-compact.zip index 726d94e79..c243d2165 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.17-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.17-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.17-legacy.zip index 857257718..29f94cdc3 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.17-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.18-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.18-compact.zip index e3bc46db1..87100e6b8 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.18-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.18-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.18-legacy.zip index 4e5dedbd3..dcf9abcd5 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.18-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.19-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.19-compact.zip index 39793dd28..200acb4bc 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.19-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.19-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.19-legacy.zip index d32fcab58..d45c45554 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.19-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.2-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.2-legacy.zip index 01eabeff4..fe836dec7 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.2-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.20-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.20-compact.zip index 031f0279d..b6654a1ef 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.20-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.20-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.20-legacy.zip index af0a83dc7..0aa1dbe70 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.20-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.21-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.21-compact.zip index d9b52b183..5a1b9b94e 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.21-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.21-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.21-legacy.zip index 28bafa121..7b912be2b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.21-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.22-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.22-compact.zip index 91458a9ed..ca929fcda 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.22-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.22-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.22-legacy.zip index 4e17155d7..7e8959a9a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.22-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.23-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.23-compact.zip index 5522eb643..25b268391 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.23-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.23-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.23-legacy.zip index 58e229bb3..9e428535b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.23-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.24-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.24-compact.zip index f7e8c8555..af6ff7e3a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.24-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.24-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.24-legacy.zip index 9a0dfee86..03be013d0 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.24-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.25-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.25-compact.zip index ba898b13d..b63470bdc 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.25-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.25-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.25-legacy.zip index 3c23359f4..7c3f58c08 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.25-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.26-compact.zip b/tests/ast-parsing/compile/newexpression-0.4.26-compact.zip index 28020e92f..1f10ea90f 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.26-compact.zip and b/tests/ast-parsing/compile/newexpression-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.26-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.26-legacy.zip index 801ffb43c..8251cb034 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.26-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.3-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.3-legacy.zip index ead777db6..9bc797cfa 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.3-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.4-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.4-legacy.zip index ab40c625a..a3fade9a8 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.4-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.5-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.5-legacy.zip index bc54dbd3e..a76dc2c14 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.5-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.6-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.6-legacy.zip index e197774ba..b12544148 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.6-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.7-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.7-legacy.zip index d648c94db..34a59bcc7 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.7-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.8-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.8-legacy.zip index dccc1973f..14d9ac72b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.8-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.4.9-legacy.zip b/tests/ast-parsing/compile/newexpression-0.4.9-legacy.zip index ed9791f04..a314d68a7 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.4.9-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.0-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.0-compact.zip index 944592d01..5cdfe54d8 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.0-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.0-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.0-legacy.zip index 308e3d311..edfeb4b4d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.0-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.1-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.1-compact.zip index 10f455d66..9a56d0f3b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.1-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.1-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.1-legacy.zip index 0931e8ad5..1ec635a2d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.1-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.10-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.10-compact.zip index 1277da1df..dae6c4f07 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.10-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.10-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.10-legacy.zip index d7b0e25b4..ea763c945 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.10-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.11-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.11-compact.zip index 45603ba98..336f7c42a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.11-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.11-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.11-legacy.zip index 0ceab06d7..d6381730d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.11-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.12-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.12-compact.zip index 02a48a964..ac8c53fa5 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.12-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.12-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.12-legacy.zip index 72a1d2e0c..531fd9450 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.12-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.13-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.13-compact.zip index a37fd5829..12e1d2264 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.13-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.13-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.13-legacy.zip index 8cda0eb67..229361a7d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.13-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.14-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.14-compact.zip index 45076dbea..618d775d9 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.14-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.14-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.14-legacy.zip index 69684b8a5..a7d7fb50c 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.14-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.15-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.15-compact.zip index 2742e6e7f..eb866d635 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.15-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.15-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.15-legacy.zip index 4d240fe02..3e24172d2 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.15-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.16-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.16-compact.zip index 19bf9077e..131fcae5b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.16-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.16-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.16-legacy.zip index 52d19e126..ee788f5df 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.16-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.17-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.17-compact.zip index 2fab371a5..706ab876e 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.17-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.17-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.17-legacy.zip index 567c24b32..ff6cbd873 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.17-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.2-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.2-compact.zip index faa311e0d..90203d57a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.2-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.2-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.2-legacy.zip index 1bae337eb..ed85ca2ff 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.2-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.3-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.3-compact.zip index 1d0ce2ab9..729012b1a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.3-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.3-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.3-legacy.zip index 41113abd1..c34e3a3ca 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.3-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.4-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.4-compact.zip index ee1d9441f..4d122f8c5 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.4-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.4-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.4-legacy.zip index 860d3a042..130703d64 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.4-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.5-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.5-compact.zip index 7eb17452d..daf8aff02 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.5-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.5-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.5-legacy.zip index 09fa326b7..20fdcc2ad 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.5-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.6-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.6-compact.zip index 6ec4835dd..82015c108 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.6-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.6-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.6-legacy.zip index 35f564f9d..46a085262 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.6-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.7-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.7-compact.zip index 502918fd1..73086a888 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.7-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.7-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.7-legacy.zip index 03219ebf1..c44be2994 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.7-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.8-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.8-compact.zip index 82a928c12..3bfd14d88 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.8-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.8-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.8-legacy.zip index 2a716f475..464e68493 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.8-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.9-compact.zip b/tests/ast-parsing/compile/newexpression-0.5.9-compact.zip index ab4fe697b..56f3090dd 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.9-compact.zip and b/tests/ast-parsing/compile/newexpression-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.5.9-legacy.zip b/tests/ast-parsing/compile/newexpression-0.5.9-legacy.zip index a41a9ebbf..1e612984b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.5.9-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.0-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.0-compact.zip index ccfcb40e6..4c6e9c63e 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.0-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.0-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.0-legacy.zip index ed2354f81..037489727 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.0-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.1-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.1-compact.zip index 1ef468fac..2ac2c6b7f 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.1-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.1-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.1-legacy.zip index f0b13e72f..fe73404f0 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.1-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.10-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.10-compact.zip index 1eda14dc3..abc21ba5f 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.10-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.10-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.10-legacy.zip index 57ce1ac75..8181cad33 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.10-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.11-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.11-compact.zip index fac99f09e..ba5ad8ccf 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.11-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.11-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.11-legacy.zip index 084df9ed5..9959da59d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.11-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.12-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.12-compact.zip index 9c2f6857f..09f4cfc3b 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.12-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.12-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.12-legacy.zip index 088da194f..154751440 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.12-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.2-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.2-compact.zip index 279099266..b988c5072 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.2-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.2-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.2-legacy.zip index bf7b03458..1674383f4 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.2-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.3-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.3-compact.zip index d7c9b8a16..4f96c4304 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.3-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.3-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.3-legacy.zip index 4075e75a4..3fcac6681 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.3-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.4-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.4-compact.zip index e0609d506..532da6b2a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.4-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.4-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.4-legacy.zip index 087f2c088..1855cdc46 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.4-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.5-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.5-compact.zip index e001874bf..d339812e4 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.5-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.5-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.5-legacy.zip index a7b743aea..8eeaeb92a 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.5-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.6-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.6-compact.zip index 1d45e5450..4bcb54a37 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.6-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.6-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.6-legacy.zip index fb39e05fd..106407ff0 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.6-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.7-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.7-compact.zip index 21440a033..a18c98c75 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.7-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.7-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.7-legacy.zip index 66d820551..ba0725f9e 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.7-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.8-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.8-compact.zip index ba6a172c4..41b605f25 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.8-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.8-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.8-legacy.zip index 3ac8e5f32..b0e167796 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.8-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.9-compact.zip b/tests/ast-parsing/compile/newexpression-0.6.9-compact.zip index 1823fd35d..20135d3fb 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.9-compact.zip and b/tests/ast-parsing/compile/newexpression-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.6.9-legacy.zip b/tests/ast-parsing/compile/newexpression-0.6.9-legacy.zip index 26ac611c9..417495b81 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.6.9-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.0-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.0-compact.zip index f3907db6d..c06445356 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.0-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.0-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.0-legacy.zip index 3d6b3f4f3..71bc249c9 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.0-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.1-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.1-compact.zip index d076c3892..cdae54741 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.1-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.1-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.1-legacy.zip index ab1f573a8..4018c1cbb 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.1-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.2-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.2-compact.zip index b0b0bcdcc..e3c1aeba9 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.2-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.2-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.2-legacy.zip index 034562700..d7b28711e 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.2-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.3-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.3-compact.zip index 85dc3a249..768113299 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.3-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.3-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.3-legacy.zip index 0cdc1783f..85a9904e2 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.3-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.4-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.4-compact.zip index c1d714c65..32bf63602 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.4-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.4-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.4-legacy.zip index a32dae1d0..158ae13f3 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.4-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.5-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.5-compact.zip index b16e2c552..57f4ae67e 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.5-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.5-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.5-legacy.zip index fa2864c3e..bdadd2299 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.5-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.6-compact.zip b/tests/ast-parsing/compile/newexpression-0.7.6-compact.zip index db6382640..e7fdb3c1d 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.6-compact.zip and b/tests/ast-parsing/compile/newexpression-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.7.6-legacy.zip b/tests/ast-parsing/compile/newexpression-0.7.6-legacy.zip index e4eb37388..736d03dee 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.7.6-legacy.zip and b/tests/ast-parsing/compile/newexpression-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.0-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.0-compact.zip index 918d6f91b..13d9d7532 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.0-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.1-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.1-compact.zip index 92b9a84b0..ed2c12a14 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.1-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.2-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.2-compact.zip index 2d63729cc..662095822 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.2-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.3-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.3-compact.zip index 59339943b..d14ddaeb8 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.3-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.4-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.4-compact.zip index a0716b379..5ed3f7b42 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.4-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.5-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.5-compact.zip index 1c3121922..88eeb29c6 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.5-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.6-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.6-compact.zip index 0c27982f4..07bf753fa 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.6-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/newexpression-0.8.7-compact.zip b/tests/ast-parsing/compile/newexpression-0.8.7-compact.zip index 32307f5c3..252293ce7 100644 Binary files a/tests/ast-parsing/compile/newexpression-0.8.7-compact.zip and b/tests/ast-parsing/compile/newexpression-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.0-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.0-legacy.zip index ed5f3a077..255f6a86c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.0-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.1-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.1-legacy.zip index 0405e8024..5681f8398 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.1-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.10-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.10-legacy.zip index 109061ccd..af67376d4 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.10-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.11-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.11-legacy.zip index a8972717e..559667ecd 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.11-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.12-compact.zip b/tests/ast-parsing/compile/pragma-0.4.12-compact.zip index d433fcdad..cea8699ec 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.12-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.12-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.12-legacy.zip index 05e8db21c..e44450ab9 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.12-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.13-compact.zip b/tests/ast-parsing/compile/pragma-0.4.13-compact.zip index b6fa94d64..8b20a9f0b 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.13-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.13-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.13-legacy.zip index 502ba27f1..4f48361b9 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.13-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.14-compact.zip b/tests/ast-parsing/compile/pragma-0.4.14-compact.zip index 8eeeed348..e04e37586 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.14-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.14-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.14-legacy.zip index cb342e7eb..757eadb98 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.14-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.15-compact.zip b/tests/ast-parsing/compile/pragma-0.4.15-compact.zip index 31064684f..3cccd9d1f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.15-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.15-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.15-legacy.zip index 9485865ac..464d38e5c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.15-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.16-compact.zip b/tests/ast-parsing/compile/pragma-0.4.16-compact.zip index 95fd18897..257f214d8 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.16-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.16-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.16-legacy.zip index e7e4a0b15..75a77f35d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.16-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.17-compact.zip b/tests/ast-parsing/compile/pragma-0.4.17-compact.zip index 832db99a0..b5200c910 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.17-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.17-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.17-legacy.zip index 514b392da..8dba548f0 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.17-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.18-compact.zip b/tests/ast-parsing/compile/pragma-0.4.18-compact.zip index 13e54eb4a..01f6d8a1d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.18-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.18-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.18-legacy.zip index e555ed047..7bc424b5e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.18-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.19-compact.zip b/tests/ast-parsing/compile/pragma-0.4.19-compact.zip index 5c5f40c6a..b85e4506d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.19-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.19-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.19-legacy.zip index 5182dae40..8b7c6aed0 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.19-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.2-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.2-legacy.zip index 774e9446e..d325b698a 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.2-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.20-compact.zip b/tests/ast-parsing/compile/pragma-0.4.20-compact.zip index 5a1a65c79..fa77ebdc3 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.20-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.20-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.20-legacy.zip index a96060f93..731b2df0f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.20-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.21-compact.zip b/tests/ast-parsing/compile/pragma-0.4.21-compact.zip index daef72cb0..872d250d8 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.21-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.21-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.21-legacy.zip index 542b0c749..0e12742fe 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.21-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.22-compact.zip b/tests/ast-parsing/compile/pragma-0.4.22-compact.zip index 6918dc16b..d672aae19 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.22-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.22-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.22-legacy.zip index b0a99e4ad..52f6ea25d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.22-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.23-compact.zip b/tests/ast-parsing/compile/pragma-0.4.23-compact.zip index ef8330aea..ba796f2e9 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.23-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.23-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.23-legacy.zip index 376388c19..f8beae55f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.23-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.24-compact.zip b/tests/ast-parsing/compile/pragma-0.4.24-compact.zip index 4aca4d4bf..c3c92c730 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.24-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.24-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.24-legacy.zip index aad7dcc3c..dbb8253b0 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.24-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.25-compact.zip b/tests/ast-parsing/compile/pragma-0.4.25-compact.zip index 6ebe5f7dc..1c413172c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.25-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.25-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.25-legacy.zip index 87b3939d2..ce7d16f2d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.25-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.26-compact.zip b/tests/ast-parsing/compile/pragma-0.4.26-compact.zip index 9363fb8ab..f418555ba 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.26-compact.zip and b/tests/ast-parsing/compile/pragma-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.26-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.26-legacy.zip index 2a9ca3e20..ec9b08a7c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.26-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.3-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.3-legacy.zip index d1e2067e0..6715b0f70 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.3-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.4-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.4-legacy.zip index 755170506..29cabd6b4 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.4-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.5-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.5-legacy.zip index df277ac1d..f6b567843 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.5-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.6-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.6-legacy.zip index a1dd8c830..a769323d1 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.6-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.7-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.7-legacy.zip index 77df7e1f2..7bd4e7ce7 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.7-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.8-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.8-legacy.zip index 3cf34d174..7456260d0 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.8-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.4.9-legacy.zip b/tests/ast-parsing/compile/pragma-0.4.9-legacy.zip index aa4dcc0d7..3d66f9c0d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.4.9-legacy.zip and b/tests/ast-parsing/compile/pragma-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.0-compact.zip b/tests/ast-parsing/compile/pragma-0.5.0-compact.zip index 5ff67cfca..d08ca0e40 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.0-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.0-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.0-legacy.zip index 10a90335b..f89810be2 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.0-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.1-compact.zip b/tests/ast-parsing/compile/pragma-0.5.1-compact.zip index 8f1b09b27..6098e0a35 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.1-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.1-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.1-legacy.zip index e16edb439..0a23f79cb 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.1-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.10-compact.zip b/tests/ast-parsing/compile/pragma-0.5.10-compact.zip index ece01354e..01647d4b4 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.10-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.10-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.10-legacy.zip index 75b3dea05..a480dd6ab 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.10-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.11-compact.zip b/tests/ast-parsing/compile/pragma-0.5.11-compact.zip index 15fcde833..2d78fab74 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.11-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.11-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.11-legacy.zip index e9050a6d1..41f4d7a23 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.11-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.12-compact.zip b/tests/ast-parsing/compile/pragma-0.5.12-compact.zip index 0e445e94d..8a5a7f1b7 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.12-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.12-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.12-legacy.zip index 100acf03a..2ddc4d1d4 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.12-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.13-compact.zip b/tests/ast-parsing/compile/pragma-0.5.13-compact.zip index 8e4d140e8..348342ccb 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.13-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.13-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.13-legacy.zip index 5ebb2a50a..74defcf9d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.13-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.14-compact.zip b/tests/ast-parsing/compile/pragma-0.5.14-compact.zip index c614a5ed7..00216a614 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.14-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.14-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.14-legacy.zip index 996b85eda..676e0161d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.14-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.15-compact.zip b/tests/ast-parsing/compile/pragma-0.5.15-compact.zip index d5b7499e4..344f0cfed 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.15-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.15-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.15-legacy.zip index 03de486f4..b52008653 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.15-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.16-compact.zip b/tests/ast-parsing/compile/pragma-0.5.16-compact.zip index 7b377d9de..67bb34a49 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.16-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.16-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.16-legacy.zip index ab173e8a8..88f33e31f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.16-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.17-compact.zip b/tests/ast-parsing/compile/pragma-0.5.17-compact.zip index 1a1101108..1039b1fbb 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.17-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.17-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.17-legacy.zip index 415cbb751..9f5139e6d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.17-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.2-compact.zip b/tests/ast-parsing/compile/pragma-0.5.2-compact.zip index 320b6b4cc..38e4cf081 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.2-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.2-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.2-legacy.zip index 2f5ec55f0..b0f3d066c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.2-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.3-compact.zip b/tests/ast-parsing/compile/pragma-0.5.3-compact.zip index 586bfdc2c..0bc381b3c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.3-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.3-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.3-legacy.zip index a2d4b7aa5..a781c46c5 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.3-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.4-compact.zip b/tests/ast-parsing/compile/pragma-0.5.4-compact.zip index 9c2488000..57861d7e3 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.4-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.4-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.4-legacy.zip index 3ab052dfe..20b73412b 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.4-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.5-compact.zip b/tests/ast-parsing/compile/pragma-0.5.5-compact.zip index c98406467..95eb7f409 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.5-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.5-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.5-legacy.zip index 44c1c3894..67f37499c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.5-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.6-compact.zip b/tests/ast-parsing/compile/pragma-0.5.6-compact.zip index 1d35494da..e1e3a4d4a 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.6-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.6-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.6-legacy.zip index 255a6b610..3b85abbb1 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.6-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.7-compact.zip b/tests/ast-parsing/compile/pragma-0.5.7-compact.zip index d8cafede4..567025eea 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.7-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.7-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.7-legacy.zip index 3a4fe3694..6e5edb64f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.7-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.8-compact.zip b/tests/ast-parsing/compile/pragma-0.5.8-compact.zip index 5c4650406..780a58dc1 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.8-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.8-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.8-legacy.zip index 9798eb356..b453f6d0e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.8-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.9-compact.zip b/tests/ast-parsing/compile/pragma-0.5.9-compact.zip index 86ee8f407..760c96827 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.9-compact.zip and b/tests/ast-parsing/compile/pragma-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.5.9-legacy.zip b/tests/ast-parsing/compile/pragma-0.5.9-legacy.zip index 2da4b5886..77ddfee86 100644 Binary files a/tests/ast-parsing/compile/pragma-0.5.9-legacy.zip and b/tests/ast-parsing/compile/pragma-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.0-compact.zip b/tests/ast-parsing/compile/pragma-0.6.0-compact.zip index 261942789..98e275d32 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.0-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.0-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.0-legacy.zip index 0a14db090..97ce66e05 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.0-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.1-compact.zip b/tests/ast-parsing/compile/pragma-0.6.1-compact.zip index 16240568f..83e1d1670 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.1-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.1-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.1-legacy.zip index 0200cefe5..2ce26a9e4 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.1-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.10-compact.zip b/tests/ast-parsing/compile/pragma-0.6.10-compact.zip index d2fc2ed6a..ebaf95ab0 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.10-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.10-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.10-legacy.zip index 6f3ace4da..9e791fcd0 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.10-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.11-compact.zip b/tests/ast-parsing/compile/pragma-0.6.11-compact.zip index e389d5f72..7cb9c3219 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.11-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.11-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.11-legacy.zip index f5eac16c4..68f44fda7 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.11-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.12-compact.zip b/tests/ast-parsing/compile/pragma-0.6.12-compact.zip index 9928fed9f..1df70bb6f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.12-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.12-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.12-legacy.zip index 4ec5b9bf0..5c3cbf6e2 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.12-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.2-compact.zip b/tests/ast-parsing/compile/pragma-0.6.2-compact.zip index 9206ba187..89034847e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.2-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.2-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.2-legacy.zip index f7fb89d84..fb245ea3e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.2-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.3-compact.zip b/tests/ast-parsing/compile/pragma-0.6.3-compact.zip index 347b68f83..1e25a3ffd 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.3-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.3-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.3-legacy.zip index 932f28aba..2a773d34e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.3-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.4-compact.zip b/tests/ast-parsing/compile/pragma-0.6.4-compact.zip index b4e2b36d0..11f572e6e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.4-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.4-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.4-legacy.zip index bafb9fbff..b61758598 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.4-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.5-compact.zip b/tests/ast-parsing/compile/pragma-0.6.5-compact.zip index 82eedafb9..eea997988 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.5-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.5-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.5-legacy.zip index 41a0a3fc9..61ace1d20 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.5-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.6-compact.zip b/tests/ast-parsing/compile/pragma-0.6.6-compact.zip index d5099f525..4c6b2b098 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.6-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.6-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.6-legacy.zip index c353b40f3..fc47833ad 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.6-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.7-compact.zip b/tests/ast-parsing/compile/pragma-0.6.7-compact.zip index 6b17f4979..a6d4818bc 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.7-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.7-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.7-legacy.zip index bab8ffacb..c72104c3b 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.7-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.8-compact.zip b/tests/ast-parsing/compile/pragma-0.6.8-compact.zip index 5a7c4006f..69d4067c1 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.8-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.8-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.8-legacy.zip index 50e902179..7756d2007 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.8-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.9-compact.zip b/tests/ast-parsing/compile/pragma-0.6.9-compact.zip index 9df6c3b79..8430ae2c9 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.9-compact.zip and b/tests/ast-parsing/compile/pragma-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.6.9-legacy.zip b/tests/ast-parsing/compile/pragma-0.6.9-legacy.zip index 6a38f8d18..5cea63f73 100644 Binary files a/tests/ast-parsing/compile/pragma-0.6.9-legacy.zip and b/tests/ast-parsing/compile/pragma-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.0-compact.zip b/tests/ast-parsing/compile/pragma-0.7.0-compact.zip index b43f3656d..dce824e4a 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.0-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.0-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.0-legacy.zip index 68021d0c1..756b440b8 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.0-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.1-compact.zip b/tests/ast-parsing/compile/pragma-0.7.1-compact.zip index 7a7dbecf8..5a14ed0f7 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.1-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.1-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.1-legacy.zip index 283374d11..1f65a87c6 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.1-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.2-compact.zip b/tests/ast-parsing/compile/pragma-0.7.2-compact.zip index 5dbb28037..a60dc2a40 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.2-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.2-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.2-legacy.zip index 49eb631bf..ae4a10673 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.2-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.3-compact.zip b/tests/ast-parsing/compile/pragma-0.7.3-compact.zip index 50955af3b..482bbff07 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.3-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.3-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.3-legacy.zip index 03556f6b4..b29fb510b 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.3-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.4-compact.zip b/tests/ast-parsing/compile/pragma-0.7.4-compact.zip index bb6487d8b..d4d48ea0b 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.4-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.4-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.4-legacy.zip index d5a960226..4d701c64b 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.4-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.5-compact.zip b/tests/ast-parsing/compile/pragma-0.7.5-compact.zip index 64a827e6b..645d45994 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.5-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.5-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.5-legacy.zip index de1f3cd41..fdd368951 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.5-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.6-compact.zip b/tests/ast-parsing/compile/pragma-0.7.6-compact.zip index 21831b908..0d09f1d80 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.6-compact.zip and b/tests/ast-parsing/compile/pragma-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.7.6-legacy.zip b/tests/ast-parsing/compile/pragma-0.7.6-legacy.zip index 68d8a564b..b37950b2e 100644 Binary files a/tests/ast-parsing/compile/pragma-0.7.6-legacy.zip and b/tests/ast-parsing/compile/pragma-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.0-compact.zip b/tests/ast-parsing/compile/pragma-0.8.0-compact.zip index 5e40435c0..5e89c8875 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.0-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.1-compact.zip b/tests/ast-parsing/compile/pragma-0.8.1-compact.zip index a413f80cf..57d716c04 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.1-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.2-compact.zip b/tests/ast-parsing/compile/pragma-0.8.2-compact.zip index 0fadf1558..736a6ef3f 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.2-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.3-compact.zip b/tests/ast-parsing/compile/pragma-0.8.3-compact.zip index a03f0e1c1..d3c38678c 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.3-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.4-compact.zip b/tests/ast-parsing/compile/pragma-0.8.4-compact.zip index 6737886c6..a20459223 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.4-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.5-compact.zip b/tests/ast-parsing/compile/pragma-0.8.5-compact.zip index 9bdd42d3d..8fda48a4a 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.5-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.6-compact.zip b/tests/ast-parsing/compile/pragma-0.8.6-compact.zip index df359894a..aa0c261cb 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.6-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/pragma-0.8.7-compact.zip b/tests/ast-parsing/compile/pragma-0.8.7-compact.zip index 2e315e855..356c70a5d 100644 Binary files a/tests/ast-parsing/compile/pragma-0.8.7-compact.zip and b/tests/ast-parsing/compile/pragma-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.0-legacy.zip b/tests/ast-parsing/compile/push-0.4.0-legacy.zip index 95755517f..62f0d9a7b 100644 Binary files a/tests/ast-parsing/compile/push-0.4.0-legacy.zip and b/tests/ast-parsing/compile/push-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.1-legacy.zip b/tests/ast-parsing/compile/push-0.4.1-legacy.zip index f272f9937..5f48a8a8f 100644 Binary files a/tests/ast-parsing/compile/push-0.4.1-legacy.zip and b/tests/ast-parsing/compile/push-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.10-legacy.zip b/tests/ast-parsing/compile/push-0.4.10-legacy.zip index 3e8cc07e4..b9b8b85a2 100644 Binary files a/tests/ast-parsing/compile/push-0.4.10-legacy.zip and b/tests/ast-parsing/compile/push-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.11-legacy.zip b/tests/ast-parsing/compile/push-0.4.11-legacy.zip index dab33d764..c6682e721 100644 Binary files a/tests/ast-parsing/compile/push-0.4.11-legacy.zip and b/tests/ast-parsing/compile/push-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.12-compact.zip b/tests/ast-parsing/compile/push-0.4.12-compact.zip index f4609f55b..ad65b158b 100644 Binary files a/tests/ast-parsing/compile/push-0.4.12-compact.zip and b/tests/ast-parsing/compile/push-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.12-legacy.zip b/tests/ast-parsing/compile/push-0.4.12-legacy.zip index d76d518c5..8b84367fa 100644 Binary files a/tests/ast-parsing/compile/push-0.4.12-legacy.zip and b/tests/ast-parsing/compile/push-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.13-compact.zip b/tests/ast-parsing/compile/push-0.4.13-compact.zip index 919a71285..d90ede6fa 100644 Binary files a/tests/ast-parsing/compile/push-0.4.13-compact.zip and b/tests/ast-parsing/compile/push-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.13-legacy.zip b/tests/ast-parsing/compile/push-0.4.13-legacy.zip index 393afb0bf..25077a865 100644 Binary files a/tests/ast-parsing/compile/push-0.4.13-legacy.zip and b/tests/ast-parsing/compile/push-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.14-compact.zip b/tests/ast-parsing/compile/push-0.4.14-compact.zip index 0e0848ce7..5f74dd834 100644 Binary files a/tests/ast-parsing/compile/push-0.4.14-compact.zip and b/tests/ast-parsing/compile/push-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.14-legacy.zip b/tests/ast-parsing/compile/push-0.4.14-legacy.zip index 309be7849..92dfea5b6 100644 Binary files a/tests/ast-parsing/compile/push-0.4.14-legacy.zip and b/tests/ast-parsing/compile/push-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.15-compact.zip b/tests/ast-parsing/compile/push-0.4.15-compact.zip index fb586e500..83fabf0d4 100644 Binary files a/tests/ast-parsing/compile/push-0.4.15-compact.zip and b/tests/ast-parsing/compile/push-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.15-legacy.zip b/tests/ast-parsing/compile/push-0.4.15-legacy.zip index 88eb7866a..850464396 100644 Binary files a/tests/ast-parsing/compile/push-0.4.15-legacy.zip and b/tests/ast-parsing/compile/push-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.16-compact.zip b/tests/ast-parsing/compile/push-0.4.16-compact.zip index 79c3948cb..867cb9856 100644 Binary files a/tests/ast-parsing/compile/push-0.4.16-compact.zip and b/tests/ast-parsing/compile/push-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.16-legacy.zip b/tests/ast-parsing/compile/push-0.4.16-legacy.zip index 4c9cc59e7..d06f0b8ec 100644 Binary files a/tests/ast-parsing/compile/push-0.4.16-legacy.zip and b/tests/ast-parsing/compile/push-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.17-compact.zip b/tests/ast-parsing/compile/push-0.4.17-compact.zip index ba58e50e6..149dc507f 100644 Binary files a/tests/ast-parsing/compile/push-0.4.17-compact.zip and b/tests/ast-parsing/compile/push-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.17-legacy.zip b/tests/ast-parsing/compile/push-0.4.17-legacy.zip index 59e0a9341..071ac486d 100644 Binary files a/tests/ast-parsing/compile/push-0.4.17-legacy.zip and b/tests/ast-parsing/compile/push-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.18-compact.zip b/tests/ast-parsing/compile/push-0.4.18-compact.zip index a0f3a8277..e79749eed 100644 Binary files a/tests/ast-parsing/compile/push-0.4.18-compact.zip and b/tests/ast-parsing/compile/push-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.18-legacy.zip b/tests/ast-parsing/compile/push-0.4.18-legacy.zip index 78a6ebaa6..62b943bd9 100644 Binary files a/tests/ast-parsing/compile/push-0.4.18-legacy.zip and b/tests/ast-parsing/compile/push-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.19-compact.zip b/tests/ast-parsing/compile/push-0.4.19-compact.zip index ca9865e65..193ed8ed0 100644 Binary files a/tests/ast-parsing/compile/push-0.4.19-compact.zip and b/tests/ast-parsing/compile/push-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.19-legacy.zip b/tests/ast-parsing/compile/push-0.4.19-legacy.zip index 6b305f1ac..2489afd64 100644 Binary files a/tests/ast-parsing/compile/push-0.4.19-legacy.zip and b/tests/ast-parsing/compile/push-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.2-legacy.zip b/tests/ast-parsing/compile/push-0.4.2-legacy.zip index 85833ec95..b1b7dd4a1 100644 Binary files a/tests/ast-parsing/compile/push-0.4.2-legacy.zip and b/tests/ast-parsing/compile/push-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.20-compact.zip b/tests/ast-parsing/compile/push-0.4.20-compact.zip index c929f9331..41bdf0035 100644 Binary files a/tests/ast-parsing/compile/push-0.4.20-compact.zip and b/tests/ast-parsing/compile/push-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.20-legacy.zip b/tests/ast-parsing/compile/push-0.4.20-legacy.zip index 31d522fea..02a212fe0 100644 Binary files a/tests/ast-parsing/compile/push-0.4.20-legacy.zip and b/tests/ast-parsing/compile/push-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.21-compact.zip b/tests/ast-parsing/compile/push-0.4.21-compact.zip index a06fc5ec1..39198fc6f 100644 Binary files a/tests/ast-parsing/compile/push-0.4.21-compact.zip and b/tests/ast-parsing/compile/push-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.21-legacy.zip b/tests/ast-parsing/compile/push-0.4.21-legacy.zip index 22d9189ca..55fe97cf6 100644 Binary files a/tests/ast-parsing/compile/push-0.4.21-legacy.zip and b/tests/ast-parsing/compile/push-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.22-compact.zip b/tests/ast-parsing/compile/push-0.4.22-compact.zip index 2af63b90c..7e273b610 100644 Binary files a/tests/ast-parsing/compile/push-0.4.22-compact.zip and b/tests/ast-parsing/compile/push-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.22-legacy.zip b/tests/ast-parsing/compile/push-0.4.22-legacy.zip index 22fd1e21b..825eb4300 100644 Binary files a/tests/ast-parsing/compile/push-0.4.22-legacy.zip and b/tests/ast-parsing/compile/push-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.23-compact.zip b/tests/ast-parsing/compile/push-0.4.23-compact.zip index 1d4192d53..8e5b7fa14 100644 Binary files a/tests/ast-parsing/compile/push-0.4.23-compact.zip and b/tests/ast-parsing/compile/push-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.23-legacy.zip b/tests/ast-parsing/compile/push-0.4.23-legacy.zip index 0f97d5b88..ca6601328 100644 Binary files a/tests/ast-parsing/compile/push-0.4.23-legacy.zip and b/tests/ast-parsing/compile/push-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.24-compact.zip b/tests/ast-parsing/compile/push-0.4.24-compact.zip index cafeb579a..9fee45517 100644 Binary files a/tests/ast-parsing/compile/push-0.4.24-compact.zip and b/tests/ast-parsing/compile/push-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.24-legacy.zip b/tests/ast-parsing/compile/push-0.4.24-legacy.zip index 43b2e992d..bde724a27 100644 Binary files a/tests/ast-parsing/compile/push-0.4.24-legacy.zip and b/tests/ast-parsing/compile/push-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.25-compact.zip b/tests/ast-parsing/compile/push-0.4.25-compact.zip index 13b5ffb2a..7551c3c87 100644 Binary files a/tests/ast-parsing/compile/push-0.4.25-compact.zip and b/tests/ast-parsing/compile/push-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.25-legacy.zip b/tests/ast-parsing/compile/push-0.4.25-legacy.zip index 5821ff892..7e59db4f0 100644 Binary files a/tests/ast-parsing/compile/push-0.4.25-legacy.zip and b/tests/ast-parsing/compile/push-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.26-compact.zip b/tests/ast-parsing/compile/push-0.4.26-compact.zip index 60dc6c5ff..3b8cec7d9 100644 Binary files a/tests/ast-parsing/compile/push-0.4.26-compact.zip and b/tests/ast-parsing/compile/push-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.26-legacy.zip b/tests/ast-parsing/compile/push-0.4.26-legacy.zip index 6b3d0b26c..6897e1f92 100644 Binary files a/tests/ast-parsing/compile/push-0.4.26-legacy.zip and b/tests/ast-parsing/compile/push-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.3-legacy.zip b/tests/ast-parsing/compile/push-0.4.3-legacy.zip index 6d8f9077e..befa1fc9a 100644 Binary files a/tests/ast-parsing/compile/push-0.4.3-legacy.zip and b/tests/ast-parsing/compile/push-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.4-legacy.zip b/tests/ast-parsing/compile/push-0.4.4-legacy.zip index a1c3625d1..dd850c4fc 100644 Binary files a/tests/ast-parsing/compile/push-0.4.4-legacy.zip and b/tests/ast-parsing/compile/push-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.5-legacy.zip b/tests/ast-parsing/compile/push-0.4.5-legacy.zip index 2808ec218..a05f1e166 100644 Binary files a/tests/ast-parsing/compile/push-0.4.5-legacy.zip and b/tests/ast-parsing/compile/push-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.6-legacy.zip b/tests/ast-parsing/compile/push-0.4.6-legacy.zip index 14d24268b..eaec10a6e 100644 Binary files a/tests/ast-parsing/compile/push-0.4.6-legacy.zip and b/tests/ast-parsing/compile/push-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.7-legacy.zip b/tests/ast-parsing/compile/push-0.4.7-legacy.zip index ad6857177..92ff35294 100644 Binary files a/tests/ast-parsing/compile/push-0.4.7-legacy.zip and b/tests/ast-parsing/compile/push-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.8-legacy.zip b/tests/ast-parsing/compile/push-0.4.8-legacy.zip index a5cea597f..59876db5f 100644 Binary files a/tests/ast-parsing/compile/push-0.4.8-legacy.zip and b/tests/ast-parsing/compile/push-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.4.9-legacy.zip b/tests/ast-parsing/compile/push-0.4.9-legacy.zip index afe850bec..e0d1badcc 100644 Binary files a/tests/ast-parsing/compile/push-0.4.9-legacy.zip and b/tests/ast-parsing/compile/push-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.0-compact.zip b/tests/ast-parsing/compile/push-0.5.0-compact.zip index ac9b09b7d..3d65efa2f 100644 Binary files a/tests/ast-parsing/compile/push-0.5.0-compact.zip and b/tests/ast-parsing/compile/push-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.0-legacy.zip b/tests/ast-parsing/compile/push-0.5.0-legacy.zip index ec2c9a6ad..d9a84b26e 100644 Binary files a/tests/ast-parsing/compile/push-0.5.0-legacy.zip and b/tests/ast-parsing/compile/push-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.1-compact.zip b/tests/ast-parsing/compile/push-0.5.1-compact.zip index 8447cef12..33fc4033c 100644 Binary files a/tests/ast-parsing/compile/push-0.5.1-compact.zip and b/tests/ast-parsing/compile/push-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.1-legacy.zip b/tests/ast-parsing/compile/push-0.5.1-legacy.zip index 937831569..fe0525b45 100644 Binary files a/tests/ast-parsing/compile/push-0.5.1-legacy.zip and b/tests/ast-parsing/compile/push-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.10-compact.zip b/tests/ast-parsing/compile/push-0.5.10-compact.zip index 8b6c9b203..0f72f2c71 100644 Binary files a/tests/ast-parsing/compile/push-0.5.10-compact.zip and b/tests/ast-parsing/compile/push-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.10-legacy.zip b/tests/ast-parsing/compile/push-0.5.10-legacy.zip index c6aa548c7..c0831f72f 100644 Binary files a/tests/ast-parsing/compile/push-0.5.10-legacy.zip and b/tests/ast-parsing/compile/push-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.11-compact.zip b/tests/ast-parsing/compile/push-0.5.11-compact.zip index 16edef22a..7b9ec53ef 100644 Binary files a/tests/ast-parsing/compile/push-0.5.11-compact.zip and b/tests/ast-parsing/compile/push-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.11-legacy.zip b/tests/ast-parsing/compile/push-0.5.11-legacy.zip index 3c66cad09..eca6329a2 100644 Binary files a/tests/ast-parsing/compile/push-0.5.11-legacy.zip and b/tests/ast-parsing/compile/push-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.12-compact.zip b/tests/ast-parsing/compile/push-0.5.12-compact.zip index 2a522f8bf..f071412d3 100644 Binary files a/tests/ast-parsing/compile/push-0.5.12-compact.zip and b/tests/ast-parsing/compile/push-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.12-legacy.zip b/tests/ast-parsing/compile/push-0.5.12-legacy.zip index bab23ccb9..68969d471 100644 Binary files a/tests/ast-parsing/compile/push-0.5.12-legacy.zip and b/tests/ast-parsing/compile/push-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.13-compact.zip b/tests/ast-parsing/compile/push-0.5.13-compact.zip index 5a399613d..73c5ba74b 100644 Binary files a/tests/ast-parsing/compile/push-0.5.13-compact.zip and b/tests/ast-parsing/compile/push-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.13-legacy.zip b/tests/ast-parsing/compile/push-0.5.13-legacy.zip index f9d12135d..0525619db 100644 Binary files a/tests/ast-parsing/compile/push-0.5.13-legacy.zip and b/tests/ast-parsing/compile/push-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.14-compact.zip b/tests/ast-parsing/compile/push-0.5.14-compact.zip index a55836016..8fed7cd31 100644 Binary files a/tests/ast-parsing/compile/push-0.5.14-compact.zip and b/tests/ast-parsing/compile/push-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.14-legacy.zip b/tests/ast-parsing/compile/push-0.5.14-legacy.zip index d4494cb73..c3379b813 100644 Binary files a/tests/ast-parsing/compile/push-0.5.14-legacy.zip and b/tests/ast-parsing/compile/push-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.15-compact.zip b/tests/ast-parsing/compile/push-0.5.15-compact.zip index 05dc662df..56158684f 100644 Binary files a/tests/ast-parsing/compile/push-0.5.15-compact.zip and b/tests/ast-parsing/compile/push-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.15-legacy.zip b/tests/ast-parsing/compile/push-0.5.15-legacy.zip index e15a04bd7..7e9e70731 100644 Binary files a/tests/ast-parsing/compile/push-0.5.15-legacy.zip and b/tests/ast-parsing/compile/push-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.16-compact.zip b/tests/ast-parsing/compile/push-0.5.16-compact.zip index 069cceddb..654a9e830 100644 Binary files a/tests/ast-parsing/compile/push-0.5.16-compact.zip and b/tests/ast-parsing/compile/push-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.16-legacy.zip b/tests/ast-parsing/compile/push-0.5.16-legacy.zip index b6e71decb..470694a0a 100644 Binary files a/tests/ast-parsing/compile/push-0.5.16-legacy.zip and b/tests/ast-parsing/compile/push-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.17-compact.zip b/tests/ast-parsing/compile/push-0.5.17-compact.zip index b0e186aad..3190d7e10 100644 Binary files a/tests/ast-parsing/compile/push-0.5.17-compact.zip and b/tests/ast-parsing/compile/push-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.17-legacy.zip b/tests/ast-parsing/compile/push-0.5.17-legacy.zip index cb3f80af0..cce25b708 100644 Binary files a/tests/ast-parsing/compile/push-0.5.17-legacy.zip and b/tests/ast-parsing/compile/push-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.2-compact.zip b/tests/ast-parsing/compile/push-0.5.2-compact.zip index 643517105..c0a46a76d 100644 Binary files a/tests/ast-parsing/compile/push-0.5.2-compact.zip and b/tests/ast-parsing/compile/push-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.2-legacy.zip b/tests/ast-parsing/compile/push-0.5.2-legacy.zip index df5611818..e84cb75a3 100644 Binary files a/tests/ast-parsing/compile/push-0.5.2-legacy.zip and b/tests/ast-parsing/compile/push-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.3-compact.zip b/tests/ast-parsing/compile/push-0.5.3-compact.zip index b0416f6dc..9623d76f3 100644 Binary files a/tests/ast-parsing/compile/push-0.5.3-compact.zip and b/tests/ast-parsing/compile/push-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.3-legacy.zip b/tests/ast-parsing/compile/push-0.5.3-legacy.zip index aac4692cc..cc8f92ae5 100644 Binary files a/tests/ast-parsing/compile/push-0.5.3-legacy.zip and b/tests/ast-parsing/compile/push-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.4-compact.zip b/tests/ast-parsing/compile/push-0.5.4-compact.zip index 89ecece32..589d649bb 100644 Binary files a/tests/ast-parsing/compile/push-0.5.4-compact.zip and b/tests/ast-parsing/compile/push-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.4-legacy.zip b/tests/ast-parsing/compile/push-0.5.4-legacy.zip index 785fbfd55..5a047f779 100644 Binary files a/tests/ast-parsing/compile/push-0.5.4-legacy.zip and b/tests/ast-parsing/compile/push-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.5-compact.zip b/tests/ast-parsing/compile/push-0.5.5-compact.zip index c255d7cae..0df4d66a2 100644 Binary files a/tests/ast-parsing/compile/push-0.5.5-compact.zip and b/tests/ast-parsing/compile/push-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.5-legacy.zip b/tests/ast-parsing/compile/push-0.5.5-legacy.zip index fb024752a..83ef447fe 100644 Binary files a/tests/ast-parsing/compile/push-0.5.5-legacy.zip and b/tests/ast-parsing/compile/push-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.6-compact.zip b/tests/ast-parsing/compile/push-0.5.6-compact.zip index ac9db7af9..e1d494505 100644 Binary files a/tests/ast-parsing/compile/push-0.5.6-compact.zip and b/tests/ast-parsing/compile/push-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.6-legacy.zip b/tests/ast-parsing/compile/push-0.5.6-legacy.zip index 5c6d891b8..d0e40055e 100644 Binary files a/tests/ast-parsing/compile/push-0.5.6-legacy.zip and b/tests/ast-parsing/compile/push-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.7-compact.zip b/tests/ast-parsing/compile/push-0.5.7-compact.zip index 84e225adc..09f01208b 100644 Binary files a/tests/ast-parsing/compile/push-0.5.7-compact.zip and b/tests/ast-parsing/compile/push-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.7-legacy.zip b/tests/ast-parsing/compile/push-0.5.7-legacy.zip index c492bc9d0..4c384a2c9 100644 Binary files a/tests/ast-parsing/compile/push-0.5.7-legacy.zip and b/tests/ast-parsing/compile/push-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.8-compact.zip b/tests/ast-parsing/compile/push-0.5.8-compact.zip index cc5f563cf..2aa24ec9d 100644 Binary files a/tests/ast-parsing/compile/push-0.5.8-compact.zip and b/tests/ast-parsing/compile/push-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.8-legacy.zip b/tests/ast-parsing/compile/push-0.5.8-legacy.zip index 2d921bd9f..2fdb0e83a 100644 Binary files a/tests/ast-parsing/compile/push-0.5.8-legacy.zip and b/tests/ast-parsing/compile/push-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.9-compact.zip b/tests/ast-parsing/compile/push-0.5.9-compact.zip index 78c60d841..8378c6b36 100644 Binary files a/tests/ast-parsing/compile/push-0.5.9-compact.zip and b/tests/ast-parsing/compile/push-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.5.9-legacy.zip b/tests/ast-parsing/compile/push-0.5.9-legacy.zip index 47780a476..9adec8a2b 100644 Binary files a/tests/ast-parsing/compile/push-0.5.9-legacy.zip and b/tests/ast-parsing/compile/push-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.0-compact.zip b/tests/ast-parsing/compile/push-0.6.0-compact.zip index 72dd3e554..56933caa8 100644 Binary files a/tests/ast-parsing/compile/push-0.6.0-compact.zip and b/tests/ast-parsing/compile/push-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.0-legacy.zip b/tests/ast-parsing/compile/push-0.6.0-legacy.zip index cfa038753..b50b563a7 100644 Binary files a/tests/ast-parsing/compile/push-0.6.0-legacy.zip and b/tests/ast-parsing/compile/push-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.1-compact.zip b/tests/ast-parsing/compile/push-0.6.1-compact.zip index 5c4a02189..fa49ffd72 100644 Binary files a/tests/ast-parsing/compile/push-0.6.1-compact.zip and b/tests/ast-parsing/compile/push-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.1-legacy.zip b/tests/ast-parsing/compile/push-0.6.1-legacy.zip index c8509f24f..fe8e9842f 100644 Binary files a/tests/ast-parsing/compile/push-0.6.1-legacy.zip and b/tests/ast-parsing/compile/push-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.10-compact.zip b/tests/ast-parsing/compile/push-0.6.10-compact.zip index 3fb0e318e..35a114bca 100644 Binary files a/tests/ast-parsing/compile/push-0.6.10-compact.zip and b/tests/ast-parsing/compile/push-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.10-legacy.zip b/tests/ast-parsing/compile/push-0.6.10-legacy.zip index 93565660b..742987037 100644 Binary files a/tests/ast-parsing/compile/push-0.6.10-legacy.zip and b/tests/ast-parsing/compile/push-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.11-compact.zip b/tests/ast-parsing/compile/push-0.6.11-compact.zip index 9781834ac..8def61e64 100644 Binary files a/tests/ast-parsing/compile/push-0.6.11-compact.zip and b/tests/ast-parsing/compile/push-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.11-legacy.zip b/tests/ast-parsing/compile/push-0.6.11-legacy.zip index 38dbfd1e5..36068cd64 100644 Binary files a/tests/ast-parsing/compile/push-0.6.11-legacy.zip and b/tests/ast-parsing/compile/push-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.12-compact.zip b/tests/ast-parsing/compile/push-0.6.12-compact.zip index e5874acdb..ab38023d8 100644 Binary files a/tests/ast-parsing/compile/push-0.6.12-compact.zip and b/tests/ast-parsing/compile/push-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.12-legacy.zip b/tests/ast-parsing/compile/push-0.6.12-legacy.zip index f48cc15b2..f677e00d6 100644 Binary files a/tests/ast-parsing/compile/push-0.6.12-legacy.zip and b/tests/ast-parsing/compile/push-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.2-compact.zip b/tests/ast-parsing/compile/push-0.6.2-compact.zip index 9730f40fc..a7f5f3784 100644 Binary files a/tests/ast-parsing/compile/push-0.6.2-compact.zip and b/tests/ast-parsing/compile/push-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.2-legacy.zip b/tests/ast-parsing/compile/push-0.6.2-legacy.zip index 93804bf9c..ca6188324 100644 Binary files a/tests/ast-parsing/compile/push-0.6.2-legacy.zip and b/tests/ast-parsing/compile/push-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.3-compact.zip b/tests/ast-parsing/compile/push-0.6.3-compact.zip index 620d39da8..a7ac4f533 100644 Binary files a/tests/ast-parsing/compile/push-0.6.3-compact.zip and b/tests/ast-parsing/compile/push-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.3-legacy.zip b/tests/ast-parsing/compile/push-0.6.3-legacy.zip index 7479e9a11..dec02ddfd 100644 Binary files a/tests/ast-parsing/compile/push-0.6.3-legacy.zip and b/tests/ast-parsing/compile/push-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.4-compact.zip b/tests/ast-parsing/compile/push-0.6.4-compact.zip index dcf83579c..2e8726337 100644 Binary files a/tests/ast-parsing/compile/push-0.6.4-compact.zip and b/tests/ast-parsing/compile/push-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.4-legacy.zip b/tests/ast-parsing/compile/push-0.6.4-legacy.zip index d60c41e5a..0beca5ab5 100644 Binary files a/tests/ast-parsing/compile/push-0.6.4-legacy.zip and b/tests/ast-parsing/compile/push-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.5-compact.zip b/tests/ast-parsing/compile/push-0.6.5-compact.zip index e0543dc39..8427821b6 100644 Binary files a/tests/ast-parsing/compile/push-0.6.5-compact.zip and b/tests/ast-parsing/compile/push-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.5-legacy.zip b/tests/ast-parsing/compile/push-0.6.5-legacy.zip index bf8eeb8a0..6d4774aec 100644 Binary files a/tests/ast-parsing/compile/push-0.6.5-legacy.zip and b/tests/ast-parsing/compile/push-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.6-compact.zip b/tests/ast-parsing/compile/push-0.6.6-compact.zip index e31a45741..f773967a3 100644 Binary files a/tests/ast-parsing/compile/push-0.6.6-compact.zip and b/tests/ast-parsing/compile/push-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.6-legacy.zip b/tests/ast-parsing/compile/push-0.6.6-legacy.zip index 3f336c066..016154af3 100644 Binary files a/tests/ast-parsing/compile/push-0.6.6-legacy.zip and b/tests/ast-parsing/compile/push-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.7-compact.zip b/tests/ast-parsing/compile/push-0.6.7-compact.zip index 4dda32e10..cab92e59c 100644 Binary files a/tests/ast-parsing/compile/push-0.6.7-compact.zip and b/tests/ast-parsing/compile/push-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.7-legacy.zip b/tests/ast-parsing/compile/push-0.6.7-legacy.zip index 476f1e305..7caca61e9 100644 Binary files a/tests/ast-parsing/compile/push-0.6.7-legacy.zip and b/tests/ast-parsing/compile/push-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.8-compact.zip b/tests/ast-parsing/compile/push-0.6.8-compact.zip index 79f43dea7..e5c304312 100644 Binary files a/tests/ast-parsing/compile/push-0.6.8-compact.zip and b/tests/ast-parsing/compile/push-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.8-legacy.zip b/tests/ast-parsing/compile/push-0.6.8-legacy.zip index 64dc8873d..2a43a7e40 100644 Binary files a/tests/ast-parsing/compile/push-0.6.8-legacy.zip and b/tests/ast-parsing/compile/push-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.9-compact.zip b/tests/ast-parsing/compile/push-0.6.9-compact.zip index 077237b73..c9df3f118 100644 Binary files a/tests/ast-parsing/compile/push-0.6.9-compact.zip and b/tests/ast-parsing/compile/push-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.6.9-legacy.zip b/tests/ast-parsing/compile/push-0.6.9-legacy.zip index 9509bff11..034a1c994 100644 Binary files a/tests/ast-parsing/compile/push-0.6.9-legacy.zip and b/tests/ast-parsing/compile/push-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.0-compact.zip b/tests/ast-parsing/compile/push-0.7.0-compact.zip index 40a706638..490d85338 100644 Binary files a/tests/ast-parsing/compile/push-0.7.0-compact.zip and b/tests/ast-parsing/compile/push-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.0-legacy.zip b/tests/ast-parsing/compile/push-0.7.0-legacy.zip index 6e88c672b..0ad783a3f 100644 Binary files a/tests/ast-parsing/compile/push-0.7.0-legacy.zip and b/tests/ast-parsing/compile/push-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.1-compact.zip b/tests/ast-parsing/compile/push-0.7.1-compact.zip index 2ca4b8a62..0b6c32d4a 100644 Binary files a/tests/ast-parsing/compile/push-0.7.1-compact.zip and b/tests/ast-parsing/compile/push-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.1-legacy.zip b/tests/ast-parsing/compile/push-0.7.1-legacy.zip index 5b1bab5cc..90c1841d7 100644 Binary files a/tests/ast-parsing/compile/push-0.7.1-legacy.zip and b/tests/ast-parsing/compile/push-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.2-compact.zip b/tests/ast-parsing/compile/push-0.7.2-compact.zip index e39ce03d6..b49dde74d 100644 Binary files a/tests/ast-parsing/compile/push-0.7.2-compact.zip and b/tests/ast-parsing/compile/push-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.2-legacy.zip b/tests/ast-parsing/compile/push-0.7.2-legacy.zip index 7e8d8658e..089048018 100644 Binary files a/tests/ast-parsing/compile/push-0.7.2-legacy.zip and b/tests/ast-parsing/compile/push-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.3-compact.zip b/tests/ast-parsing/compile/push-0.7.3-compact.zip index 5dec7935f..65e06cd64 100644 Binary files a/tests/ast-parsing/compile/push-0.7.3-compact.zip and b/tests/ast-parsing/compile/push-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.3-legacy.zip b/tests/ast-parsing/compile/push-0.7.3-legacy.zip index c2980b09b..96c000392 100644 Binary files a/tests/ast-parsing/compile/push-0.7.3-legacy.zip and b/tests/ast-parsing/compile/push-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.4-compact.zip b/tests/ast-parsing/compile/push-0.7.4-compact.zip index 3d5a0bf01..bd47532fd 100644 Binary files a/tests/ast-parsing/compile/push-0.7.4-compact.zip and b/tests/ast-parsing/compile/push-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.4-legacy.zip b/tests/ast-parsing/compile/push-0.7.4-legacy.zip index 10ef1c76e..8fd52ce9d 100644 Binary files a/tests/ast-parsing/compile/push-0.7.4-legacy.zip and b/tests/ast-parsing/compile/push-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.5-compact.zip b/tests/ast-parsing/compile/push-0.7.5-compact.zip index 3a0d6625d..284cd17c8 100644 Binary files a/tests/ast-parsing/compile/push-0.7.5-compact.zip and b/tests/ast-parsing/compile/push-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.5-legacy.zip b/tests/ast-parsing/compile/push-0.7.5-legacy.zip index 82516ddb0..54d3cdc4a 100644 Binary files a/tests/ast-parsing/compile/push-0.7.5-legacy.zip and b/tests/ast-parsing/compile/push-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.6-compact.zip b/tests/ast-parsing/compile/push-0.7.6-compact.zip index eb2405ad4..1ab0ef9ed 100644 Binary files a/tests/ast-parsing/compile/push-0.7.6-compact.zip and b/tests/ast-parsing/compile/push-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.7.6-legacy.zip b/tests/ast-parsing/compile/push-0.7.6-legacy.zip index 3ccdd514f..6ae4df949 100644 Binary files a/tests/ast-parsing/compile/push-0.7.6-legacy.zip and b/tests/ast-parsing/compile/push-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.0-compact.zip b/tests/ast-parsing/compile/push-0.8.0-compact.zip index f153da0a0..964c4497b 100644 Binary files a/tests/ast-parsing/compile/push-0.8.0-compact.zip and b/tests/ast-parsing/compile/push-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.1-compact.zip b/tests/ast-parsing/compile/push-0.8.1-compact.zip index 4b19891aa..44463977b 100644 Binary files a/tests/ast-parsing/compile/push-0.8.1-compact.zip and b/tests/ast-parsing/compile/push-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.2-compact.zip b/tests/ast-parsing/compile/push-0.8.2-compact.zip index 46c13c0c0..6bc06676d 100644 Binary files a/tests/ast-parsing/compile/push-0.8.2-compact.zip and b/tests/ast-parsing/compile/push-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.3-compact.zip b/tests/ast-parsing/compile/push-0.8.3-compact.zip index 54d9d6d52..33a94efca 100644 Binary files a/tests/ast-parsing/compile/push-0.8.3-compact.zip and b/tests/ast-parsing/compile/push-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.4-compact.zip b/tests/ast-parsing/compile/push-0.8.4-compact.zip index 7b0f9710c..699d859b5 100644 Binary files a/tests/ast-parsing/compile/push-0.8.4-compact.zip and b/tests/ast-parsing/compile/push-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.5-compact.zip b/tests/ast-parsing/compile/push-0.8.5-compact.zip index 0c1720ae4..7c2f7395b 100644 Binary files a/tests/ast-parsing/compile/push-0.8.5-compact.zip and b/tests/ast-parsing/compile/push-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.6-compact.zip b/tests/ast-parsing/compile/push-0.8.6-compact.zip index 241fdf44a..058b915a6 100644 Binary files a/tests/ast-parsing/compile/push-0.8.6-compact.zip and b/tests/ast-parsing/compile/push-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/push-0.8.7-compact.zip b/tests/ast-parsing/compile/push-0.8.7-compact.zip index b7e9b29f1..96e22e935 100644 Binary files a/tests/ast-parsing/compile/push-0.8.7-compact.zip and b/tests/ast-parsing/compile/push-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.0-legacy.zip b/tests/ast-parsing/compile/return-0.4.0-legacy.zip index 082bf5c60..b5dcc8f2a 100644 Binary files a/tests/ast-parsing/compile/return-0.4.0-legacy.zip and b/tests/ast-parsing/compile/return-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.1-legacy.zip b/tests/ast-parsing/compile/return-0.4.1-legacy.zip index 5e2cd3753..a4e774c81 100644 Binary files a/tests/ast-parsing/compile/return-0.4.1-legacy.zip and b/tests/ast-parsing/compile/return-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.10-legacy.zip b/tests/ast-parsing/compile/return-0.4.10-legacy.zip index bfdbf828b..dfa60e6e8 100644 Binary files a/tests/ast-parsing/compile/return-0.4.10-legacy.zip and b/tests/ast-parsing/compile/return-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.11-legacy.zip b/tests/ast-parsing/compile/return-0.4.11-legacy.zip index ad4d3167d..5fa08a53f 100644 Binary files a/tests/ast-parsing/compile/return-0.4.11-legacy.zip and b/tests/ast-parsing/compile/return-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.12-compact.zip b/tests/ast-parsing/compile/return-0.4.12-compact.zip index b048cddbf..4e1b685c5 100644 Binary files a/tests/ast-parsing/compile/return-0.4.12-compact.zip and b/tests/ast-parsing/compile/return-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.12-legacy.zip b/tests/ast-parsing/compile/return-0.4.12-legacy.zip index 30efb1dc4..bdc4bc1e5 100644 Binary files a/tests/ast-parsing/compile/return-0.4.12-legacy.zip and b/tests/ast-parsing/compile/return-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.13-compact.zip b/tests/ast-parsing/compile/return-0.4.13-compact.zip index 3b02330e7..2f0ff4948 100644 Binary files a/tests/ast-parsing/compile/return-0.4.13-compact.zip and b/tests/ast-parsing/compile/return-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.13-legacy.zip b/tests/ast-parsing/compile/return-0.4.13-legacy.zip index 0f2461802..c4a1d1be4 100644 Binary files a/tests/ast-parsing/compile/return-0.4.13-legacy.zip and b/tests/ast-parsing/compile/return-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.14-compact.zip b/tests/ast-parsing/compile/return-0.4.14-compact.zip index 720ee654b..f06164961 100644 Binary files a/tests/ast-parsing/compile/return-0.4.14-compact.zip and b/tests/ast-parsing/compile/return-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.14-legacy.zip b/tests/ast-parsing/compile/return-0.4.14-legacy.zip index e82204e84..5139f54e3 100644 Binary files a/tests/ast-parsing/compile/return-0.4.14-legacy.zip and b/tests/ast-parsing/compile/return-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.15-compact.zip b/tests/ast-parsing/compile/return-0.4.15-compact.zip index e2515ddb1..3eb42bb33 100644 Binary files a/tests/ast-parsing/compile/return-0.4.15-compact.zip and b/tests/ast-parsing/compile/return-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.15-legacy.zip b/tests/ast-parsing/compile/return-0.4.15-legacy.zip index 8bf404697..b9dd50caf 100644 Binary files a/tests/ast-parsing/compile/return-0.4.15-legacy.zip and b/tests/ast-parsing/compile/return-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.16-compact.zip b/tests/ast-parsing/compile/return-0.4.16-compact.zip index 6af088fe3..4ccc8745b 100644 Binary files a/tests/ast-parsing/compile/return-0.4.16-compact.zip and b/tests/ast-parsing/compile/return-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.16-legacy.zip b/tests/ast-parsing/compile/return-0.4.16-legacy.zip index d90b10310..a508057d6 100644 Binary files a/tests/ast-parsing/compile/return-0.4.16-legacy.zip and b/tests/ast-parsing/compile/return-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.17-compact.zip b/tests/ast-parsing/compile/return-0.4.17-compact.zip index e60f33d06..90061a7b7 100644 Binary files a/tests/ast-parsing/compile/return-0.4.17-compact.zip and b/tests/ast-parsing/compile/return-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.17-legacy.zip b/tests/ast-parsing/compile/return-0.4.17-legacy.zip index 0851a25b7..1a4e52c72 100644 Binary files a/tests/ast-parsing/compile/return-0.4.17-legacy.zip and b/tests/ast-parsing/compile/return-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.18-compact.zip b/tests/ast-parsing/compile/return-0.4.18-compact.zip index 1e2dd2b1b..28fcf12e4 100644 Binary files a/tests/ast-parsing/compile/return-0.4.18-compact.zip and b/tests/ast-parsing/compile/return-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.18-legacy.zip b/tests/ast-parsing/compile/return-0.4.18-legacy.zip index 1bd4a69bf..22de35609 100644 Binary files a/tests/ast-parsing/compile/return-0.4.18-legacy.zip and b/tests/ast-parsing/compile/return-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.19-compact.zip b/tests/ast-parsing/compile/return-0.4.19-compact.zip index eeede28af..31c6c1653 100644 Binary files a/tests/ast-parsing/compile/return-0.4.19-compact.zip and b/tests/ast-parsing/compile/return-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.19-legacy.zip b/tests/ast-parsing/compile/return-0.4.19-legacy.zip index 474b971ec..647463de4 100644 Binary files a/tests/ast-parsing/compile/return-0.4.19-legacy.zip and b/tests/ast-parsing/compile/return-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.2-legacy.zip b/tests/ast-parsing/compile/return-0.4.2-legacy.zip index 7c35a1c04..62617dacd 100644 Binary files a/tests/ast-parsing/compile/return-0.4.2-legacy.zip and b/tests/ast-parsing/compile/return-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.20-compact.zip b/tests/ast-parsing/compile/return-0.4.20-compact.zip index 0e2c4a740..ed0a3644f 100644 Binary files a/tests/ast-parsing/compile/return-0.4.20-compact.zip and b/tests/ast-parsing/compile/return-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.20-legacy.zip b/tests/ast-parsing/compile/return-0.4.20-legacy.zip index 6d94ce728..755fdbbdf 100644 Binary files a/tests/ast-parsing/compile/return-0.4.20-legacy.zip and b/tests/ast-parsing/compile/return-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.21-compact.zip b/tests/ast-parsing/compile/return-0.4.21-compact.zip index 39e6b23b1..34bd06815 100644 Binary files a/tests/ast-parsing/compile/return-0.4.21-compact.zip and b/tests/ast-parsing/compile/return-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.21-legacy.zip b/tests/ast-parsing/compile/return-0.4.21-legacy.zip index 73fda544e..c5d6ff67d 100644 Binary files a/tests/ast-parsing/compile/return-0.4.21-legacy.zip and b/tests/ast-parsing/compile/return-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.22-compact.zip b/tests/ast-parsing/compile/return-0.4.22-compact.zip index f8433e4ae..4ee14c133 100644 Binary files a/tests/ast-parsing/compile/return-0.4.22-compact.zip and b/tests/ast-parsing/compile/return-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.22-legacy.zip b/tests/ast-parsing/compile/return-0.4.22-legacy.zip index a95aa5a9f..1e8fb3d59 100644 Binary files a/tests/ast-parsing/compile/return-0.4.22-legacy.zip and b/tests/ast-parsing/compile/return-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.23-compact.zip b/tests/ast-parsing/compile/return-0.4.23-compact.zip index 49ef7404b..8d56a7caf 100644 Binary files a/tests/ast-parsing/compile/return-0.4.23-compact.zip and b/tests/ast-parsing/compile/return-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.23-legacy.zip b/tests/ast-parsing/compile/return-0.4.23-legacy.zip index 6b5066c90..5cc128142 100644 Binary files a/tests/ast-parsing/compile/return-0.4.23-legacy.zip and b/tests/ast-parsing/compile/return-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.24-compact.zip b/tests/ast-parsing/compile/return-0.4.24-compact.zip index ca92e85e4..550012235 100644 Binary files a/tests/ast-parsing/compile/return-0.4.24-compact.zip and b/tests/ast-parsing/compile/return-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.24-legacy.zip b/tests/ast-parsing/compile/return-0.4.24-legacy.zip index 8577bc8fe..254e9dcc6 100644 Binary files a/tests/ast-parsing/compile/return-0.4.24-legacy.zip and b/tests/ast-parsing/compile/return-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.25-compact.zip b/tests/ast-parsing/compile/return-0.4.25-compact.zip index 5e43345cd..49e411386 100644 Binary files a/tests/ast-parsing/compile/return-0.4.25-compact.zip and b/tests/ast-parsing/compile/return-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.25-legacy.zip b/tests/ast-parsing/compile/return-0.4.25-legacy.zip index bf9088577..ec07c1c5f 100644 Binary files a/tests/ast-parsing/compile/return-0.4.25-legacy.zip and b/tests/ast-parsing/compile/return-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.26-compact.zip b/tests/ast-parsing/compile/return-0.4.26-compact.zip index c68cd5911..5a69a1c4a 100644 Binary files a/tests/ast-parsing/compile/return-0.4.26-compact.zip and b/tests/ast-parsing/compile/return-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.26-legacy.zip b/tests/ast-parsing/compile/return-0.4.26-legacy.zip index f40288ebc..e81854feb 100644 Binary files a/tests/ast-parsing/compile/return-0.4.26-legacy.zip and b/tests/ast-parsing/compile/return-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.3-legacy.zip b/tests/ast-parsing/compile/return-0.4.3-legacy.zip index b71b8cfb0..c388f9d8b 100644 Binary files a/tests/ast-parsing/compile/return-0.4.3-legacy.zip and b/tests/ast-parsing/compile/return-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.4-legacy.zip b/tests/ast-parsing/compile/return-0.4.4-legacy.zip index c7d40ea2a..37fcb0582 100644 Binary files a/tests/ast-parsing/compile/return-0.4.4-legacy.zip and b/tests/ast-parsing/compile/return-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.5-legacy.zip b/tests/ast-parsing/compile/return-0.4.5-legacy.zip index dfda031da..f8be85aa1 100644 Binary files a/tests/ast-parsing/compile/return-0.4.5-legacy.zip and b/tests/ast-parsing/compile/return-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.6-legacy.zip b/tests/ast-parsing/compile/return-0.4.6-legacy.zip index f7ba5fa12..047e2cb7d 100644 Binary files a/tests/ast-parsing/compile/return-0.4.6-legacy.zip and b/tests/ast-parsing/compile/return-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.7-legacy.zip b/tests/ast-parsing/compile/return-0.4.7-legacy.zip index 17fddaf9e..918169c65 100644 Binary files a/tests/ast-parsing/compile/return-0.4.7-legacy.zip and b/tests/ast-parsing/compile/return-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.8-legacy.zip b/tests/ast-parsing/compile/return-0.4.8-legacy.zip index 631fa8c44..8e029b369 100644 Binary files a/tests/ast-parsing/compile/return-0.4.8-legacy.zip and b/tests/ast-parsing/compile/return-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.4.9-legacy.zip b/tests/ast-parsing/compile/return-0.4.9-legacy.zip index 5d5e5e03d..4a1a6422d 100644 Binary files a/tests/ast-parsing/compile/return-0.4.9-legacy.zip and b/tests/ast-parsing/compile/return-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.0-compact.zip b/tests/ast-parsing/compile/return-0.5.0-compact.zip index dd0ecb26a..7f4991d9c 100644 Binary files a/tests/ast-parsing/compile/return-0.5.0-compact.zip and b/tests/ast-parsing/compile/return-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.0-legacy.zip b/tests/ast-parsing/compile/return-0.5.0-legacy.zip index 22df7e9dd..a5faa5a4f 100644 Binary files a/tests/ast-parsing/compile/return-0.5.0-legacy.zip and b/tests/ast-parsing/compile/return-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.1-compact.zip b/tests/ast-parsing/compile/return-0.5.1-compact.zip index b79d9a171..48cf08929 100644 Binary files a/tests/ast-parsing/compile/return-0.5.1-compact.zip and b/tests/ast-parsing/compile/return-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.1-legacy.zip b/tests/ast-parsing/compile/return-0.5.1-legacy.zip index 910f813df..062753279 100644 Binary files a/tests/ast-parsing/compile/return-0.5.1-legacy.zip and b/tests/ast-parsing/compile/return-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.10-compact.zip b/tests/ast-parsing/compile/return-0.5.10-compact.zip index a5fc17b40..d9ec090ae 100644 Binary files a/tests/ast-parsing/compile/return-0.5.10-compact.zip and b/tests/ast-parsing/compile/return-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.10-legacy.zip b/tests/ast-parsing/compile/return-0.5.10-legacy.zip index f406a8895..8aca5df2f 100644 Binary files a/tests/ast-parsing/compile/return-0.5.10-legacy.zip and b/tests/ast-parsing/compile/return-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.11-compact.zip b/tests/ast-parsing/compile/return-0.5.11-compact.zip index 3ad614744..bb4339c71 100644 Binary files a/tests/ast-parsing/compile/return-0.5.11-compact.zip and b/tests/ast-parsing/compile/return-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.11-legacy.zip b/tests/ast-parsing/compile/return-0.5.11-legacy.zip index de5866071..6c22a0636 100644 Binary files a/tests/ast-parsing/compile/return-0.5.11-legacy.zip and b/tests/ast-parsing/compile/return-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.12-compact.zip b/tests/ast-parsing/compile/return-0.5.12-compact.zip index 471d888bc..1821be229 100644 Binary files a/tests/ast-parsing/compile/return-0.5.12-compact.zip and b/tests/ast-parsing/compile/return-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.12-legacy.zip b/tests/ast-parsing/compile/return-0.5.12-legacy.zip index 74194c985..845552581 100644 Binary files a/tests/ast-parsing/compile/return-0.5.12-legacy.zip and b/tests/ast-parsing/compile/return-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.13-compact.zip b/tests/ast-parsing/compile/return-0.5.13-compact.zip index 85b537690..69eb1d5df 100644 Binary files a/tests/ast-parsing/compile/return-0.5.13-compact.zip and b/tests/ast-parsing/compile/return-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.13-legacy.zip b/tests/ast-parsing/compile/return-0.5.13-legacy.zip index a76367396..44b4b80d2 100644 Binary files a/tests/ast-parsing/compile/return-0.5.13-legacy.zip and b/tests/ast-parsing/compile/return-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.14-compact.zip b/tests/ast-parsing/compile/return-0.5.14-compact.zip index 29ca8b893..486ea26e7 100644 Binary files a/tests/ast-parsing/compile/return-0.5.14-compact.zip and b/tests/ast-parsing/compile/return-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.14-legacy.zip b/tests/ast-parsing/compile/return-0.5.14-legacy.zip index c7e664e9a..dbff21f6a 100644 Binary files a/tests/ast-parsing/compile/return-0.5.14-legacy.zip and b/tests/ast-parsing/compile/return-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.15-compact.zip b/tests/ast-parsing/compile/return-0.5.15-compact.zip index 177fe91c6..11db0ce27 100644 Binary files a/tests/ast-parsing/compile/return-0.5.15-compact.zip and b/tests/ast-parsing/compile/return-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.15-legacy.zip b/tests/ast-parsing/compile/return-0.5.15-legacy.zip index a649f72cf..ab5037eef 100644 Binary files a/tests/ast-parsing/compile/return-0.5.15-legacy.zip and b/tests/ast-parsing/compile/return-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.16-compact.zip b/tests/ast-parsing/compile/return-0.5.16-compact.zip index ce0224f41..4eb3fb5ce 100644 Binary files a/tests/ast-parsing/compile/return-0.5.16-compact.zip and b/tests/ast-parsing/compile/return-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.16-legacy.zip b/tests/ast-parsing/compile/return-0.5.16-legacy.zip index 7794aa004..22ed72cf0 100644 Binary files a/tests/ast-parsing/compile/return-0.5.16-legacy.zip and b/tests/ast-parsing/compile/return-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.17-compact.zip b/tests/ast-parsing/compile/return-0.5.17-compact.zip index 9c19830b0..bd17b925c 100644 Binary files a/tests/ast-parsing/compile/return-0.5.17-compact.zip and b/tests/ast-parsing/compile/return-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.17-legacy.zip b/tests/ast-parsing/compile/return-0.5.17-legacy.zip index 0706e348b..74d7e3506 100644 Binary files a/tests/ast-parsing/compile/return-0.5.17-legacy.zip and b/tests/ast-parsing/compile/return-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.2-compact.zip b/tests/ast-parsing/compile/return-0.5.2-compact.zip index a0d16ea34..33470a7dc 100644 Binary files a/tests/ast-parsing/compile/return-0.5.2-compact.zip and b/tests/ast-parsing/compile/return-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.2-legacy.zip b/tests/ast-parsing/compile/return-0.5.2-legacy.zip index 61d4c133b..17cc47ca4 100644 Binary files a/tests/ast-parsing/compile/return-0.5.2-legacy.zip and b/tests/ast-parsing/compile/return-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.3-compact.zip b/tests/ast-parsing/compile/return-0.5.3-compact.zip index 2b528c9b8..43d922240 100644 Binary files a/tests/ast-parsing/compile/return-0.5.3-compact.zip and b/tests/ast-parsing/compile/return-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.3-legacy.zip b/tests/ast-parsing/compile/return-0.5.3-legacy.zip index d5aa48d86..98e7b7745 100644 Binary files a/tests/ast-parsing/compile/return-0.5.3-legacy.zip and b/tests/ast-parsing/compile/return-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.4-compact.zip b/tests/ast-parsing/compile/return-0.5.4-compact.zip index 8c6d90c26..0c3e9fb84 100644 Binary files a/tests/ast-parsing/compile/return-0.5.4-compact.zip and b/tests/ast-parsing/compile/return-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.4-legacy.zip b/tests/ast-parsing/compile/return-0.5.4-legacy.zip index 3d16916a9..0abcb8c84 100644 Binary files a/tests/ast-parsing/compile/return-0.5.4-legacy.zip and b/tests/ast-parsing/compile/return-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.5-compact.zip b/tests/ast-parsing/compile/return-0.5.5-compact.zip index 2a69a8331..85e4dad0d 100644 Binary files a/tests/ast-parsing/compile/return-0.5.5-compact.zip and b/tests/ast-parsing/compile/return-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.5-legacy.zip b/tests/ast-parsing/compile/return-0.5.5-legacy.zip index 65fc0e3c6..64c9b5e83 100644 Binary files a/tests/ast-parsing/compile/return-0.5.5-legacy.zip and b/tests/ast-parsing/compile/return-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.6-compact.zip b/tests/ast-parsing/compile/return-0.5.6-compact.zip index 19bf1f474..2fb94080d 100644 Binary files a/tests/ast-parsing/compile/return-0.5.6-compact.zip and b/tests/ast-parsing/compile/return-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.6-legacy.zip b/tests/ast-parsing/compile/return-0.5.6-legacy.zip index d984e1137..a85a175be 100644 Binary files a/tests/ast-parsing/compile/return-0.5.6-legacy.zip and b/tests/ast-parsing/compile/return-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.7-compact.zip b/tests/ast-parsing/compile/return-0.5.7-compact.zip index 6f31f2141..75f8a96af 100644 Binary files a/tests/ast-parsing/compile/return-0.5.7-compact.zip and b/tests/ast-parsing/compile/return-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.7-legacy.zip b/tests/ast-parsing/compile/return-0.5.7-legacy.zip index 2c1f6adc2..8ab7a0e1d 100644 Binary files a/tests/ast-parsing/compile/return-0.5.7-legacy.zip and b/tests/ast-parsing/compile/return-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.8-compact.zip b/tests/ast-parsing/compile/return-0.5.8-compact.zip index 11e0dc84f..e067e1435 100644 Binary files a/tests/ast-parsing/compile/return-0.5.8-compact.zip and b/tests/ast-parsing/compile/return-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.8-legacy.zip b/tests/ast-parsing/compile/return-0.5.8-legacy.zip index 3070b3c85..5e6c07273 100644 Binary files a/tests/ast-parsing/compile/return-0.5.8-legacy.zip and b/tests/ast-parsing/compile/return-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.9-compact.zip b/tests/ast-parsing/compile/return-0.5.9-compact.zip index cf4d0f059..7675cb0ce 100644 Binary files a/tests/ast-parsing/compile/return-0.5.9-compact.zip and b/tests/ast-parsing/compile/return-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.5.9-legacy.zip b/tests/ast-parsing/compile/return-0.5.9-legacy.zip index c915fd8f2..ae6555cf9 100644 Binary files a/tests/ast-parsing/compile/return-0.5.9-legacy.zip and b/tests/ast-parsing/compile/return-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.0-compact.zip b/tests/ast-parsing/compile/return-0.6.0-compact.zip index a75aceb0e..ec706d922 100644 Binary files a/tests/ast-parsing/compile/return-0.6.0-compact.zip and b/tests/ast-parsing/compile/return-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.0-legacy.zip b/tests/ast-parsing/compile/return-0.6.0-legacy.zip index fce940c82..5243b81dd 100644 Binary files a/tests/ast-parsing/compile/return-0.6.0-legacy.zip and b/tests/ast-parsing/compile/return-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.1-compact.zip b/tests/ast-parsing/compile/return-0.6.1-compact.zip index dfe8bca0f..b05d8ea4e 100644 Binary files a/tests/ast-parsing/compile/return-0.6.1-compact.zip and b/tests/ast-parsing/compile/return-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.1-legacy.zip b/tests/ast-parsing/compile/return-0.6.1-legacy.zip index a84dbd209..b352158be 100644 Binary files a/tests/ast-parsing/compile/return-0.6.1-legacy.zip and b/tests/ast-parsing/compile/return-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.10-compact.zip b/tests/ast-parsing/compile/return-0.6.10-compact.zip index bd39b7c95..1939820fa 100644 Binary files a/tests/ast-parsing/compile/return-0.6.10-compact.zip and b/tests/ast-parsing/compile/return-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.10-legacy.zip b/tests/ast-parsing/compile/return-0.6.10-legacy.zip index 226f01899..4fe707d46 100644 Binary files a/tests/ast-parsing/compile/return-0.6.10-legacy.zip and b/tests/ast-parsing/compile/return-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.11-compact.zip b/tests/ast-parsing/compile/return-0.6.11-compact.zip index cc34faf31..1dc845ddd 100644 Binary files a/tests/ast-parsing/compile/return-0.6.11-compact.zip and b/tests/ast-parsing/compile/return-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.11-legacy.zip b/tests/ast-parsing/compile/return-0.6.11-legacy.zip index 7911276ce..40efe9ff0 100644 Binary files a/tests/ast-parsing/compile/return-0.6.11-legacy.zip and b/tests/ast-parsing/compile/return-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.12-compact.zip b/tests/ast-parsing/compile/return-0.6.12-compact.zip index f5f5e7946..df3104fa6 100644 Binary files a/tests/ast-parsing/compile/return-0.6.12-compact.zip and b/tests/ast-parsing/compile/return-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.12-legacy.zip b/tests/ast-parsing/compile/return-0.6.12-legacy.zip index b00d6d2aa..b85df8253 100644 Binary files a/tests/ast-parsing/compile/return-0.6.12-legacy.zip and b/tests/ast-parsing/compile/return-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.2-compact.zip b/tests/ast-parsing/compile/return-0.6.2-compact.zip index ea0e8bf78..9ea39d2b3 100644 Binary files a/tests/ast-parsing/compile/return-0.6.2-compact.zip and b/tests/ast-parsing/compile/return-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.2-legacy.zip b/tests/ast-parsing/compile/return-0.6.2-legacy.zip index 67ee7e4e2..8c3fb5e0c 100644 Binary files a/tests/ast-parsing/compile/return-0.6.2-legacy.zip and b/tests/ast-parsing/compile/return-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.3-compact.zip b/tests/ast-parsing/compile/return-0.6.3-compact.zip index 57df978d4..544d5880d 100644 Binary files a/tests/ast-parsing/compile/return-0.6.3-compact.zip and b/tests/ast-parsing/compile/return-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.3-legacy.zip b/tests/ast-parsing/compile/return-0.6.3-legacy.zip index 3dcc9f041..56e6cb415 100644 Binary files a/tests/ast-parsing/compile/return-0.6.3-legacy.zip and b/tests/ast-parsing/compile/return-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.4-compact.zip b/tests/ast-parsing/compile/return-0.6.4-compact.zip index 91eee2f57..a092f2dff 100644 Binary files a/tests/ast-parsing/compile/return-0.6.4-compact.zip and b/tests/ast-parsing/compile/return-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.4-legacy.zip b/tests/ast-parsing/compile/return-0.6.4-legacy.zip index c2502da7b..4d112687c 100644 Binary files a/tests/ast-parsing/compile/return-0.6.4-legacy.zip and b/tests/ast-parsing/compile/return-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.5-compact.zip b/tests/ast-parsing/compile/return-0.6.5-compact.zip index f25609526..8898fbe44 100644 Binary files a/tests/ast-parsing/compile/return-0.6.5-compact.zip and b/tests/ast-parsing/compile/return-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.5-legacy.zip b/tests/ast-parsing/compile/return-0.6.5-legacy.zip index e06d433ab..b6d231efb 100644 Binary files a/tests/ast-parsing/compile/return-0.6.5-legacy.zip and b/tests/ast-parsing/compile/return-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.6-compact.zip b/tests/ast-parsing/compile/return-0.6.6-compact.zip index 8f859dc96..46723e2e5 100644 Binary files a/tests/ast-parsing/compile/return-0.6.6-compact.zip and b/tests/ast-parsing/compile/return-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.6-legacy.zip b/tests/ast-parsing/compile/return-0.6.6-legacy.zip index d5559728a..030819fba 100644 Binary files a/tests/ast-parsing/compile/return-0.6.6-legacy.zip and b/tests/ast-parsing/compile/return-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.7-compact.zip b/tests/ast-parsing/compile/return-0.6.7-compact.zip index 6b0ba131c..7c2160cd0 100644 Binary files a/tests/ast-parsing/compile/return-0.6.7-compact.zip and b/tests/ast-parsing/compile/return-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.7-legacy.zip b/tests/ast-parsing/compile/return-0.6.7-legacy.zip index 7cd77a6b3..a93997873 100644 Binary files a/tests/ast-parsing/compile/return-0.6.7-legacy.zip and b/tests/ast-parsing/compile/return-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.8-compact.zip b/tests/ast-parsing/compile/return-0.6.8-compact.zip index 9102565e4..7eaf1c68f 100644 Binary files a/tests/ast-parsing/compile/return-0.6.8-compact.zip and b/tests/ast-parsing/compile/return-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.8-legacy.zip b/tests/ast-parsing/compile/return-0.6.8-legacy.zip index d0dc12946..dac607a5e 100644 Binary files a/tests/ast-parsing/compile/return-0.6.8-legacy.zip and b/tests/ast-parsing/compile/return-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.9-compact.zip b/tests/ast-parsing/compile/return-0.6.9-compact.zip index f0ff11feb..8dda13552 100644 Binary files a/tests/ast-parsing/compile/return-0.6.9-compact.zip and b/tests/ast-parsing/compile/return-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.6.9-legacy.zip b/tests/ast-parsing/compile/return-0.6.9-legacy.zip index 0174b7cde..b27f9f5df 100644 Binary files a/tests/ast-parsing/compile/return-0.6.9-legacy.zip and b/tests/ast-parsing/compile/return-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.0-compact.zip b/tests/ast-parsing/compile/return-0.7.0-compact.zip index 4c396667a..ba6f666cc 100644 Binary files a/tests/ast-parsing/compile/return-0.7.0-compact.zip and b/tests/ast-parsing/compile/return-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.0-legacy.zip b/tests/ast-parsing/compile/return-0.7.0-legacy.zip index dbd0f554f..50dc7f3a2 100644 Binary files a/tests/ast-parsing/compile/return-0.7.0-legacy.zip and b/tests/ast-parsing/compile/return-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.1-compact.zip b/tests/ast-parsing/compile/return-0.7.1-compact.zip index c380bcb85..e19be4b75 100644 Binary files a/tests/ast-parsing/compile/return-0.7.1-compact.zip and b/tests/ast-parsing/compile/return-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.1-legacy.zip b/tests/ast-parsing/compile/return-0.7.1-legacy.zip index fd2d825c9..324915983 100644 Binary files a/tests/ast-parsing/compile/return-0.7.1-legacy.zip and b/tests/ast-parsing/compile/return-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.2-compact.zip b/tests/ast-parsing/compile/return-0.7.2-compact.zip index b17875fa1..223c8c9ae 100644 Binary files a/tests/ast-parsing/compile/return-0.7.2-compact.zip and b/tests/ast-parsing/compile/return-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.2-legacy.zip b/tests/ast-parsing/compile/return-0.7.2-legacy.zip index 65e800dcc..82a728a23 100644 Binary files a/tests/ast-parsing/compile/return-0.7.2-legacy.zip and b/tests/ast-parsing/compile/return-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.3-compact.zip b/tests/ast-parsing/compile/return-0.7.3-compact.zip index a56d9249c..f1e46f94b 100644 Binary files a/tests/ast-parsing/compile/return-0.7.3-compact.zip and b/tests/ast-parsing/compile/return-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.3-legacy.zip b/tests/ast-parsing/compile/return-0.7.3-legacy.zip index f07119ea0..b25cc84f4 100644 Binary files a/tests/ast-parsing/compile/return-0.7.3-legacy.zip and b/tests/ast-parsing/compile/return-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.4-compact.zip b/tests/ast-parsing/compile/return-0.7.4-compact.zip index 27f13cb62..302c03752 100644 Binary files a/tests/ast-parsing/compile/return-0.7.4-compact.zip and b/tests/ast-parsing/compile/return-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.4-legacy.zip b/tests/ast-parsing/compile/return-0.7.4-legacy.zip index 82389d47a..61ee60f28 100644 Binary files a/tests/ast-parsing/compile/return-0.7.4-legacy.zip and b/tests/ast-parsing/compile/return-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.5-compact.zip b/tests/ast-parsing/compile/return-0.7.5-compact.zip index 4a7c774c5..34a18f742 100644 Binary files a/tests/ast-parsing/compile/return-0.7.5-compact.zip and b/tests/ast-parsing/compile/return-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.5-legacy.zip b/tests/ast-parsing/compile/return-0.7.5-legacy.zip index 1e884df7d..dbdbdd019 100644 Binary files a/tests/ast-parsing/compile/return-0.7.5-legacy.zip and b/tests/ast-parsing/compile/return-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.6-compact.zip b/tests/ast-parsing/compile/return-0.7.6-compact.zip index 84f25a794..232718156 100644 Binary files a/tests/ast-parsing/compile/return-0.7.6-compact.zip and b/tests/ast-parsing/compile/return-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.7.6-legacy.zip b/tests/ast-parsing/compile/return-0.7.6-legacy.zip index ca10fa086..6b5e13d14 100644 Binary files a/tests/ast-parsing/compile/return-0.7.6-legacy.zip and b/tests/ast-parsing/compile/return-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.0-compact.zip b/tests/ast-parsing/compile/return-0.8.0-compact.zip index 622f79f72..20f37bbaf 100644 Binary files a/tests/ast-parsing/compile/return-0.8.0-compact.zip and b/tests/ast-parsing/compile/return-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.1-compact.zip b/tests/ast-parsing/compile/return-0.8.1-compact.zip index ea5c33e61..4de7a3cc9 100644 Binary files a/tests/ast-parsing/compile/return-0.8.1-compact.zip and b/tests/ast-parsing/compile/return-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.2-compact.zip b/tests/ast-parsing/compile/return-0.8.2-compact.zip index 8850eb612..ca96362ae 100644 Binary files a/tests/ast-parsing/compile/return-0.8.2-compact.zip and b/tests/ast-parsing/compile/return-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.3-compact.zip b/tests/ast-parsing/compile/return-0.8.3-compact.zip index 2e0ae4409..34c4be838 100644 Binary files a/tests/ast-parsing/compile/return-0.8.3-compact.zip and b/tests/ast-parsing/compile/return-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.4-compact.zip b/tests/ast-parsing/compile/return-0.8.4-compact.zip index 8b799f9c7..4d2ed9ff4 100644 Binary files a/tests/ast-parsing/compile/return-0.8.4-compact.zip and b/tests/ast-parsing/compile/return-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.5-compact.zip b/tests/ast-parsing/compile/return-0.8.5-compact.zip index 2460451f0..4c09c86de 100644 Binary files a/tests/ast-parsing/compile/return-0.8.5-compact.zip and b/tests/ast-parsing/compile/return-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.6-compact.zip b/tests/ast-parsing/compile/return-0.8.6-compact.zip index 52bbdd526..843d55d82 100644 Binary files a/tests/ast-parsing/compile/return-0.8.6-compact.zip and b/tests/ast-parsing/compile/return-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/return-0.8.7-compact.zip b/tests/ast-parsing/compile/return-0.8.7-compact.zip index 7df8b30a0..a0adef5e6 100644 Binary files a/tests/ast-parsing/compile/return-0.8.7-compact.zip and b/tests/ast-parsing/compile/return-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.0-legacy.zip b/tests/ast-parsing/compile/scope-0.4.0-legacy.zip index a6a057b1b..356244ac0 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.0-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.1-legacy.zip b/tests/ast-parsing/compile/scope-0.4.1-legacy.zip index aa14e2cb4..939a6ba78 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.1-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.10-legacy.zip b/tests/ast-parsing/compile/scope-0.4.10-legacy.zip index e91f650fa..993bc5900 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.10-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.11-legacy.zip b/tests/ast-parsing/compile/scope-0.4.11-legacy.zip index 732990b1d..0977817df 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.11-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.12-compact.zip b/tests/ast-parsing/compile/scope-0.4.12-compact.zip index af6cfdfda..4070d276f 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.12-compact.zip and b/tests/ast-parsing/compile/scope-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.12-legacy.zip b/tests/ast-parsing/compile/scope-0.4.12-legacy.zip index ef4825165..20024657c 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.12-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.13-compact.zip b/tests/ast-parsing/compile/scope-0.4.13-compact.zip index 34a97965e..01be983ff 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.13-compact.zip and b/tests/ast-parsing/compile/scope-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.13-legacy.zip b/tests/ast-parsing/compile/scope-0.4.13-legacy.zip index 4190b2fa4..51eb5e1e0 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.13-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.14-compact.zip b/tests/ast-parsing/compile/scope-0.4.14-compact.zip index e1ceb3384..21fb928d5 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.14-compact.zip and b/tests/ast-parsing/compile/scope-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.14-legacy.zip b/tests/ast-parsing/compile/scope-0.4.14-legacy.zip index 09a26faff..a20b26431 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.14-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.15-compact.zip b/tests/ast-parsing/compile/scope-0.4.15-compact.zip index 80cb0ecc9..359405493 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.15-compact.zip and b/tests/ast-parsing/compile/scope-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.15-legacy.zip b/tests/ast-parsing/compile/scope-0.4.15-legacy.zip index acc45b49a..870b14d0b 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.15-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.16-compact.zip b/tests/ast-parsing/compile/scope-0.4.16-compact.zip index 9914953f5..de065818c 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.16-compact.zip and b/tests/ast-parsing/compile/scope-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.16-legacy.zip b/tests/ast-parsing/compile/scope-0.4.16-legacy.zip index b70b0aa25..8f371fe80 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.16-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.17-compact.zip b/tests/ast-parsing/compile/scope-0.4.17-compact.zip index de367bca0..e74e61bf2 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.17-compact.zip and b/tests/ast-parsing/compile/scope-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.17-legacy.zip b/tests/ast-parsing/compile/scope-0.4.17-legacy.zip index 4f06f7c4e..916584dcc 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.17-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.18-compact.zip b/tests/ast-parsing/compile/scope-0.4.18-compact.zip index 049a25b12..bef8f0a4e 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.18-compact.zip and b/tests/ast-parsing/compile/scope-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.18-legacy.zip b/tests/ast-parsing/compile/scope-0.4.18-legacy.zip index f2f07e5d0..4b2793e76 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.18-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.19-compact.zip b/tests/ast-parsing/compile/scope-0.4.19-compact.zip index 29e7e0f22..15cf99b19 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.19-compact.zip and b/tests/ast-parsing/compile/scope-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.19-legacy.zip b/tests/ast-parsing/compile/scope-0.4.19-legacy.zip index 15f297cac..eb4c61a4e 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.19-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.2-legacy.zip b/tests/ast-parsing/compile/scope-0.4.2-legacy.zip index 2c6cfe6af..80e5ba4db 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.2-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.20-compact.zip b/tests/ast-parsing/compile/scope-0.4.20-compact.zip index 7e253de67..b47ae33e7 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.20-compact.zip and b/tests/ast-parsing/compile/scope-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.20-legacy.zip b/tests/ast-parsing/compile/scope-0.4.20-legacy.zip index d9ef65ad5..a8ed523a8 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.20-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.21-compact.zip b/tests/ast-parsing/compile/scope-0.4.21-compact.zip index b74ca173a..ccf3616e4 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.21-compact.zip and b/tests/ast-parsing/compile/scope-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.21-legacy.zip b/tests/ast-parsing/compile/scope-0.4.21-legacy.zip index fc0aa6d0e..21cc51980 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.21-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.22-compact.zip b/tests/ast-parsing/compile/scope-0.4.22-compact.zip index 8aed73307..81cad260c 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.22-compact.zip and b/tests/ast-parsing/compile/scope-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.22-legacy.zip b/tests/ast-parsing/compile/scope-0.4.22-legacy.zip index cb092ad76..f0509a636 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.22-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.23-compact.zip b/tests/ast-parsing/compile/scope-0.4.23-compact.zip index d54bee458..5df762c6d 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.23-compact.zip and b/tests/ast-parsing/compile/scope-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.23-legacy.zip b/tests/ast-parsing/compile/scope-0.4.23-legacy.zip index d16acb2e6..1e774df66 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.23-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.24-compact.zip b/tests/ast-parsing/compile/scope-0.4.24-compact.zip index e143806c0..b1dfedc19 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.24-compact.zip and b/tests/ast-parsing/compile/scope-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.24-legacy.zip b/tests/ast-parsing/compile/scope-0.4.24-legacy.zip index 14470b0b0..9bba27cc5 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.24-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.25-compact.zip b/tests/ast-parsing/compile/scope-0.4.25-compact.zip index b51dcdaae..d26b2cd2d 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.25-compact.zip and b/tests/ast-parsing/compile/scope-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.25-legacy.zip b/tests/ast-parsing/compile/scope-0.4.25-legacy.zip index 0afc89805..d241c5b8c 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.25-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.26-compact.zip b/tests/ast-parsing/compile/scope-0.4.26-compact.zip index e9df1c314..3d29632af 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.26-compact.zip and b/tests/ast-parsing/compile/scope-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.26-legacy.zip b/tests/ast-parsing/compile/scope-0.4.26-legacy.zip index 474645ce0..8f290be15 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.26-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.3-legacy.zip b/tests/ast-parsing/compile/scope-0.4.3-legacy.zip index 19b88b29d..e58b4afd2 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.3-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.4-legacy.zip b/tests/ast-parsing/compile/scope-0.4.4-legacy.zip index c5ab0fccd..2ffbc1dc1 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.4-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.5-legacy.zip b/tests/ast-parsing/compile/scope-0.4.5-legacy.zip index 7b42e142f..cc9ea6635 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.5-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.6-legacy.zip b/tests/ast-parsing/compile/scope-0.4.6-legacy.zip index c4384a275..a21c35f10 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.6-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.7-legacy.zip b/tests/ast-parsing/compile/scope-0.4.7-legacy.zip index 4b61fd724..65fb87889 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.7-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.8-legacy.zip b/tests/ast-parsing/compile/scope-0.4.8-legacy.zip index a8910d1f8..d939b1466 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.8-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.4.9-legacy.zip b/tests/ast-parsing/compile/scope-0.4.9-legacy.zip index 84cbc037b..f06dcee56 100644 Binary files a/tests/ast-parsing/compile/scope-0.4.9-legacy.zip and b/tests/ast-parsing/compile/scope-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.0-compact.zip b/tests/ast-parsing/compile/scope-0.5.0-compact.zip index cc9610e23..efa4b1612 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.0-compact.zip and b/tests/ast-parsing/compile/scope-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.0-legacy.zip b/tests/ast-parsing/compile/scope-0.5.0-legacy.zip index b82770ee4..5f0fba2cb 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.0-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.1-compact.zip b/tests/ast-parsing/compile/scope-0.5.1-compact.zip index edb93dc5a..34d55059c 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.1-compact.zip and b/tests/ast-parsing/compile/scope-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.1-legacy.zip b/tests/ast-parsing/compile/scope-0.5.1-legacy.zip index 0df23c41d..7553e6b6f 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.1-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.10-compact.zip b/tests/ast-parsing/compile/scope-0.5.10-compact.zip index 8011f1d88..5c95bea9d 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.10-compact.zip and b/tests/ast-parsing/compile/scope-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.10-legacy.zip b/tests/ast-parsing/compile/scope-0.5.10-legacy.zip index c118f2947..951072783 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.10-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.11-compact.zip b/tests/ast-parsing/compile/scope-0.5.11-compact.zip index 157ed882f..27d70dc31 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.11-compact.zip and b/tests/ast-parsing/compile/scope-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.11-legacy.zip b/tests/ast-parsing/compile/scope-0.5.11-legacy.zip index f5f775e29..a687301cc 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.11-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.12-compact.zip b/tests/ast-parsing/compile/scope-0.5.12-compact.zip index b5fdffefc..bca094107 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.12-compact.zip and b/tests/ast-parsing/compile/scope-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.12-legacy.zip b/tests/ast-parsing/compile/scope-0.5.12-legacy.zip index 7f0c5ee6f..79394dd30 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.12-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.13-compact.zip b/tests/ast-parsing/compile/scope-0.5.13-compact.zip index 60fd2de8d..2e545b37b 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.13-compact.zip and b/tests/ast-parsing/compile/scope-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.13-legacy.zip b/tests/ast-parsing/compile/scope-0.5.13-legacy.zip index fca5d1f9a..d4ea001a9 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.13-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.14-compact.zip b/tests/ast-parsing/compile/scope-0.5.14-compact.zip index 5cb38f695..f155004fc 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.14-compact.zip and b/tests/ast-parsing/compile/scope-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.14-legacy.zip b/tests/ast-parsing/compile/scope-0.5.14-legacy.zip index 9279ed17e..6fb8dc21e 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.14-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.15-compact.zip b/tests/ast-parsing/compile/scope-0.5.15-compact.zip index a22b7da41..1377fa690 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.15-compact.zip and b/tests/ast-parsing/compile/scope-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.15-legacy.zip b/tests/ast-parsing/compile/scope-0.5.15-legacy.zip index 297a7649c..6cc69dd78 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.15-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.16-compact.zip b/tests/ast-parsing/compile/scope-0.5.16-compact.zip index ec5384a35..ea65d1b46 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.16-compact.zip and b/tests/ast-parsing/compile/scope-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.16-legacy.zip b/tests/ast-parsing/compile/scope-0.5.16-legacy.zip index 942603c4c..e0d1320e2 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.16-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.17-compact.zip b/tests/ast-parsing/compile/scope-0.5.17-compact.zip index ba3bd2f5d..a55a6764b 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.17-compact.zip and b/tests/ast-parsing/compile/scope-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.17-legacy.zip b/tests/ast-parsing/compile/scope-0.5.17-legacy.zip index 6c972d157..8ee053549 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.17-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.2-compact.zip b/tests/ast-parsing/compile/scope-0.5.2-compact.zip index 048a7d050..882ef9aef 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.2-compact.zip and b/tests/ast-parsing/compile/scope-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.2-legacy.zip b/tests/ast-parsing/compile/scope-0.5.2-legacy.zip index df803d453..3e1733edd 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.2-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.3-compact.zip b/tests/ast-parsing/compile/scope-0.5.3-compact.zip index 3b6f68158..8a9244c82 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.3-compact.zip and b/tests/ast-parsing/compile/scope-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.3-legacy.zip b/tests/ast-parsing/compile/scope-0.5.3-legacy.zip index 7ee3fc56d..106473b99 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.3-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.4-compact.zip b/tests/ast-parsing/compile/scope-0.5.4-compact.zip index d44eaf7dc..3c687308b 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.4-compact.zip and b/tests/ast-parsing/compile/scope-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.4-legacy.zip b/tests/ast-parsing/compile/scope-0.5.4-legacy.zip index b9770ce2c..918e93daa 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.4-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.5-compact.zip b/tests/ast-parsing/compile/scope-0.5.5-compact.zip index 627e20905..a0d9cbae9 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.5-compact.zip and b/tests/ast-parsing/compile/scope-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.5-legacy.zip b/tests/ast-parsing/compile/scope-0.5.5-legacy.zip index a8dea9264..823370b7b 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.5-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.6-compact.zip b/tests/ast-parsing/compile/scope-0.5.6-compact.zip index b34984c4e..38a99559f 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.6-compact.zip and b/tests/ast-parsing/compile/scope-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.6-legacy.zip b/tests/ast-parsing/compile/scope-0.5.6-legacy.zip index 06b4ef7a9..ae7d4d377 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.6-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.7-compact.zip b/tests/ast-parsing/compile/scope-0.5.7-compact.zip index 2f08349f5..97bbb347f 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.7-compact.zip and b/tests/ast-parsing/compile/scope-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.7-legacy.zip b/tests/ast-parsing/compile/scope-0.5.7-legacy.zip index eb265b383..3b94f1726 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.7-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.8-compact.zip b/tests/ast-parsing/compile/scope-0.5.8-compact.zip index cf85e42f0..6056d870b 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.8-compact.zip and b/tests/ast-parsing/compile/scope-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.8-legacy.zip b/tests/ast-parsing/compile/scope-0.5.8-legacy.zip index 789bb2962..377db3bbf 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.8-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.9-compact.zip b/tests/ast-parsing/compile/scope-0.5.9-compact.zip index 38dde4623..480ebcfc0 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.9-compact.zip and b/tests/ast-parsing/compile/scope-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.5.9-legacy.zip b/tests/ast-parsing/compile/scope-0.5.9-legacy.zip index e9a44d2c8..729697abe 100644 Binary files a/tests/ast-parsing/compile/scope-0.5.9-legacy.zip and b/tests/ast-parsing/compile/scope-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.0-compact.zip b/tests/ast-parsing/compile/scope-0.6.0-compact.zip index cd41290b9..d42f0c2f6 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.0-compact.zip and b/tests/ast-parsing/compile/scope-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.0-legacy.zip b/tests/ast-parsing/compile/scope-0.6.0-legacy.zip index ceb711999..1ab769253 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.0-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.1-compact.zip b/tests/ast-parsing/compile/scope-0.6.1-compact.zip index 89392774e..78f8f73f7 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.1-compact.zip and b/tests/ast-parsing/compile/scope-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.1-legacy.zip b/tests/ast-parsing/compile/scope-0.6.1-legacy.zip index 163b3d593..e00efd4a9 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.1-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.10-compact.zip b/tests/ast-parsing/compile/scope-0.6.10-compact.zip index 92008790c..a791b4cb5 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.10-compact.zip and b/tests/ast-parsing/compile/scope-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.10-legacy.zip b/tests/ast-parsing/compile/scope-0.6.10-legacy.zip index db60a3e06..b021f8714 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.10-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.11-compact.zip b/tests/ast-parsing/compile/scope-0.6.11-compact.zip index 9196c0d76..94f9747ee 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.11-compact.zip and b/tests/ast-parsing/compile/scope-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.11-legacy.zip b/tests/ast-parsing/compile/scope-0.6.11-legacy.zip index 736efe9b6..3c336cfc9 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.11-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.12-compact.zip b/tests/ast-parsing/compile/scope-0.6.12-compact.zip index 0abed0431..1e58dd044 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.12-compact.zip and b/tests/ast-parsing/compile/scope-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.12-legacy.zip b/tests/ast-parsing/compile/scope-0.6.12-legacy.zip index 4c4c6272c..1bf49f34a 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.12-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.2-compact.zip b/tests/ast-parsing/compile/scope-0.6.2-compact.zip index 73e19481f..11710bf5b 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.2-compact.zip and b/tests/ast-parsing/compile/scope-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.2-legacy.zip b/tests/ast-parsing/compile/scope-0.6.2-legacy.zip index 3177a622c..6302794e7 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.2-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.3-compact.zip b/tests/ast-parsing/compile/scope-0.6.3-compact.zip index a5f3a8308..54d82d3af 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.3-compact.zip and b/tests/ast-parsing/compile/scope-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.3-legacy.zip b/tests/ast-parsing/compile/scope-0.6.3-legacy.zip index 33999230f..fd46d66d5 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.3-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.4-compact.zip b/tests/ast-parsing/compile/scope-0.6.4-compact.zip index 9c60be4db..44d3633b0 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.4-compact.zip and b/tests/ast-parsing/compile/scope-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.4-legacy.zip b/tests/ast-parsing/compile/scope-0.6.4-legacy.zip index 838e16a6b..a1c398a00 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.4-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.5-compact.zip b/tests/ast-parsing/compile/scope-0.6.5-compact.zip index d486f14cb..6143f1116 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.5-compact.zip and b/tests/ast-parsing/compile/scope-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.5-legacy.zip b/tests/ast-parsing/compile/scope-0.6.5-legacy.zip index 3e61783cb..063d41f3d 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.5-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.6-compact.zip b/tests/ast-parsing/compile/scope-0.6.6-compact.zip index 6deb79f17..dd1fc7ee2 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.6-compact.zip and b/tests/ast-parsing/compile/scope-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.6-legacy.zip b/tests/ast-parsing/compile/scope-0.6.6-legacy.zip index dee1a7b63..0faea314d 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.6-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.7-compact.zip b/tests/ast-parsing/compile/scope-0.6.7-compact.zip index 28b43341a..bd185a9bd 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.7-compact.zip and b/tests/ast-parsing/compile/scope-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.7-legacy.zip b/tests/ast-parsing/compile/scope-0.6.7-legacy.zip index b700bfe6d..cf7f387be 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.7-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.8-compact.zip b/tests/ast-parsing/compile/scope-0.6.8-compact.zip index cb3d38147..dc012e6b2 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.8-compact.zip and b/tests/ast-parsing/compile/scope-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.8-legacy.zip b/tests/ast-parsing/compile/scope-0.6.8-legacy.zip index 254c9a8ae..8cb508aa0 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.8-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.9-compact.zip b/tests/ast-parsing/compile/scope-0.6.9-compact.zip index 430af6f5b..02189153e 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.9-compact.zip and b/tests/ast-parsing/compile/scope-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.6.9-legacy.zip b/tests/ast-parsing/compile/scope-0.6.9-legacy.zip index 4a75c5ca0..b29b91763 100644 Binary files a/tests/ast-parsing/compile/scope-0.6.9-legacy.zip and b/tests/ast-parsing/compile/scope-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.0-compact.zip b/tests/ast-parsing/compile/scope-0.7.0-compact.zip index 4d9e86b84..51cf606d8 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.0-compact.zip and b/tests/ast-parsing/compile/scope-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.0-legacy.zip b/tests/ast-parsing/compile/scope-0.7.0-legacy.zip index 3a1f5fa19..9d8cabddb 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.0-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.1-compact.zip b/tests/ast-parsing/compile/scope-0.7.1-compact.zip index ec4849f01..86af8afe7 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.1-compact.zip and b/tests/ast-parsing/compile/scope-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.1-legacy.zip b/tests/ast-parsing/compile/scope-0.7.1-legacy.zip index 6c8dd8107..3b041ec3b 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.1-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.2-compact.zip b/tests/ast-parsing/compile/scope-0.7.2-compact.zip index 381a78ca7..fcd5c820b 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.2-compact.zip and b/tests/ast-parsing/compile/scope-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.2-legacy.zip b/tests/ast-parsing/compile/scope-0.7.2-legacy.zip index e1455553f..54fbfea14 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.2-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.3-compact.zip b/tests/ast-parsing/compile/scope-0.7.3-compact.zip index 095eeb8fe..d512a34d0 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.3-compact.zip and b/tests/ast-parsing/compile/scope-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.3-legacy.zip b/tests/ast-parsing/compile/scope-0.7.3-legacy.zip index e0d2cf09f..1d9425197 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.3-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.4-compact.zip b/tests/ast-parsing/compile/scope-0.7.4-compact.zip index 50cce4c64..67ef85f4d 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.4-compact.zip and b/tests/ast-parsing/compile/scope-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.4-legacy.zip b/tests/ast-parsing/compile/scope-0.7.4-legacy.zip index 5d68048d1..38a71b722 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.4-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.5-compact.zip b/tests/ast-parsing/compile/scope-0.7.5-compact.zip index 88f33af6e..db9add49d 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.5-compact.zip and b/tests/ast-parsing/compile/scope-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.5-legacy.zip b/tests/ast-parsing/compile/scope-0.7.5-legacy.zip index 65a56a8ff..f4d38782b 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.5-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.6-compact.zip b/tests/ast-parsing/compile/scope-0.7.6-compact.zip index 0670178c7..4d7928fcb 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.6-compact.zip and b/tests/ast-parsing/compile/scope-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.7.6-legacy.zip b/tests/ast-parsing/compile/scope-0.7.6-legacy.zip index e02d1fe27..2f8274373 100644 Binary files a/tests/ast-parsing/compile/scope-0.7.6-legacy.zip and b/tests/ast-parsing/compile/scope-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.0-compact.zip b/tests/ast-parsing/compile/scope-0.8.0-compact.zip index 09511f28e..81a92db6e 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.0-compact.zip and b/tests/ast-parsing/compile/scope-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.1-compact.zip b/tests/ast-parsing/compile/scope-0.8.1-compact.zip index e25efc3aa..af4d906e3 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.1-compact.zip and b/tests/ast-parsing/compile/scope-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.2-compact.zip b/tests/ast-parsing/compile/scope-0.8.2-compact.zip index 31d4785bd..0a15f652c 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.2-compact.zip and b/tests/ast-parsing/compile/scope-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.3-compact.zip b/tests/ast-parsing/compile/scope-0.8.3-compact.zip index 90dad8f70..b696c83da 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.3-compact.zip and b/tests/ast-parsing/compile/scope-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.4-compact.zip b/tests/ast-parsing/compile/scope-0.8.4-compact.zip index fc6d95cc2..a61132086 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.4-compact.zip and b/tests/ast-parsing/compile/scope-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.5-compact.zip b/tests/ast-parsing/compile/scope-0.8.5-compact.zip index 3c42f8354..dacc54b7a 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.5-compact.zip and b/tests/ast-parsing/compile/scope-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.6-compact.zip b/tests/ast-parsing/compile/scope-0.8.6-compact.zip index ddb264959..6b6a448dc 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.6-compact.zip and b/tests/ast-parsing/compile/scope-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/scope-0.8.7-compact.zip b/tests/ast-parsing/compile/scope-0.8.7-compact.zip index c74f7b718..461a1ab41 100644 Binary files a/tests/ast-parsing/compile/scope-0.8.7-compact.zip and b/tests/ast-parsing/compile/scope-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.0-legacy.zip b/tests/ast-parsing/compile/struct-0.4.0-legacy.zip index 288e4e367..8cc83e5f4 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.0-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.1-legacy.zip b/tests/ast-parsing/compile/struct-0.4.1-legacy.zip index 117436bc1..af4af56db 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.1-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.10-legacy.zip b/tests/ast-parsing/compile/struct-0.4.10-legacy.zip index 616a7bd63..7b984aeed 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.10-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.11-legacy.zip b/tests/ast-parsing/compile/struct-0.4.11-legacy.zip index 03ec2686b..b86bc4c22 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.11-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.12-compact.zip b/tests/ast-parsing/compile/struct-0.4.12-compact.zip index 68ceb784f..90218f3c0 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.12-compact.zip and b/tests/ast-parsing/compile/struct-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.12-legacy.zip b/tests/ast-parsing/compile/struct-0.4.12-legacy.zip index d5e48de0d..62a8e6f70 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.12-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.13-compact.zip b/tests/ast-parsing/compile/struct-0.4.13-compact.zip index 1a841b57d..1ddec4ba9 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.13-compact.zip and b/tests/ast-parsing/compile/struct-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.13-legacy.zip b/tests/ast-parsing/compile/struct-0.4.13-legacy.zip index bd32af6c5..f701ceff7 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.13-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.14-compact.zip b/tests/ast-parsing/compile/struct-0.4.14-compact.zip index f063ee8b1..40738ee92 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.14-compact.zip and b/tests/ast-parsing/compile/struct-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.14-legacy.zip b/tests/ast-parsing/compile/struct-0.4.14-legacy.zip index 311cb1f64..a1b7f8022 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.14-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.15-compact.zip b/tests/ast-parsing/compile/struct-0.4.15-compact.zip index 432f88e0a..cd08e278d 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.15-compact.zip and b/tests/ast-parsing/compile/struct-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.15-legacy.zip b/tests/ast-parsing/compile/struct-0.4.15-legacy.zip index 0ac46cbb2..0d3d8245b 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.15-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.16-compact.zip b/tests/ast-parsing/compile/struct-0.4.16-compact.zip index aa8060484..fd2d58494 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.16-compact.zip and b/tests/ast-parsing/compile/struct-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.16-legacy.zip b/tests/ast-parsing/compile/struct-0.4.16-legacy.zip index 429318d51..5411b1609 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.16-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.17-compact.zip b/tests/ast-parsing/compile/struct-0.4.17-compact.zip index fe530dc6e..c77d12f38 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.17-compact.zip and b/tests/ast-parsing/compile/struct-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.17-legacy.zip b/tests/ast-parsing/compile/struct-0.4.17-legacy.zip index a26eb8af2..d1374c49d 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.17-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.18-compact.zip b/tests/ast-parsing/compile/struct-0.4.18-compact.zip index eec5a8e8d..6f00b677b 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.18-compact.zip and b/tests/ast-parsing/compile/struct-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.18-legacy.zip b/tests/ast-parsing/compile/struct-0.4.18-legacy.zip index 34652c73e..09ec3ee86 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.18-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.19-compact.zip b/tests/ast-parsing/compile/struct-0.4.19-compact.zip index c6e8120a2..fe40e483b 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.19-compact.zip and b/tests/ast-parsing/compile/struct-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.19-legacy.zip b/tests/ast-parsing/compile/struct-0.4.19-legacy.zip index 195165310..937aa4a08 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.19-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.2-legacy.zip b/tests/ast-parsing/compile/struct-0.4.2-legacy.zip index 9a7895234..3d68d28dc 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.2-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.20-compact.zip b/tests/ast-parsing/compile/struct-0.4.20-compact.zip index 7bef35c45..bafcc53fc 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.20-compact.zip and b/tests/ast-parsing/compile/struct-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.20-legacy.zip b/tests/ast-parsing/compile/struct-0.4.20-legacy.zip index 6373101df..7d092161d 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.20-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.21-compact.zip b/tests/ast-parsing/compile/struct-0.4.21-compact.zip index b2b806745..56e2caf88 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.21-compact.zip and b/tests/ast-parsing/compile/struct-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.21-legacy.zip b/tests/ast-parsing/compile/struct-0.4.21-legacy.zip index c164552c9..ff8e45789 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.21-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.22-compact.zip b/tests/ast-parsing/compile/struct-0.4.22-compact.zip index f3644031c..b28b2ba37 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.22-compact.zip and b/tests/ast-parsing/compile/struct-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.22-legacy.zip b/tests/ast-parsing/compile/struct-0.4.22-legacy.zip index b16955721..f063a80f7 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.22-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.23-compact.zip b/tests/ast-parsing/compile/struct-0.4.23-compact.zip index 4060d2089..8f8c572fc 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.23-compact.zip and b/tests/ast-parsing/compile/struct-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.23-legacy.zip b/tests/ast-parsing/compile/struct-0.4.23-legacy.zip index f2a70637f..aac11bbdd 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.23-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.24-compact.zip b/tests/ast-parsing/compile/struct-0.4.24-compact.zip index 7efef2bf9..37cdc7707 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.24-compact.zip and b/tests/ast-parsing/compile/struct-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.24-legacy.zip b/tests/ast-parsing/compile/struct-0.4.24-legacy.zip index 3dca7020c..c41f477ee 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.24-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.25-compact.zip b/tests/ast-parsing/compile/struct-0.4.25-compact.zip index 742cf0e98..031688685 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.25-compact.zip and b/tests/ast-parsing/compile/struct-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.25-legacy.zip b/tests/ast-parsing/compile/struct-0.4.25-legacy.zip index 4d65740b1..49e72862a 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.25-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.26-compact.zip b/tests/ast-parsing/compile/struct-0.4.26-compact.zip index 0c0d5216d..f0c79921f 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.26-compact.zip and b/tests/ast-parsing/compile/struct-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.26-legacy.zip b/tests/ast-parsing/compile/struct-0.4.26-legacy.zip index 36b7a5f00..9a7550195 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.26-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.3-legacy.zip b/tests/ast-parsing/compile/struct-0.4.3-legacy.zip index f710ea7d4..563a3024c 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.3-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.4-legacy.zip b/tests/ast-parsing/compile/struct-0.4.4-legacy.zip index 0b034c084..367c808e1 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.4-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.5-legacy.zip b/tests/ast-parsing/compile/struct-0.4.5-legacy.zip index 494257aec..9354ed4eb 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.5-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.6-legacy.zip b/tests/ast-parsing/compile/struct-0.4.6-legacy.zip index b12d70263..57f7818c1 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.6-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.7-legacy.zip b/tests/ast-parsing/compile/struct-0.4.7-legacy.zip index 035d29a00..3c904fb7e 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.7-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.8-legacy.zip b/tests/ast-parsing/compile/struct-0.4.8-legacy.zip index 325d960ed..856d696af 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.8-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.4.9-legacy.zip b/tests/ast-parsing/compile/struct-0.4.9-legacy.zip index 9cf95504c..85a5a5376 100644 Binary files a/tests/ast-parsing/compile/struct-0.4.9-legacy.zip and b/tests/ast-parsing/compile/struct-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.0-compact.zip b/tests/ast-parsing/compile/struct-0.5.0-compact.zip index eddc2573e..7f136891d 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.0-compact.zip and b/tests/ast-parsing/compile/struct-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.0-legacy.zip b/tests/ast-parsing/compile/struct-0.5.0-legacy.zip index aee8f3311..bd80e9754 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.0-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.1-compact.zip b/tests/ast-parsing/compile/struct-0.5.1-compact.zip index 5f0f790e2..92d5a9187 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.1-compact.zip and b/tests/ast-parsing/compile/struct-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.1-legacy.zip b/tests/ast-parsing/compile/struct-0.5.1-legacy.zip index f565f4219..cd9820500 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.1-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.10-compact.zip b/tests/ast-parsing/compile/struct-0.5.10-compact.zip index 16cd90510..d5cf6b646 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.10-compact.zip and b/tests/ast-parsing/compile/struct-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.10-legacy.zip b/tests/ast-parsing/compile/struct-0.5.10-legacy.zip index 2c968006c..33696e1b7 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.10-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.11-compact.zip b/tests/ast-parsing/compile/struct-0.5.11-compact.zip index 1588bdea0..cfcfc68a0 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.11-compact.zip and b/tests/ast-parsing/compile/struct-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.11-legacy.zip b/tests/ast-parsing/compile/struct-0.5.11-legacy.zip index a34b98ccf..75efe4ef7 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.11-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.12-compact.zip b/tests/ast-parsing/compile/struct-0.5.12-compact.zip index 9fca62b40..67e547a81 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.12-compact.zip and b/tests/ast-parsing/compile/struct-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.12-legacy.zip b/tests/ast-parsing/compile/struct-0.5.12-legacy.zip index c73d3ec90..b98f76e5d 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.12-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.13-compact.zip b/tests/ast-parsing/compile/struct-0.5.13-compact.zip index a24bcdce7..c1fd7eb43 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.13-compact.zip and b/tests/ast-parsing/compile/struct-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.13-legacy.zip b/tests/ast-parsing/compile/struct-0.5.13-legacy.zip index 3618636aa..3088ef78c 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.13-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.14-compact.zip b/tests/ast-parsing/compile/struct-0.5.14-compact.zip index 9887f78ee..c8e7d9d8b 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.14-compact.zip and b/tests/ast-parsing/compile/struct-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.14-legacy.zip b/tests/ast-parsing/compile/struct-0.5.14-legacy.zip index afa71902a..e90b3221a 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.14-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.15-compact.zip b/tests/ast-parsing/compile/struct-0.5.15-compact.zip index 2dd3c4639..d5a2c28cf 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.15-compact.zip and b/tests/ast-parsing/compile/struct-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.15-legacy.zip b/tests/ast-parsing/compile/struct-0.5.15-legacy.zip index 064a30502..edabd5b22 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.15-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.16-compact.zip b/tests/ast-parsing/compile/struct-0.5.16-compact.zip index ca9f71020..11a1264a4 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.16-compact.zip and b/tests/ast-parsing/compile/struct-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.16-legacy.zip b/tests/ast-parsing/compile/struct-0.5.16-legacy.zip index ee0a7c27a..aae2961bd 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.16-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.17-compact.zip b/tests/ast-parsing/compile/struct-0.5.17-compact.zip index a807f2f80..6e019d86d 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.17-compact.zip and b/tests/ast-parsing/compile/struct-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.17-legacy.zip b/tests/ast-parsing/compile/struct-0.5.17-legacy.zip index 718d215a0..93ab6a1f6 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.17-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.2-compact.zip b/tests/ast-parsing/compile/struct-0.5.2-compact.zip index dc32fbe2d..a519997c3 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.2-compact.zip and b/tests/ast-parsing/compile/struct-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.2-legacy.zip b/tests/ast-parsing/compile/struct-0.5.2-legacy.zip index 36a3dfbd4..f2457adab 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.2-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.3-compact.zip b/tests/ast-parsing/compile/struct-0.5.3-compact.zip index d6d1b8680..297f21f2b 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.3-compact.zip and b/tests/ast-parsing/compile/struct-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.3-legacy.zip b/tests/ast-parsing/compile/struct-0.5.3-legacy.zip index 8f63e78e4..7a9bb75a2 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.3-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.4-compact.zip b/tests/ast-parsing/compile/struct-0.5.4-compact.zip index 678cd5690..5a73941bf 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.4-compact.zip and b/tests/ast-parsing/compile/struct-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.4-legacy.zip b/tests/ast-parsing/compile/struct-0.5.4-legacy.zip index 1c9df380f..d554b44ce 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.4-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.5-compact.zip b/tests/ast-parsing/compile/struct-0.5.5-compact.zip index e4660c7d0..1d63e4770 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.5-compact.zip and b/tests/ast-parsing/compile/struct-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.5-legacy.zip b/tests/ast-parsing/compile/struct-0.5.5-legacy.zip index 3d827ffcf..a632cdc4e 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.5-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.6-compact.zip b/tests/ast-parsing/compile/struct-0.5.6-compact.zip index f0911fe6d..612e4d840 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.6-compact.zip and b/tests/ast-parsing/compile/struct-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.6-legacy.zip b/tests/ast-parsing/compile/struct-0.5.6-legacy.zip index c477ada14..fcef0f7e7 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.6-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.7-compact.zip b/tests/ast-parsing/compile/struct-0.5.7-compact.zip index eba136a34..5f56ead4a 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.7-compact.zip and b/tests/ast-parsing/compile/struct-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.7-legacy.zip b/tests/ast-parsing/compile/struct-0.5.7-legacy.zip index 6c84886cf..81f637702 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.7-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.8-compact.zip b/tests/ast-parsing/compile/struct-0.5.8-compact.zip index 502a9cd60..3459902c8 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.8-compact.zip and b/tests/ast-parsing/compile/struct-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.8-legacy.zip b/tests/ast-parsing/compile/struct-0.5.8-legacy.zip index 912e5ef36..1cb4529e2 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.8-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.9-compact.zip b/tests/ast-parsing/compile/struct-0.5.9-compact.zip index 416c3ba0d..5fb8a7cb3 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.9-compact.zip and b/tests/ast-parsing/compile/struct-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.5.9-legacy.zip b/tests/ast-parsing/compile/struct-0.5.9-legacy.zip index 87b17f6fe..4b0b4f68c 100644 Binary files a/tests/ast-parsing/compile/struct-0.5.9-legacy.zip and b/tests/ast-parsing/compile/struct-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.0-compact.zip b/tests/ast-parsing/compile/struct-0.6.0-compact.zip index 8adcae241..932026b5d 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.0-compact.zip and b/tests/ast-parsing/compile/struct-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.0-legacy.zip b/tests/ast-parsing/compile/struct-0.6.0-legacy.zip index ccf2d51d8..8440df93a 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.0-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.1-compact.zip b/tests/ast-parsing/compile/struct-0.6.1-compact.zip index 025016cd3..69de5519c 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.1-compact.zip and b/tests/ast-parsing/compile/struct-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.1-legacy.zip b/tests/ast-parsing/compile/struct-0.6.1-legacy.zip index db148b455..16435d39a 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.1-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.10-compact.zip b/tests/ast-parsing/compile/struct-0.6.10-compact.zip index a6a5f3736..b81447842 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.10-compact.zip and b/tests/ast-parsing/compile/struct-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.10-legacy.zip b/tests/ast-parsing/compile/struct-0.6.10-legacy.zip index 3550d998f..fa529c45a 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.10-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.11-compact.zip b/tests/ast-parsing/compile/struct-0.6.11-compact.zip index 55cf16b82..733af2e01 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.11-compact.zip and b/tests/ast-parsing/compile/struct-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.11-legacy.zip b/tests/ast-parsing/compile/struct-0.6.11-legacy.zip index 7311f5250..baf9d6e94 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.11-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.12-compact.zip b/tests/ast-parsing/compile/struct-0.6.12-compact.zip index 2bf0f177a..61547ca47 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.12-compact.zip and b/tests/ast-parsing/compile/struct-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.12-legacy.zip b/tests/ast-parsing/compile/struct-0.6.12-legacy.zip index 885d26daf..51a423d2f 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.12-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.2-compact.zip b/tests/ast-parsing/compile/struct-0.6.2-compact.zip index f98832c4b..f711bc713 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.2-compact.zip and b/tests/ast-parsing/compile/struct-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.2-legacy.zip b/tests/ast-parsing/compile/struct-0.6.2-legacy.zip index d50d65bb4..3ce8b10c8 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.2-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.3-compact.zip b/tests/ast-parsing/compile/struct-0.6.3-compact.zip index 9ceb95fcb..5229f1057 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.3-compact.zip and b/tests/ast-parsing/compile/struct-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.3-legacy.zip b/tests/ast-parsing/compile/struct-0.6.3-legacy.zip index 7b0c2a37c..7fda73baf 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.3-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.4-compact.zip b/tests/ast-parsing/compile/struct-0.6.4-compact.zip index 44d9a5550..35b2bc048 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.4-compact.zip and b/tests/ast-parsing/compile/struct-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.4-legacy.zip b/tests/ast-parsing/compile/struct-0.6.4-legacy.zip index c82932b09..40604ee70 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.4-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.5-compact.zip b/tests/ast-parsing/compile/struct-0.6.5-compact.zip index 27ea03236..a065e033e 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.5-compact.zip and b/tests/ast-parsing/compile/struct-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.5-legacy.zip b/tests/ast-parsing/compile/struct-0.6.5-legacy.zip index 9ad0ed08f..6f4d064bb 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.5-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.6-compact.zip b/tests/ast-parsing/compile/struct-0.6.6-compact.zip index 657a428fd..58c55e0cc 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.6-compact.zip and b/tests/ast-parsing/compile/struct-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.6-legacy.zip b/tests/ast-parsing/compile/struct-0.6.6-legacy.zip index 9bea8c8c3..7eb0ba3b4 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.6-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.7-compact.zip b/tests/ast-parsing/compile/struct-0.6.7-compact.zip index d85382151..38e2b9067 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.7-compact.zip and b/tests/ast-parsing/compile/struct-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.7-legacy.zip b/tests/ast-parsing/compile/struct-0.6.7-legacy.zip index 3a1f3dbec..14a0c86bb 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.7-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.8-compact.zip b/tests/ast-parsing/compile/struct-0.6.8-compact.zip index 775ae26ff..4987c0dc8 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.8-compact.zip and b/tests/ast-parsing/compile/struct-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.8-legacy.zip b/tests/ast-parsing/compile/struct-0.6.8-legacy.zip index 67845884d..62d12c430 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.8-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.9-compact.zip b/tests/ast-parsing/compile/struct-0.6.9-compact.zip index 3c34c6e4e..32bc6bfc9 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.9-compact.zip and b/tests/ast-parsing/compile/struct-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.6.9-legacy.zip b/tests/ast-parsing/compile/struct-0.6.9-legacy.zip index 1eb410c4c..49fb58348 100644 Binary files a/tests/ast-parsing/compile/struct-0.6.9-legacy.zip and b/tests/ast-parsing/compile/struct-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.0-compact.zip b/tests/ast-parsing/compile/struct-0.7.0-compact.zip index 48f21d90f..e86098804 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.0-compact.zip and b/tests/ast-parsing/compile/struct-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.0-legacy.zip b/tests/ast-parsing/compile/struct-0.7.0-legacy.zip index bbdf91dac..6e49df933 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.0-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.1-compact.zip b/tests/ast-parsing/compile/struct-0.7.1-compact.zip index 728cdcdf3..6bb819338 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.1-compact.zip and b/tests/ast-parsing/compile/struct-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.1-legacy.zip b/tests/ast-parsing/compile/struct-0.7.1-legacy.zip index 12980e593..561ceaeab 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.1-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.2-compact.zip b/tests/ast-parsing/compile/struct-0.7.2-compact.zip index d168ec452..79c1257ae 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.2-compact.zip and b/tests/ast-parsing/compile/struct-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.2-legacy.zip b/tests/ast-parsing/compile/struct-0.7.2-legacy.zip index 2e6a6fd2f..e7c29621f 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.2-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.3-compact.zip b/tests/ast-parsing/compile/struct-0.7.3-compact.zip index 39743668f..96e9b1002 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.3-compact.zip and b/tests/ast-parsing/compile/struct-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.3-legacy.zip b/tests/ast-parsing/compile/struct-0.7.3-legacy.zip index adbb6f0fc..1cd71cece 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.3-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.4-compact.zip b/tests/ast-parsing/compile/struct-0.7.4-compact.zip index 7123f96f3..8ca389982 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.4-compact.zip and b/tests/ast-parsing/compile/struct-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.4-legacy.zip b/tests/ast-parsing/compile/struct-0.7.4-legacy.zip index c82020769..fa4b9973f 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.4-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.5-compact.zip b/tests/ast-parsing/compile/struct-0.7.5-compact.zip index 74b0fbf88..f225f3537 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.5-compact.zip and b/tests/ast-parsing/compile/struct-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.5-legacy.zip b/tests/ast-parsing/compile/struct-0.7.5-legacy.zip index 0bc46b677..b30aa5379 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.5-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.6-compact.zip b/tests/ast-parsing/compile/struct-0.7.6-compact.zip index 8123103c2..29f16fe35 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.6-compact.zip and b/tests/ast-parsing/compile/struct-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.7.6-legacy.zip b/tests/ast-parsing/compile/struct-0.7.6-legacy.zip index ad0e483fd..e203ff21d 100644 Binary files a/tests/ast-parsing/compile/struct-0.7.6-legacy.zip and b/tests/ast-parsing/compile/struct-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.0-compact.zip b/tests/ast-parsing/compile/struct-0.8.0-compact.zip index 01762b1e8..ebeb0773c 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.0-compact.zip and b/tests/ast-parsing/compile/struct-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.1-compact.zip b/tests/ast-parsing/compile/struct-0.8.1-compact.zip index 7ce4d7baa..199e6cbdf 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.1-compact.zip and b/tests/ast-parsing/compile/struct-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.2-compact.zip b/tests/ast-parsing/compile/struct-0.8.2-compact.zip index 43b7d5769..d538d0d59 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.2-compact.zip and b/tests/ast-parsing/compile/struct-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.3-compact.zip b/tests/ast-parsing/compile/struct-0.8.3-compact.zip index 1630d47a1..052ed5cfb 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.3-compact.zip and b/tests/ast-parsing/compile/struct-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.4-compact.zip b/tests/ast-parsing/compile/struct-0.8.4-compact.zip index 5ed645236..8e96da797 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.4-compact.zip and b/tests/ast-parsing/compile/struct-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.5-compact.zip b/tests/ast-parsing/compile/struct-0.8.5-compact.zip index e1f97868b..b7bf0e01f 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.5-compact.zip and b/tests/ast-parsing/compile/struct-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.6-compact.zip b/tests/ast-parsing/compile/struct-0.8.6-compact.zip index dc6cab036..1f6a7e25d 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.6-compact.zip and b/tests/ast-parsing/compile/struct-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/struct-0.8.7-compact.zip b/tests/ast-parsing/compile/struct-0.8.7-compact.zip index 903a84dac..948d9dcaa 100644 Binary files a/tests/ast-parsing/compile/struct-0.8.7-compact.zip and b/tests/ast-parsing/compile/struct-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.0-legacy.zip b/tests/ast-parsing/compile/throw-0.4.0-legacy.zip index 1f72882e5..63d17ec9f 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.0-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.1-legacy.zip b/tests/ast-parsing/compile/throw-0.4.1-legacy.zip index ec1e44eff..3f1e40222 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.1-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.10-legacy.zip b/tests/ast-parsing/compile/throw-0.4.10-legacy.zip index 70c629d21..9442253e6 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.10-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.11-legacy.zip b/tests/ast-parsing/compile/throw-0.4.11-legacy.zip index 677260ea3..be5a2d17c 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.11-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.12-compact.zip b/tests/ast-parsing/compile/throw-0.4.12-compact.zip index ee9924dbc..561eda211 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.12-compact.zip and b/tests/ast-parsing/compile/throw-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.12-legacy.zip b/tests/ast-parsing/compile/throw-0.4.12-legacy.zip index c05a5b6c4..b239f1504 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.12-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.13-compact.zip b/tests/ast-parsing/compile/throw-0.4.13-compact.zip index 7f65ce57f..9d55aaeb6 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.13-compact.zip and b/tests/ast-parsing/compile/throw-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.13-legacy.zip b/tests/ast-parsing/compile/throw-0.4.13-legacy.zip index fa6055feb..533f707f2 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.13-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.14-compact.zip b/tests/ast-parsing/compile/throw-0.4.14-compact.zip index b97cd9af6..3bb5577ff 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.14-compact.zip and b/tests/ast-parsing/compile/throw-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.14-legacy.zip b/tests/ast-parsing/compile/throw-0.4.14-legacy.zip index 008c41b2a..7195bdcbf 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.14-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.15-compact.zip b/tests/ast-parsing/compile/throw-0.4.15-compact.zip index 6e4e3ac0c..81754758e 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.15-compact.zip and b/tests/ast-parsing/compile/throw-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.15-legacy.zip b/tests/ast-parsing/compile/throw-0.4.15-legacy.zip index 7aa645fb1..6f6867430 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.15-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.16-compact.zip b/tests/ast-parsing/compile/throw-0.4.16-compact.zip index c8537256d..348b9d534 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.16-compact.zip and b/tests/ast-parsing/compile/throw-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.16-legacy.zip b/tests/ast-parsing/compile/throw-0.4.16-legacy.zip index 2a8c5783e..ef8409128 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.16-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.17-compact.zip b/tests/ast-parsing/compile/throw-0.4.17-compact.zip index 77034c892..ec330a3cc 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.17-compact.zip and b/tests/ast-parsing/compile/throw-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.17-legacy.zip b/tests/ast-parsing/compile/throw-0.4.17-legacy.zip index 431f84e25..5be25c72e 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.17-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.18-compact.zip b/tests/ast-parsing/compile/throw-0.4.18-compact.zip index 426fe3e23..5ef990739 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.18-compact.zip and b/tests/ast-parsing/compile/throw-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.18-legacy.zip b/tests/ast-parsing/compile/throw-0.4.18-legacy.zip index e7058ab49..dba31f635 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.18-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.19-compact.zip b/tests/ast-parsing/compile/throw-0.4.19-compact.zip index 51391ff12..0dafe4f89 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.19-compact.zip and b/tests/ast-parsing/compile/throw-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.19-legacy.zip b/tests/ast-parsing/compile/throw-0.4.19-legacy.zip index 0bf6d5907..d59be1849 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.19-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.2-legacy.zip b/tests/ast-parsing/compile/throw-0.4.2-legacy.zip index 46e905640..a16a61a42 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.2-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.20-compact.zip b/tests/ast-parsing/compile/throw-0.4.20-compact.zip index a082a2287..b7586212e 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.20-compact.zip and b/tests/ast-parsing/compile/throw-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.20-legacy.zip b/tests/ast-parsing/compile/throw-0.4.20-legacy.zip index b440f357b..cfde7bd82 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.20-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.21-compact.zip b/tests/ast-parsing/compile/throw-0.4.21-compact.zip index 482273581..e04801dde 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.21-compact.zip and b/tests/ast-parsing/compile/throw-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.21-legacy.zip b/tests/ast-parsing/compile/throw-0.4.21-legacy.zip index 4c825dd49..4dff9cea2 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.21-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.22-compact.zip b/tests/ast-parsing/compile/throw-0.4.22-compact.zip index b00b05de9..057ba0a5b 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.22-compact.zip and b/tests/ast-parsing/compile/throw-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.22-legacy.zip b/tests/ast-parsing/compile/throw-0.4.22-legacy.zip index ff4f9db5e..21ab6948c 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.22-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.23-compact.zip b/tests/ast-parsing/compile/throw-0.4.23-compact.zip index 74cf50726..b3fd5b2a6 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.23-compact.zip and b/tests/ast-parsing/compile/throw-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.23-legacy.zip b/tests/ast-parsing/compile/throw-0.4.23-legacy.zip index f4ec3a9b4..be9578687 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.23-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.24-compact.zip b/tests/ast-parsing/compile/throw-0.4.24-compact.zip index 80454c349..be6df2df7 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.24-compact.zip and b/tests/ast-parsing/compile/throw-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.24-legacy.zip b/tests/ast-parsing/compile/throw-0.4.24-legacy.zip index 15960bc5f..4a05575bb 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.24-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.25-compact.zip b/tests/ast-parsing/compile/throw-0.4.25-compact.zip index a40f78fb8..6df28f6b5 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.25-compact.zip and b/tests/ast-parsing/compile/throw-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.25-legacy.zip b/tests/ast-parsing/compile/throw-0.4.25-legacy.zip index 558210fda..366cac73b 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.25-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.26-compact.zip b/tests/ast-parsing/compile/throw-0.4.26-compact.zip index 508549226..ab9369393 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.26-compact.zip and b/tests/ast-parsing/compile/throw-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.26-legacy.zip b/tests/ast-parsing/compile/throw-0.4.26-legacy.zip index 71cd5eb5b..6bc646135 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.26-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.3-legacy.zip b/tests/ast-parsing/compile/throw-0.4.3-legacy.zip index b7d2a02ed..10f2da39a 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.3-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.4-legacy.zip b/tests/ast-parsing/compile/throw-0.4.4-legacy.zip index 1d89a14cb..68b59048e 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.4-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.5-legacy.zip b/tests/ast-parsing/compile/throw-0.4.5-legacy.zip index db65ca705..7929d18ac 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.5-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.6-legacy.zip b/tests/ast-parsing/compile/throw-0.4.6-legacy.zip index 81377f0ae..4d4095b49 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.6-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.7-legacy.zip b/tests/ast-parsing/compile/throw-0.4.7-legacy.zip index a6705027b..8543e1fd9 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.7-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.8-legacy.zip b/tests/ast-parsing/compile/throw-0.4.8-legacy.zip index e55466809..fe01f74ce 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.8-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.4.9-legacy.zip b/tests/ast-parsing/compile/throw-0.4.9-legacy.zip index 3d68b5b66..449bb85ae 100644 Binary files a/tests/ast-parsing/compile/throw-0.4.9-legacy.zip and b/tests/ast-parsing/compile/throw-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.0-compact.zip b/tests/ast-parsing/compile/throw-0.5.0-compact.zip index 805b4e168..d85aeefda 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.0-compact.zip and b/tests/ast-parsing/compile/throw-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.0-legacy.zip b/tests/ast-parsing/compile/throw-0.5.0-legacy.zip index 284c7b2e0..b37182331 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.0-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.1-compact.zip b/tests/ast-parsing/compile/throw-0.5.1-compact.zip index fbaac3fb0..3aff1d24f 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.1-compact.zip and b/tests/ast-parsing/compile/throw-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.1-legacy.zip b/tests/ast-parsing/compile/throw-0.5.1-legacy.zip index 44ddc1c1f..48e618168 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.1-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.10-compact.zip b/tests/ast-parsing/compile/throw-0.5.10-compact.zip index 701f0b960..92b9e256a 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.10-compact.zip and b/tests/ast-parsing/compile/throw-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.10-legacy.zip b/tests/ast-parsing/compile/throw-0.5.10-legacy.zip index 4636d4516..2b77431f7 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.10-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.11-compact.zip b/tests/ast-parsing/compile/throw-0.5.11-compact.zip index 3f52ef422..0a5b29927 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.11-compact.zip and b/tests/ast-parsing/compile/throw-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.11-legacy.zip b/tests/ast-parsing/compile/throw-0.5.11-legacy.zip index 5bfbff84c..34782e08c 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.11-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.12-compact.zip b/tests/ast-parsing/compile/throw-0.5.12-compact.zip index 7b76ea36d..983a04b7a 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.12-compact.zip and b/tests/ast-parsing/compile/throw-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.12-legacy.zip b/tests/ast-parsing/compile/throw-0.5.12-legacy.zip index 172283cc3..3b0ecbee7 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.12-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.13-compact.zip b/tests/ast-parsing/compile/throw-0.5.13-compact.zip index 9045354e1..7c9fe6cf5 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.13-compact.zip and b/tests/ast-parsing/compile/throw-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.13-legacy.zip b/tests/ast-parsing/compile/throw-0.5.13-legacy.zip index 091c4cd7f..0ff39557e 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.13-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.14-compact.zip b/tests/ast-parsing/compile/throw-0.5.14-compact.zip index b4a41a543..5e6bd3db9 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.14-compact.zip and b/tests/ast-parsing/compile/throw-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.14-legacy.zip b/tests/ast-parsing/compile/throw-0.5.14-legacy.zip index b5a22f782..ab5c34e34 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.14-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.15-compact.zip b/tests/ast-parsing/compile/throw-0.5.15-compact.zip index f9d1aa98d..16e0cc274 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.15-compact.zip and b/tests/ast-parsing/compile/throw-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.15-legacy.zip b/tests/ast-parsing/compile/throw-0.5.15-legacy.zip index 1bcb3c479..5ed7b54d3 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.15-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.16-compact.zip b/tests/ast-parsing/compile/throw-0.5.16-compact.zip index f606b65fc..d3401eddc 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.16-compact.zip and b/tests/ast-parsing/compile/throw-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.16-legacy.zip b/tests/ast-parsing/compile/throw-0.5.16-legacy.zip index 9d9f2a390..b9d54d06a 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.16-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.17-compact.zip b/tests/ast-parsing/compile/throw-0.5.17-compact.zip index 89a4b5c85..ab95ef4b6 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.17-compact.zip and b/tests/ast-parsing/compile/throw-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.17-legacy.zip b/tests/ast-parsing/compile/throw-0.5.17-legacy.zip index 4808dffdd..ba4a94c76 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.17-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.2-compact.zip b/tests/ast-parsing/compile/throw-0.5.2-compact.zip index 5763e15da..4af0d9d88 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.2-compact.zip and b/tests/ast-parsing/compile/throw-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.2-legacy.zip b/tests/ast-parsing/compile/throw-0.5.2-legacy.zip index 12a68bc08..1a68a0fdd 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.2-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.3-compact.zip b/tests/ast-parsing/compile/throw-0.5.3-compact.zip index 4d5e2e3d5..3a90c76c8 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.3-compact.zip and b/tests/ast-parsing/compile/throw-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.3-legacy.zip b/tests/ast-parsing/compile/throw-0.5.3-legacy.zip index 80d9b96b6..aa83f17d3 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.3-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.4-compact.zip b/tests/ast-parsing/compile/throw-0.5.4-compact.zip index 7c470a6b8..d50f17f67 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.4-compact.zip and b/tests/ast-parsing/compile/throw-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.4-legacy.zip b/tests/ast-parsing/compile/throw-0.5.4-legacy.zip index 592b22353..c025bf4e9 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.4-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.5-compact.zip b/tests/ast-parsing/compile/throw-0.5.5-compact.zip index c41b60816..3b524a743 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.5-compact.zip and b/tests/ast-parsing/compile/throw-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.5-legacy.zip b/tests/ast-parsing/compile/throw-0.5.5-legacy.zip index d46f3f53c..b48bf048e 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.5-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.6-compact.zip b/tests/ast-parsing/compile/throw-0.5.6-compact.zip index 8881d0f79..46d5a088c 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.6-compact.zip and b/tests/ast-parsing/compile/throw-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.6-legacy.zip b/tests/ast-parsing/compile/throw-0.5.6-legacy.zip index a09c907bc..1d64b6883 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.6-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.7-compact.zip b/tests/ast-parsing/compile/throw-0.5.7-compact.zip index 918b9b5a2..8a5319053 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.7-compact.zip and b/tests/ast-parsing/compile/throw-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.7-legacy.zip b/tests/ast-parsing/compile/throw-0.5.7-legacy.zip index 23076550f..e79951aef 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.7-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.8-compact.zip b/tests/ast-parsing/compile/throw-0.5.8-compact.zip index 6472b6079..1f93c89f0 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.8-compact.zip and b/tests/ast-parsing/compile/throw-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.8-legacy.zip b/tests/ast-parsing/compile/throw-0.5.8-legacy.zip index 9154776a8..8eacdef92 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.8-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.9-compact.zip b/tests/ast-parsing/compile/throw-0.5.9-compact.zip index aa5547685..3c90cec0d 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.9-compact.zip and b/tests/ast-parsing/compile/throw-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.5.9-legacy.zip b/tests/ast-parsing/compile/throw-0.5.9-legacy.zip index 2fee9d500..324c73c2e 100644 Binary files a/tests/ast-parsing/compile/throw-0.5.9-legacy.zip and b/tests/ast-parsing/compile/throw-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.0-compact.zip b/tests/ast-parsing/compile/throw-0.6.0-compact.zip index 75d3247d7..3eeec1ac3 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.0-compact.zip and b/tests/ast-parsing/compile/throw-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.0-legacy.zip b/tests/ast-parsing/compile/throw-0.6.0-legacy.zip index 529fa032d..79177be46 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.0-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.1-compact.zip b/tests/ast-parsing/compile/throw-0.6.1-compact.zip index dbfe33d6d..998b477ac 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.1-compact.zip and b/tests/ast-parsing/compile/throw-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.1-legacy.zip b/tests/ast-parsing/compile/throw-0.6.1-legacy.zip index 65eb84f4d..fcb4e12f3 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.1-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.10-compact.zip b/tests/ast-parsing/compile/throw-0.6.10-compact.zip index 53e04c106..5081d2cdf 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.10-compact.zip and b/tests/ast-parsing/compile/throw-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.10-legacy.zip b/tests/ast-parsing/compile/throw-0.6.10-legacy.zip index 716d06cc8..ba9d88f4b 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.10-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.11-compact.zip b/tests/ast-parsing/compile/throw-0.6.11-compact.zip index 3270f8c60..2513cf4fb 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.11-compact.zip and b/tests/ast-parsing/compile/throw-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.11-legacy.zip b/tests/ast-parsing/compile/throw-0.6.11-legacy.zip index 1de8005be..6083af157 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.11-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.12-compact.zip b/tests/ast-parsing/compile/throw-0.6.12-compact.zip index 2da1d286f..7f55d914c 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.12-compact.zip and b/tests/ast-parsing/compile/throw-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.12-legacy.zip b/tests/ast-parsing/compile/throw-0.6.12-legacy.zip index 99826d71f..31d29820b 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.12-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.2-compact.zip b/tests/ast-parsing/compile/throw-0.6.2-compact.zip index 4cd9f9d7f..3b6c224e8 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.2-compact.zip and b/tests/ast-parsing/compile/throw-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.2-legacy.zip b/tests/ast-parsing/compile/throw-0.6.2-legacy.zip index b4e0b03bb..58a181460 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.2-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.3-compact.zip b/tests/ast-parsing/compile/throw-0.6.3-compact.zip index 3aed27f02..f4e3a27eb 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.3-compact.zip and b/tests/ast-parsing/compile/throw-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.3-legacy.zip b/tests/ast-parsing/compile/throw-0.6.3-legacy.zip index b1ea7ed26..748171e9b 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.3-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.4-compact.zip b/tests/ast-parsing/compile/throw-0.6.4-compact.zip index 7d77149d5..3bd001f94 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.4-compact.zip and b/tests/ast-parsing/compile/throw-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.4-legacy.zip b/tests/ast-parsing/compile/throw-0.6.4-legacy.zip index 8f53146d3..4eb680087 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.4-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.5-compact.zip b/tests/ast-parsing/compile/throw-0.6.5-compact.zip index 3c6e26c80..a61119dd0 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.5-compact.zip and b/tests/ast-parsing/compile/throw-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.5-legacy.zip b/tests/ast-parsing/compile/throw-0.6.5-legacy.zip index 567994464..41e26cb7a 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.5-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.6-compact.zip b/tests/ast-parsing/compile/throw-0.6.6-compact.zip index cd8bdb91d..6126f6b30 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.6-compact.zip and b/tests/ast-parsing/compile/throw-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.6-legacy.zip b/tests/ast-parsing/compile/throw-0.6.6-legacy.zip index f3c91e3ff..cb4e1b8b0 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.6-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.7-compact.zip b/tests/ast-parsing/compile/throw-0.6.7-compact.zip index 7ee93f8b0..00b3035f7 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.7-compact.zip and b/tests/ast-parsing/compile/throw-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.7-legacy.zip b/tests/ast-parsing/compile/throw-0.6.7-legacy.zip index d3d3d5fa4..311730d31 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.7-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.8-compact.zip b/tests/ast-parsing/compile/throw-0.6.8-compact.zip index ae71c04f4..2e308630d 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.8-compact.zip and b/tests/ast-parsing/compile/throw-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.8-legacy.zip b/tests/ast-parsing/compile/throw-0.6.8-legacy.zip index 3ce7ed09c..cd7b8b9bf 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.8-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.9-compact.zip b/tests/ast-parsing/compile/throw-0.6.9-compact.zip index 4f07ca6ff..4540592f1 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.9-compact.zip and b/tests/ast-parsing/compile/throw-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.6.9-legacy.zip b/tests/ast-parsing/compile/throw-0.6.9-legacy.zip index f832264b7..292a83d58 100644 Binary files a/tests/ast-parsing/compile/throw-0.6.9-legacy.zip and b/tests/ast-parsing/compile/throw-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.0-compact.zip b/tests/ast-parsing/compile/throw-0.7.0-compact.zip index 7d919f5bc..5ba42c95b 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.0-compact.zip and b/tests/ast-parsing/compile/throw-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.0-legacy.zip b/tests/ast-parsing/compile/throw-0.7.0-legacy.zip index e0e04d2c4..d07edb08e 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.0-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.1-compact.zip b/tests/ast-parsing/compile/throw-0.7.1-compact.zip index d8b6eb04c..182eb31ca 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.1-compact.zip and b/tests/ast-parsing/compile/throw-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.1-legacy.zip b/tests/ast-parsing/compile/throw-0.7.1-legacy.zip index 0885d1b3f..887b7e50c 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.1-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.2-compact.zip b/tests/ast-parsing/compile/throw-0.7.2-compact.zip index f5423fb87..6915babb7 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.2-compact.zip and b/tests/ast-parsing/compile/throw-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.2-legacy.zip b/tests/ast-parsing/compile/throw-0.7.2-legacy.zip index 14d14a382..852780a06 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.2-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.3-compact.zip b/tests/ast-parsing/compile/throw-0.7.3-compact.zip index 4c3b9b975..59694e17e 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.3-compact.zip and b/tests/ast-parsing/compile/throw-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.3-legacy.zip b/tests/ast-parsing/compile/throw-0.7.3-legacy.zip index e88a4093a..78a2d325d 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.3-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.4-compact.zip b/tests/ast-parsing/compile/throw-0.7.4-compact.zip index 9d852d23a..76afad5c7 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.4-compact.zip and b/tests/ast-parsing/compile/throw-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.4-legacy.zip b/tests/ast-parsing/compile/throw-0.7.4-legacy.zip index 8083937fe..f1de06fe2 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.4-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.5-compact.zip b/tests/ast-parsing/compile/throw-0.7.5-compact.zip index 0b8f65e2f..ac51d94cb 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.5-compact.zip and b/tests/ast-parsing/compile/throw-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.5-legacy.zip b/tests/ast-parsing/compile/throw-0.7.5-legacy.zip index 051facad7..6c20a8289 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.5-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.6-compact.zip b/tests/ast-parsing/compile/throw-0.7.6-compact.zip index 5237ddd5b..17d0bf842 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.6-compact.zip and b/tests/ast-parsing/compile/throw-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.7.6-legacy.zip b/tests/ast-parsing/compile/throw-0.7.6-legacy.zip index 77ea6a215..6c471f5d5 100644 Binary files a/tests/ast-parsing/compile/throw-0.7.6-legacy.zip and b/tests/ast-parsing/compile/throw-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.0-compact.zip b/tests/ast-parsing/compile/throw-0.8.0-compact.zip index 136444886..a46373543 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.0-compact.zip and b/tests/ast-parsing/compile/throw-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.1-compact.zip b/tests/ast-parsing/compile/throw-0.8.1-compact.zip index 5cbadbad2..cf6f7b628 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.1-compact.zip and b/tests/ast-parsing/compile/throw-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.2-compact.zip b/tests/ast-parsing/compile/throw-0.8.2-compact.zip index db37d35de..4bc8dd824 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.2-compact.zip and b/tests/ast-parsing/compile/throw-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.3-compact.zip b/tests/ast-parsing/compile/throw-0.8.3-compact.zip index 09e091f23..8ea23474a 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.3-compact.zip and b/tests/ast-parsing/compile/throw-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.4-compact.zip b/tests/ast-parsing/compile/throw-0.8.4-compact.zip index f96537067..0f05c81f7 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.4-compact.zip and b/tests/ast-parsing/compile/throw-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.5-compact.zip b/tests/ast-parsing/compile/throw-0.8.5-compact.zip index 1086061d2..5c2c0107b 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.5-compact.zip and b/tests/ast-parsing/compile/throw-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.6-compact.zip b/tests/ast-parsing/compile/throw-0.8.6-compact.zip index 4737e3bf2..ec062c85c 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.6-compact.zip and b/tests/ast-parsing/compile/throw-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/throw-0.8.7-compact.zip b/tests/ast-parsing/compile/throw-0.8.7-compact.zip index 32395f10a..48a0e0985 100644 Binary files a/tests/ast-parsing/compile/throw-0.8.7-compact.zip and b/tests/ast-parsing/compile/throw-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.0-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.0-legacy.zip index 58ff1b3a2..4b37dc81f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.0-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.1-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.1-legacy.zip index 1b80a7367..47e1b0028 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.1-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.10-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.10-legacy.zip index 2ad8d23c7..12660a614 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.10-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.11-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.11-legacy.zip index 80459912e..f7ae493cf 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.11-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.12-compact.zip b/tests/ast-parsing/compile/top-level-0.4.12-compact.zip index cd4d2c70a..5d78ea840 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.12-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.12-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.12-legacy.zip index 4194eef20..f139dd897 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.12-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.13-compact.zip b/tests/ast-parsing/compile/top-level-0.4.13-compact.zip index 02f2ac01e..be1d91666 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.13-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.13-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.13-legacy.zip index 082940988..27b8e4381 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.13-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.14-compact.zip b/tests/ast-parsing/compile/top-level-0.4.14-compact.zip index ba3a3a4af..ef573893f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.14-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.14-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.14-legacy.zip index 3202902e2..ea96de4b6 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.14-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.15-compact.zip b/tests/ast-parsing/compile/top-level-0.4.15-compact.zip index ef98e98f6..b47ae21a2 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.15-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.15-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.15-legacy.zip index 38ef46f8c..a88903a8e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.15-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.16-compact.zip b/tests/ast-parsing/compile/top-level-0.4.16-compact.zip index 7e0254b70..4a2e34cda 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.16-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.16-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.16-legacy.zip index 30a2af71c..5bb146c69 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.16-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.17-compact.zip b/tests/ast-parsing/compile/top-level-0.4.17-compact.zip index 9cd2c00a1..a413aa28c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.17-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.17-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.17-legacy.zip index 718cb3cd1..8cac1e3ef 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.17-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.18-compact.zip b/tests/ast-parsing/compile/top-level-0.4.18-compact.zip index c60528cb2..0539a1952 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.18-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.18-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.18-legacy.zip index 19bf37f4a..6199db541 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.18-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.19-compact.zip b/tests/ast-parsing/compile/top-level-0.4.19-compact.zip index 640062750..865fdf92f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.19-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.19-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.19-legacy.zip index 2e407bd4e..0349a76b8 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.19-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.2-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.2-legacy.zip index 34c58b4d2..633ef553d 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.2-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.20-compact.zip b/tests/ast-parsing/compile/top-level-0.4.20-compact.zip index 3f8daa124..7f75b9d89 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.20-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.20-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.20-legacy.zip index 038ef3527..54a047ad2 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.20-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.21-compact.zip b/tests/ast-parsing/compile/top-level-0.4.21-compact.zip index 02b951e99..0bbf85067 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.21-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.21-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.21-legacy.zip index 71379cd3f..e5d493add 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.21-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.22-compact.zip b/tests/ast-parsing/compile/top-level-0.4.22-compact.zip index 2ff096ed1..1c19afc35 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.22-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.22-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.22-legacy.zip index fad51a053..4f268efa4 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.22-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.23-compact.zip b/tests/ast-parsing/compile/top-level-0.4.23-compact.zip index 5f5402f16..5717b3787 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.23-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.23-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.23-legacy.zip index 9529ef711..fffd886d2 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.23-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.24-compact.zip b/tests/ast-parsing/compile/top-level-0.4.24-compact.zip index aca98c723..6c20bad76 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.24-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.24-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.24-legacy.zip index 64f126a3e..4e11665c2 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.24-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.25-compact.zip b/tests/ast-parsing/compile/top-level-0.4.25-compact.zip index 84dc2c286..ab3012709 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.25-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.25-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.25-legacy.zip index 886b64a4b..56c209c1e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.25-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.26-compact.zip b/tests/ast-parsing/compile/top-level-0.4.26-compact.zip index f7e8deee4..cb7191364 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.26-compact.zip and b/tests/ast-parsing/compile/top-level-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.26-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.26-legacy.zip index 081897a45..ae8c7c475 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.26-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.3-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.3-legacy.zip index 8a3ce0986..958c9a8e0 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.3-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.4-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.4-legacy.zip index 7d5349fd4..6737fb625 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.4-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.5-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.5-legacy.zip index d2ab4f38b..897694094 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.5-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.6-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.6-legacy.zip index 8674973dd..3f3886aa5 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.6-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.7-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.7-legacy.zip index 033dd7ab1..f564f31ca 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.7-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.8-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.8-legacy.zip index e8639c66c..0b30f03d3 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.8-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.4.9-legacy.zip b/tests/ast-parsing/compile/top-level-0.4.9-legacy.zip index 769cfcd59..e8fa3f57e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.4.9-legacy.zip and b/tests/ast-parsing/compile/top-level-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.0-compact.zip b/tests/ast-parsing/compile/top-level-0.5.0-compact.zip index 34a1597d2..a885d0ba9 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.0-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.0-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.0-legacy.zip index 36d96fe1b..f2cb775f7 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.0-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.1-compact.zip b/tests/ast-parsing/compile/top-level-0.5.1-compact.zip index 8451a3d93..b925d8b05 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.1-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.1-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.1-legacy.zip index 3df686155..a083f00e9 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.1-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.10-compact.zip b/tests/ast-parsing/compile/top-level-0.5.10-compact.zip index 11fc2611b..26ad16efb 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.10-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.10-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.10-legacy.zip index 52c5a05c8..0c19df414 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.10-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.11-compact.zip b/tests/ast-parsing/compile/top-level-0.5.11-compact.zip index b5d7b2898..0d39bf8b9 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.11-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.11-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.11-legacy.zip index e071880bf..04839b5ef 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.11-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.12-compact.zip b/tests/ast-parsing/compile/top-level-0.5.12-compact.zip index cd9e7a233..987396da1 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.12-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.12-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.12-legacy.zip index cebe0d9b0..c5f7eaaa9 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.12-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.13-compact.zip b/tests/ast-parsing/compile/top-level-0.5.13-compact.zip index 626f150c1..082b2a1bf 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.13-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.13-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.13-legacy.zip index 072d16096..509f4e783 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.13-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.14-compact.zip b/tests/ast-parsing/compile/top-level-0.5.14-compact.zip index bd3df84f6..fa045beba 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.14-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.14-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.14-legacy.zip index 3bcef9a08..6dcddbf08 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.14-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.15-compact.zip b/tests/ast-parsing/compile/top-level-0.5.15-compact.zip index 9cf0d848a..0c2f7119a 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.15-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.15-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.15-legacy.zip index 055a736bb..a7caf4df1 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.15-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.16-compact.zip b/tests/ast-parsing/compile/top-level-0.5.16-compact.zip index 74bfb6e66..4833cfc22 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.16-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.16-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.16-legacy.zip index 6572b55df..7ae3fe468 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.16-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.17-compact.zip b/tests/ast-parsing/compile/top-level-0.5.17-compact.zip index 0a10de506..f4569cfca 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.17-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.17-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.17-legacy.zip index a0b86975c..7c87b6a2e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.17-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.2-compact.zip b/tests/ast-parsing/compile/top-level-0.5.2-compact.zip index e7aa9d936..2c302542c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.2-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.2-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.2-legacy.zip index ec205716f..3cafd300c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.2-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.3-compact.zip b/tests/ast-parsing/compile/top-level-0.5.3-compact.zip index 564dd2de7..5ff119d4a 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.3-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.3-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.3-legacy.zip index 0fa49f998..eb00eb058 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.3-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.4-compact.zip b/tests/ast-parsing/compile/top-level-0.5.4-compact.zip index 64f914247..0b7bed72f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.4-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.4-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.4-legacy.zip index a4b0c99fe..58ff150fa 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.4-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.5-compact.zip b/tests/ast-parsing/compile/top-level-0.5.5-compact.zip index c86178b70..88dbf8d01 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.5-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.5-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.5-legacy.zip index 1bb30a6c4..5e03c95c9 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.5-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.6-compact.zip b/tests/ast-parsing/compile/top-level-0.5.6-compact.zip index 976a42795..aa5a67980 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.6-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.6-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.6-legacy.zip index ce1d26c2a..688c8cf0f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.6-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.7-compact.zip b/tests/ast-parsing/compile/top-level-0.5.7-compact.zip index 3a65b28c7..b9c730a2d 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.7-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.7-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.7-legacy.zip index 71ed8516d..0618b17aa 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.7-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.8-compact.zip b/tests/ast-parsing/compile/top-level-0.5.8-compact.zip index d22ae6264..e269d8fb5 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.8-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.8-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.8-legacy.zip index 6d285ef7a..879e24937 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.8-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.9-compact.zip b/tests/ast-parsing/compile/top-level-0.5.9-compact.zip index d1616f46a..f32012bda 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.9-compact.zip and b/tests/ast-parsing/compile/top-level-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.5.9-legacy.zip b/tests/ast-parsing/compile/top-level-0.5.9-legacy.zip index 41b446c7d..88c315fe3 100644 Binary files a/tests/ast-parsing/compile/top-level-0.5.9-legacy.zip and b/tests/ast-parsing/compile/top-level-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.0-compact.zip b/tests/ast-parsing/compile/top-level-0.6.0-compact.zip index 18a3e91e4..557af1cab 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.0-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.0-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.0-legacy.zip index eacc3b47a..71a505899 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.0-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.1-compact.zip b/tests/ast-parsing/compile/top-level-0.6.1-compact.zip index 8881da5e8..a3e6e2314 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.1-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.1-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.1-legacy.zip index e59b5ae9f..f98b90c81 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.1-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.10-compact.zip b/tests/ast-parsing/compile/top-level-0.6.10-compact.zip index 14df62da5..f358dda86 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.10-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.10-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.10-legacy.zip index 45e72b439..1c0206e16 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.10-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.11-compact.zip b/tests/ast-parsing/compile/top-level-0.6.11-compact.zip index db8a559fb..257424b49 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.11-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.11-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.11-legacy.zip index 70f727cb9..423563f4f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.11-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.12-compact.zip b/tests/ast-parsing/compile/top-level-0.6.12-compact.zip index aac6140a6..8cc67740a 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.12-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.12-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.12-legacy.zip index 554a625e6..b4abab97d 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.12-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.2-compact.zip b/tests/ast-parsing/compile/top-level-0.6.2-compact.zip index c80113096..fc4e736b6 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.2-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.2-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.2-legacy.zip index cb6e516c7..4857a44b8 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.2-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.3-compact.zip b/tests/ast-parsing/compile/top-level-0.6.3-compact.zip index 616f158ee..bdb10a45b 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.3-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.3-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.3-legacy.zip index 91d760b55..f65c75248 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.3-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.4-compact.zip b/tests/ast-parsing/compile/top-level-0.6.4-compact.zip index 821561173..4a8ccb624 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.4-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.4-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.4-legacy.zip index c496168d9..ca93a6197 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.4-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.5-compact.zip b/tests/ast-parsing/compile/top-level-0.6.5-compact.zip index 2e79bab88..c602e020e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.5-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.5-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.5-legacy.zip index de524d351..c05522dcf 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.5-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.6-compact.zip b/tests/ast-parsing/compile/top-level-0.6.6-compact.zip index 5ea74dfd4..2fa2f33c7 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.6-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.6-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.6-legacy.zip index 89ff27169..b12174051 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.6-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.7-compact.zip b/tests/ast-parsing/compile/top-level-0.6.7-compact.zip index 069cca132..3cfa9e40c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.7-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.7-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.7-legacy.zip index 61417ff44..c336300c9 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.7-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.8-compact.zip b/tests/ast-parsing/compile/top-level-0.6.8-compact.zip index b43a64e3c..aa2127c15 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.8-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.8-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.8-legacy.zip index 8c53243ae..e58d6fc7b 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.8-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.9-compact.zip b/tests/ast-parsing/compile/top-level-0.6.9-compact.zip index 7c4dd7be7..e42a1a32e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.9-compact.zip and b/tests/ast-parsing/compile/top-level-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.6.9-legacy.zip b/tests/ast-parsing/compile/top-level-0.6.9-legacy.zip index 9c9dd76d1..0da08188f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.6.9-legacy.zip and b/tests/ast-parsing/compile/top-level-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.0-compact.zip b/tests/ast-parsing/compile/top-level-0.7.0-compact.zip index 918cae45b..433c8a717 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.0-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.0-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.0-legacy.zip index ce3ad3a6d..27a9d7ecc 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.0-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.1-compact.zip b/tests/ast-parsing/compile/top-level-0.7.1-compact.zip index b548ed97b..fcc6b5639 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.1-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.1-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.1-legacy.zip index 5e17007c3..776502401 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.1-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.2-compact.zip b/tests/ast-parsing/compile/top-level-0.7.2-compact.zip index 13b6478cf..b17a7f57a 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.2-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.2-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.2-legacy.zip index d3913dbb0..5ec41fc3c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.2-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.3-compact.zip b/tests/ast-parsing/compile/top-level-0.7.3-compact.zip index 12b9554bb..87d86b6a0 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.3-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.3-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.3-legacy.zip index fcd0b00e7..bec38798c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.3-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.4-compact.zip b/tests/ast-parsing/compile/top-level-0.7.4-compact.zip index d42ca71f2..cc634d39f 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.4-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.4-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.4-legacy.zip index d5deb6e1d..61f7b793e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.4-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.5-compact.zip b/tests/ast-parsing/compile/top-level-0.7.5-compact.zip index 279fd0949..03ddb4d4c 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.5-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.5-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.5-legacy.zip index 81872d276..14b80a386 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.5-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.6-compact.zip b/tests/ast-parsing/compile/top-level-0.7.6-compact.zip index c34efc15d..76497e807 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.6-compact.zip and b/tests/ast-parsing/compile/top-level-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.7.6-legacy.zip b/tests/ast-parsing/compile/top-level-0.7.6-legacy.zip index f5aff8cd9..7adcae409 100644 Binary files a/tests/ast-parsing/compile/top-level-0.7.6-legacy.zip and b/tests/ast-parsing/compile/top-level-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.0-compact.zip b/tests/ast-parsing/compile/top-level-0.8.0-compact.zip index 1098c2c8b..08e2ea85d 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.0-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.1-compact.zip b/tests/ast-parsing/compile/top-level-0.8.1-compact.zip index 3170c3abb..e031fca12 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.1-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.2-compact.zip b/tests/ast-parsing/compile/top-level-0.8.2-compact.zip index 7717972d7..f3354f315 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.2-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.3-compact.zip b/tests/ast-parsing/compile/top-level-0.8.3-compact.zip index 777359e97..0116d3d26 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.3-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.4-compact.zip b/tests/ast-parsing/compile/top-level-0.8.4-compact.zip index d37619f42..ae4dc9f23 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.4-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.5-compact.zip b/tests/ast-parsing/compile/top-level-0.8.5-compact.zip index 120473f83..3ed80eb6d 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.5-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.6-compact.zip b/tests/ast-parsing/compile/top-level-0.8.6-compact.zip index 621c42ec1..9774b340e 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.6-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-0.8.7-compact.zip b/tests/ast-parsing/compile/top-level-0.8.7-compact.zip index e6bfa2bbf..663021619 100644 Binary files a/tests/ast-parsing/compile/top-level-0.8.7-compact.zip and b/tests/ast-parsing/compile/top-level-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.0-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.0-legacy.zip index 7d4b7fe4f..afa84575d 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.0-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.1-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.1-legacy.zip index b5798485a..104af86a5 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.1-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.10-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.10-legacy.zip index 2920978c3..e4bf845cc 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.10-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.11-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.11-legacy.zip index 7986ca8e6..c160357ff 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.11-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.12-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.12-compact.zip index 637a76648..088febcc8 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.12-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.12-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.12-legacy.zip index 92d5e3b95..b436bdbf8 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.12-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.13-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.13-compact.zip index 7ffc45f68..23eeb5fe4 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.13-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.13-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.13-legacy.zip index 129d6913c..5ba06eb8f 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.13-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.14-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.14-compact.zip index d52be7614..e7093bb41 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.14-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.14-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.14-legacy.zip index 318116e50..93d56fbd4 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.14-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.15-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.15-compact.zip index 3be4937e0..6134bfe62 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.15-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.15-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.15-legacy.zip index fbf830a8e..4181d3a24 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.15-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.16-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.16-compact.zip index 62c705d7c..c62380a14 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.16-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.16-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.16-legacy.zip index d4fdb0e07..b943e0b31 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.16-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.17-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.17-compact.zip index 59d157fcc..0d1c5ec19 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.17-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.17-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.17-legacy.zip index 586a5c2cc..d93d4fe88 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.17-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.18-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.18-compact.zip index 952e204f5..0ef8182f9 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.18-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.18-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.18-legacy.zip index 975cd9238..49bca93b9 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.18-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.19-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.19-compact.zip index 765ed6379..bf5401f44 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.19-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.19-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.19-legacy.zip index 7e14e6240..e66c6f86c 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.19-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.2-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.2-legacy.zip index 222553e73..f3fc05812 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.2-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.20-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.20-compact.zip index 6e94a4025..28c15d4b3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.20-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.20-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.20-legacy.zip index c61d9c824..28fe814b2 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.20-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.21-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.21-compact.zip index ff0a2e8c8..2ca165941 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.21-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.21-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.21-legacy.zip index baa96ed38..842869be3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.21-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.22-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.22-compact.zip index e293fe9da..0becf6ca5 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.22-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.22-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.22-legacy.zip index 1fb609b70..397fc8766 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.22-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.23-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.23-compact.zip index 9cf8b9c46..86f59178f 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.23-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.23-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.23-legacy.zip index cc472b576..1e55d7e7d 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.23-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.24-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.24-compact.zip index 82c15d667..0da4a83a8 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.24-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.24-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.24-legacy.zip index ffe317e5c..92d8a964c 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.24-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.25-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.25-compact.zip index c8b4b3b08..b4beb451d 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.25-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.25-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.25-legacy.zip index 14a334953..c5e6fb344 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.25-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.26-compact.zip b/tests/ast-parsing/compile/top-level-import-0.4.26-compact.zip index 11425d5fa..e7fd44792 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.26-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.26-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.26-legacy.zip index f28eb0193..dbadcea5b 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.26-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.3-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.3-legacy.zip index eb96f5d16..7be1f0405 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.3-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.4-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.4-legacy.zip index f2dceff23..55fc7997e 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.4-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.5-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.5-legacy.zip index aa639a03e..3ca7fa124 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.5-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.6-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.6-legacy.zip index 05a525f90..4ffb29e86 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.6-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.7-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.7-legacy.zip index d47c55c2f..907389ce5 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.7-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.8-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.8-legacy.zip index c75b668a9..defbdbaf3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.8-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.4.9-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.4.9-legacy.zip index dac4eb11d..adfaebfbf 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.4.9-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.0-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.0-compact.zip index 0c6481596..f4d7a2a1a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.0-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.0-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.0-legacy.zip index 5025a84ac..f2c049c51 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.0-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.1-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.1-compact.zip index 011fe9087..84e5c8a89 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.1-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.1-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.1-legacy.zip index ced4cdc99..d0bd20648 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.1-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.10-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.10-compact.zip index 0a85eef90..52c592507 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.10-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.10-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.10-legacy.zip index d156508b6..0871ff620 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.10-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.11-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.11-compact.zip index bf57af052..7c1b079bf 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.11-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.11-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.11-legacy.zip index 01f949aff..cc168eef7 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.11-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.12-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.12-compact.zip index 74e4a2f10..5867fb718 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.12-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.12-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.12-legacy.zip index 86f91e1d9..4fb297fdf 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.12-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.13-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.13-compact.zip index c9e3638d9..da2c775b7 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.13-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.13-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.13-legacy.zip index 6717dae0a..f9d84e0fb 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.13-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.14-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.14-compact.zip index 055387fdb..b374735f3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.14-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.14-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.14-legacy.zip index 1dc658d4a..bb5833fdc 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.14-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.15-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.15-compact.zip index 28df789ac..4df0712ec 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.15-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.15-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.15-legacy.zip index 1f4fc135e..4c5ac6d85 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.15-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.16-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.16-compact.zip index 87ac05398..68e54e8b4 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.16-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.16-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.16-legacy.zip index 69cf810cc..a1fd05fb5 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.16-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.17-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.17-compact.zip index aa7a3ca5c..b30ff5539 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.17-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.17-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.17-legacy.zip index 7155abc69..9a3779777 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.17-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.2-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.2-compact.zip index b096086f4..13b293997 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.2-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.2-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.2-legacy.zip index 2082c1347..7f9dc1c04 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.2-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.3-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.3-compact.zip index 61c8c685b..f0d419b12 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.3-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.3-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.3-legacy.zip index 59c61c998..1e5646cb8 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.3-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.4-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.4-compact.zip index 279b81cc9..6b2ebecc6 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.4-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.4-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.4-legacy.zip index 8bca18740..733c4d211 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.4-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.5-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.5-compact.zip index d0f79d9a9..5a045708a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.5-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.5-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.5-legacy.zip index bbe6cd36c..636976f0f 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.5-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.6-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.6-compact.zip index 80e8d2f4d..7ceb1f9ea 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.6-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.6-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.6-legacy.zip index ab7a55824..23641a354 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.6-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.7-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.7-compact.zip index 4d10ebe3d..2a1724324 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.7-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.7-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.7-legacy.zip index 38896a179..02b94d2a9 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.7-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.8-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.8-compact.zip index 0a5c080e5..f7ee94d07 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.8-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.8-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.8-legacy.zip index 45b17d6ef..8c41a4eb0 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.8-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.9-compact.zip b/tests/ast-parsing/compile/top-level-import-0.5.9-compact.zip index 0979d6e70..b56c614af 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.9-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.5.9-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.5.9-legacy.zip index a5a2a737c..672d56f5c 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.5.9-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.0-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.0-compact.zip index 672a780cc..5b552b7e3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.0-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.0-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.0-legacy.zip index bde234512..f249b0ba9 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.0-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.1-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.1-compact.zip index aeef84fce..c9433f516 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.1-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.1-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.1-legacy.zip index 85aee339f..73b4ed5a6 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.1-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.10-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.10-compact.zip index 0a3a2e4c1..f801c8230 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.10-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.10-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.10-legacy.zip index 4b88b4983..853ce651f 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.10-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.11-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.11-compact.zip index 0f0f705ae..c9aed439f 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.11-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.11-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.11-legacy.zip index 964a7d00e..5acf39bba 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.11-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.12-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.12-compact.zip index 686843ce7..af6652a00 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.12-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.12-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.12-legacy.zip index a2931a319..cd3e33799 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.12-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.2-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.2-compact.zip index 9f7eed8ad..180411620 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.2-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.2-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.2-legacy.zip index 27e0b37ab..5f06a283d 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.2-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.3-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.3-compact.zip index 7d7d33fd6..a5a7892c0 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.3-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.3-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.3-legacy.zip index dd0f7abd3..14ae0dfd7 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.3-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.4-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.4-compact.zip index 2383c1d62..5e9c19e78 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.4-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.4-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.4-legacy.zip index 46073b463..7b8b9fa4a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.4-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.5-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.5-compact.zip index d8f03069e..b85529ef3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.5-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.5-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.5-legacy.zip index c0ff4e016..14d0d78a3 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.5-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.6-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.6-compact.zip index d338d9031..c3500d333 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.6-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.6-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.6-legacy.zip index 580d9e2eb..b70e7e82a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.6-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.7-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.7-compact.zip index e09f0c371..e87deb961 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.7-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.7-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.7-legacy.zip index 006233d66..1983738bd 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.7-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.8-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.8-compact.zip index cf490f935..825e86686 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.8-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.8-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.8-legacy.zip index f55487a59..3c965e6d4 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.8-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.9-compact.zip b/tests/ast-parsing/compile/top-level-import-0.6.9-compact.zip index c580353ec..6f528a9a8 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.9-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.6.9-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.6.9-legacy.zip index 210b3ecad..5c00aff9a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.6.9-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.0-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.0-compact.zip index a7884f187..22ec877a0 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.0-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.0-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.0-legacy.zip index 9a32c8116..f9562f60b 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.0-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.1-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.1-compact.zip index 38d9ec8c5..0df178381 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.1-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.1-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.1-legacy.zip index e93da4e00..abc0ebbf9 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.1-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.2-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.2-compact.zip index de9983e99..412a7487a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.2-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.2-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.2-legacy.zip index 029f8e7e4..063e1aab6 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.2-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.3-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.3-compact.zip index 542efd8f7..35e510930 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.3-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.3-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.3-legacy.zip index 7dd148205..9b8fd6329 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.3-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.4-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.4-compact.zip index e98bc5733..1346094fd 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.4-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.4-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.4-legacy.zip index 98a3df7e7..f2b767aed 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.4-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.5-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.5-compact.zip index 92cdc1dd3..1d1fe5289 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.5-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.5-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.5-legacy.zip index a99dd0d8f..f980c2c99 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.5-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.6-compact.zip b/tests/ast-parsing/compile/top-level-import-0.7.6-compact.zip index cd93f065e..8cf6b4f01 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.6-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.7.6-legacy.zip b/tests/ast-parsing/compile/top-level-import-0.7.6-legacy.zip index 6f3325903..c9d807f0a 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.7.6-legacy.zip and b/tests/ast-parsing/compile/top-level-import-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.0-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.0-compact.zip index 2152d6bc8..5eff40591 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.0-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.1-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.1-compact.zip index 8bc283182..f42a2bda7 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.1-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.2-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.2-compact.zip index 536dd24a9..405ddfd59 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.2-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.3-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.3-compact.zip index 1efb4acdb..601bc78f4 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.3-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.4-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.4-compact.zip index c01063d9d..2bacc6910 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.4-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.5-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.5-compact.zip index 2d244caa3..0509498b1 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.5-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.6-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.6-compact.zip index 9557e3d19..08c562405 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.6-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/top-level-import-0.8.7-compact.zip b/tests/ast-parsing/compile/top-level-import-0.8.7-compact.zip index a5de37363..a3210a396 100644 Binary files a/tests/ast-parsing/compile/top-level-import-0.8.7-compact.zip and b/tests/ast-parsing/compile/top-level-import-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.0-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.0-legacy.zip index 54306ee42..2ed5a3627 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.0-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.1-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.1-legacy.zip index 49b54dcb3..8d3a16765 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.1-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.10-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.10-legacy.zip index 902d45da8..9f7dbdd12 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.10-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.11-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.11-legacy.zip index 7f49c09b3..31b413abd 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.11-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.12-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.12-compact.zip index ef87f00a0..28a8c3830 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.12-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.12-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.12-legacy.zip index 25c37bc92..71e2d0382 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.12-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.13-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.13-compact.zip index e0de4407d..483b385ea 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.13-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.13-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.13-legacy.zip index 3dc6e3823..dc9da2ba3 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.13-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.14-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.14-compact.zip index f371c63c1..2fab2d3be 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.14-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.14-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.14-legacy.zip index 82bf7de29..8d37b0193 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.14-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.15-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.15-compact.zip index cacc30636..8f70febae 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.15-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.15-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.15-legacy.zip index 6e80e5fea..e57d2f542 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.15-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.16-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.16-compact.zip index 62516d0df..d109c813a 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.16-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.16-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.16-legacy.zip index c23fd8d28..d637898a8 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.16-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.17-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.17-compact.zip index 1657bf2e0..c59501b2d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.17-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.17-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.17-legacy.zip index 6f9b5769c..bccaf05b8 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.17-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.18-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.18-compact.zip index d06ee6bf6..8f60bae58 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.18-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.18-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.18-legacy.zip index e0d06d723..e078c555c 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.18-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.19-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.19-compact.zip index 29be9c8c7..19a7d6971 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.19-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.19-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.19-legacy.zip index a31f569d6..4e65688b6 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.19-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.2-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.2-legacy.zip index efbdf91d8..93f475af5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.2-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.20-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.20-compact.zip index 9b5332c15..96ed7d7ef 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.20-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.20-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.20-legacy.zip index 6473daf25..5a1b05564 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.20-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.21-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.21-compact.zip index 452fa977d..4fba311f6 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.21-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.21-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.21-legacy.zip index ba59c36b6..5172f95f3 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.21-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.22-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.22-compact.zip index 0aa54401f..0a69c252a 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.22-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.22-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.22-legacy.zip index efa2a1463..06e4c5281 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.22-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.23-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.23-compact.zip index 1679daed5..83d23439d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.23-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.23-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.23-legacy.zip index dbbbf177f..b292651f0 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.23-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.24-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.24-compact.zip index 8be1bda81..7017377a2 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.24-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.24-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.24-legacy.zip index 1b970924a..84d13bc91 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.24-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.25-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.25-compact.zip index fcc4446b4..b71985e40 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.25-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.25-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.25-legacy.zip index 64f31e901..e427d4352 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.25-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.26-compact.zip b/tests/ast-parsing/compile/trycatch-0.4.26-compact.zip index 032b3c248..9a94063f8 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.26-compact.zip and b/tests/ast-parsing/compile/trycatch-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.26-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.26-legacy.zip index 51e37c9a9..72a8be465 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.26-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.3-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.3-legacy.zip index 33b722ec3..400b10b26 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.3-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.4-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.4-legacy.zip index 2c4de10ff..90d79bcf9 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.4-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.5-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.5-legacy.zip index edb4c5a33..1093e3dac 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.5-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.6-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.6-legacy.zip index 0f8fc2a6f..7bcbc91a5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.6-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.7-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.7-legacy.zip index d7b72ab83..2434bc1cf 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.7-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.8-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.8-legacy.zip index 75a303a17..89c2683d4 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.8-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.4.9-legacy.zip b/tests/ast-parsing/compile/trycatch-0.4.9-legacy.zip index 9252a1487..b56c850ed 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.4.9-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.0-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.0-compact.zip index 7544eb410..d5cb36d49 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.0-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.0-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.0-legacy.zip index 90804ebf6..65fbd62c6 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.0-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.1-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.1-compact.zip index c5e63490b..b9a706578 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.1-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.1-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.1-legacy.zip index 5029a67f9..1a011aef5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.1-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.10-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.10-compact.zip index a1e9804d8..60c57c848 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.10-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.10-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.10-legacy.zip index 0af59481f..b4a151542 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.10-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.11-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.11-compact.zip index 2f7f5d1eb..e09c90520 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.11-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.11-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.11-legacy.zip index 2093e7d69..49a9ec8ae 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.11-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.12-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.12-compact.zip index efbdaa02e..ea73cb70a 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.12-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.12-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.12-legacy.zip index 6196d05c1..41dd811a0 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.12-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.13-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.13-compact.zip index dfb0feab2..8ed46c9e5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.13-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.13-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.13-legacy.zip index 3c1224cb8..2e20b987f 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.13-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.14-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.14-compact.zip index ea7874a74..5c5b4ee78 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.14-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.14-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.14-legacy.zip index 558c7631e..fe9a06ff5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.14-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.15-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.15-compact.zip index bce9afa6d..6613b8888 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.15-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.15-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.15-legacy.zip index 299a8cf39..fa31575e2 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.15-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.16-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.16-compact.zip index 9611af080..1b5f323fb 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.16-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.16-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.16-legacy.zip index bbea41560..4b44f79e9 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.16-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.17-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.17-compact.zip index 7e06c1837..70ec03158 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.17-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.17-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.17-legacy.zip index 60f320108..46e18accf 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.17-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.2-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.2-compact.zip index 7ff61eb14..1a2960777 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.2-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.2-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.2-legacy.zip index 8f34f4785..8efdc5675 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.2-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.3-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.3-compact.zip index 20327134f..c8e31d0cb 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.3-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.3-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.3-legacy.zip index bb49131b9..8c03cdf6d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.3-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.4-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.4-compact.zip index d177ef488..0687efd14 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.4-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.4-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.4-legacy.zip index 57f8b09e0..dacdbf51d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.4-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.5-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.5-compact.zip index c34d802a9..02e0db77d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.5-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.5-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.5-legacy.zip index 878c45224..1bd5c2e00 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.5-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.6-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.6-compact.zip index 5d8ce377a..e5b31f474 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.6-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.6-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.6-legacy.zip index 3606d3eda..8fe5b6bbd 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.6-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.7-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.7-compact.zip index 347a3e911..9f7c76ee2 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.7-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.7-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.7-legacy.zip index 767b3c098..55217bb95 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.7-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.8-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.8-compact.zip index fb5426cd9..51e60cf03 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.8-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.8-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.8-legacy.zip index f50915fa8..e5251d741 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.8-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.9-compact.zip b/tests/ast-parsing/compile/trycatch-0.5.9-compact.zip index 40e93698e..cb25932b2 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.9-compact.zip and b/tests/ast-parsing/compile/trycatch-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.5.9-legacy.zip b/tests/ast-parsing/compile/trycatch-0.5.9-legacy.zip index e1faef178..4d2f38786 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.5.9-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.0-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.0-compact.zip index 503a6261f..933fc6a69 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.0-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.0-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.0-legacy.zip index cebf09daa..1560aa1c7 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.0-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.1-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.1-compact.zip index c46c56381..44d39c322 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.1-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.1-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.1-legacy.zip index 1f76db358..bc657ec47 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.1-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.10-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.10-compact.zip index ba46cd8f2..a930389d5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.10-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.10-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.10-legacy.zip index 9ed4ca466..7ce8463e9 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.10-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.11-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.11-compact.zip index 1bb913130..f410d9474 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.11-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.11-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.11-legacy.zip index 1a0229554..f99dee781 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.11-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.12-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.12-compact.zip index dba816c46..e139e560b 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.12-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.12-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.12-legacy.zip index 26aa0e8aa..d93d7c904 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.12-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.2-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.2-compact.zip index bd5be2b99..b596bbb2a 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.2-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.2-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.2-legacy.zip index cad02bb44..10185f7d6 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.2-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.3-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.3-compact.zip index f16a56b8c..9d17c06f1 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.3-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.3-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.3-legacy.zip index 89428961c..4b14ed9ac 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.3-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.4-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.4-compact.zip index 213edc9e6..b18d6c800 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.4-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.4-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.4-legacy.zip index a8b8d4e9c..ea2b8e1b6 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.4-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.5-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.5-compact.zip index d5c895a27..ddf4471e7 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.5-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.5-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.5-legacy.zip index 99fa407fb..00fcef3c8 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.5-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.6-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.6-compact.zip index d3698ad3c..d94a5ffcb 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.6-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.6-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.6-legacy.zip index d69ba1946..7f263e327 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.6-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.7-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.7-compact.zip index 8a5fd30c1..77b119d4f 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.7-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.7-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.7-legacy.zip index 41d25bc26..2f7f2ad41 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.7-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.8-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.8-compact.zip index c1d523922..87384a8c8 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.8-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.8-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.8-legacy.zip index 58dedc907..660bc7514 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.8-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.9-compact.zip b/tests/ast-parsing/compile/trycatch-0.6.9-compact.zip index 4599fb71e..6dde72e80 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.9-compact.zip and b/tests/ast-parsing/compile/trycatch-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.6.9-legacy.zip b/tests/ast-parsing/compile/trycatch-0.6.9-legacy.zip index 7b36846f3..3741211f7 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.6.9-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.0-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.0-compact.zip index 6bb11991d..10bfbc9c5 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.0-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.0-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.0-legacy.zip index ad9941be5..429621481 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.0-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.1-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.1-compact.zip index c60d98e8f..f2ddbe3a7 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.1-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.1-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.1-legacy.zip index 4a33930d2..4e65762c9 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.1-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.2-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.2-compact.zip index e14405565..b3cafe03d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.2-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.2-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.2-legacy.zip index 66530c537..175e92b15 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.2-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.3-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.3-compact.zip index fdbac631a..aaafcc974 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.3-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.3-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.3-legacy.zip index b2eff2487..e8b9c4294 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.3-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.4-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.4-compact.zip index 4a2bdf20f..9e34b1d40 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.4-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.4-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.4-legacy.zip index ca4665b38..f73454e59 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.4-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.5-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.5-compact.zip index 9b6bedd8c..b315bd751 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.5-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.5-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.5-legacy.zip index b327878ac..5afc1f811 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.5-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.6-compact.zip b/tests/ast-parsing/compile/trycatch-0.7.6-compact.zip index d768b13fc..602949da4 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.6-compact.zip and b/tests/ast-parsing/compile/trycatch-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.7.6-legacy.zip b/tests/ast-parsing/compile/trycatch-0.7.6-legacy.zip index 355b7b300..59f3d0382 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.7.6-legacy.zip and b/tests/ast-parsing/compile/trycatch-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.0-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.0-compact.zip index 3bf2778c1..b6cac388d 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.0-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.1-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.1-compact.zip index 3d34be28e..1acae4eae 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.1-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.2-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.2-compact.zip index b1f95896b..60fd9421e 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.2-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.3-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.3-compact.zip index 3e3068d62..f6bab2cff 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.3-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.4-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.4-compact.zip index 9dbafff67..66836af11 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.4-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.5-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.5-compact.zip index e6bb5ec61..1fcec6696 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.5-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.6-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.6-compact.zip index d3ff730ab..783afcec1 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.6-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/trycatch-0.8.7-compact.zip b/tests/ast-parsing/compile/trycatch-0.8.7-compact.zip index 4cb2a5c81..a68da7f54 100644 Binary files a/tests/ast-parsing/compile/trycatch-0.8.7-compact.zip and b/tests/ast-parsing/compile/trycatch-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.0-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.0-legacy.zip index 48f8080e3..5d641a6fc 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.0-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.1-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.1-legacy.zip index 4d0550a98..9f698d032 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.1-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.10-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.10-legacy.zip index afc609b99..30b67b307 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.10-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.11-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.11-legacy.zip index 620907a59..193eb7001 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.11-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.12-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.12-compact.zip index 0eaaaf94e..e0efd88a2 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.12-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.12-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.12-legacy.zip index 84cbb4021..823958b69 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.12-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.13-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.13-compact.zip index 21e0a8a70..c985b8ffe 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.13-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.13-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.13-legacy.zip index 10b2665f1..49d0a7d02 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.13-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.14-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.14-compact.zip index fae45eed2..82e928025 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.14-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.14-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.14-legacy.zip index 8c5eba312..02ec599c5 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.14-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.15-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.15-compact.zip index 89afc6d86..6e6aa2f28 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.15-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.15-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.15-legacy.zip index 62e7521e5..529776705 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.15-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.16-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.16-compact.zip index 7e780aa8d..8588be619 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.16-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.16-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.16-legacy.zip index c40f94c13..af1cf0018 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.16-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.17-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.17-compact.zip index d01d47714..eb1b9f8db 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.17-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.17-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.17-legacy.zip index 92ca15680..b1356b170 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.17-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.18-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.18-compact.zip index 60aa8c263..7771e1acb 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.18-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.18-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.18-legacy.zip index db26d14bc..a226766be 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.18-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.19-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.19-compact.zip index c5f5e008f..c1c6244b6 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.19-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.19-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.19-legacy.zip index 3427994bf..c521612c6 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.19-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.2-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.2-legacy.zip index 9d9e0d6c1..13de56503 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.2-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.20-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.20-compact.zip index 14996d9c0..1d4c19110 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.20-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.20-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.20-legacy.zip index 89ccc32d3..fedd13fdb 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.20-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.21-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.21-compact.zip index 2bc49c4d7..ca05881a0 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.21-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.21-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.21-legacy.zip index ef3c9bd30..67e4c5ed9 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.21-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.22-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.22-compact.zip index 03991626f..e609b87be 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.22-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.22-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.22-legacy.zip index 43a18de34..f8ec818eb 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.22-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.23-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.23-compact.zip index 440ab070e..afaafd212 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.23-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.23-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.23-legacy.zip index d4adc5058..1d48e55b3 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.23-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.24-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.24-compact.zip index 6601bb440..fdd26b7f8 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.24-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.24-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.24-legacy.zip index ad1f0c442..dd0bdcb9c 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.24-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.25-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.25-compact.zip index f2cad6576..15a693ba7 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.25-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.25-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.25-legacy.zip index 38376cdfd..352c7bc11 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.25-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.26-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.4.26-compact.zip index 4badf4a3c..716ea3079 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.26-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.26-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.26-legacy.zip index cde4ce7db..ffa6e7f8f 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.26-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.3-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.3-legacy.zip index c79a01fbd..4862dd9ef 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.3-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.4-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.4-legacy.zip index 1d761a288..354e7bfca 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.4-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.5-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.5-legacy.zip index e03273ac9..0d74a5521 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.5-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.6-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.6-legacy.zip index 05857d0a9..f930a0439 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.6-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.7-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.7-legacy.zip index 6176c6a99..517bd24cc 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.7-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.8-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.8-legacy.zip index b0384bbc1..33825643a 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.8-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.4.9-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.4.9-legacy.zip index 0ab7edcc1..4d03a3c0b 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.4.9-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.0-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.0-compact.zip index 1d90e6247..1c90df51a 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.0-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.0-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.0-legacy.zip index 8678029cd..f7afff03d 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.0-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.1-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.1-compact.zip index 2b9e3eda9..dfacc8ca5 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.1-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.1-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.1-legacy.zip index 1f7ad1aa0..793c81a29 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.1-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.10-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.10-compact.zip index 7294ad0a6..2e3dafbaf 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.10-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.10-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.10-legacy.zip index f86e723b8..bed09f528 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.10-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.11-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.11-compact.zip index 0b8f76b00..9e504a22d 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.11-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.11-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.11-legacy.zip index 0536263fb..ecd09af28 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.11-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.12-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.12-compact.zip index a2610d729..5f77144a7 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.12-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.12-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.12-legacy.zip index f5cd73b7e..e7580a657 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.12-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.13-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.13-compact.zip index 6bee27030..342971414 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.13-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.13-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.13-legacy.zip index 9321b9ff3..c37182a20 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.13-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.14-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.14-compact.zip index 7e50c7684..ee53a8c10 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.14-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.14-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.14-legacy.zip index 9766de99f..2a2e3e385 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.14-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.15-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.15-compact.zip index 6d05afa1c..335ad9072 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.15-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.15-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.15-legacy.zip index 32a0bb573..64f1641e4 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.15-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.16-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.16-compact.zip index 1f6a10a9d..b4ce3d669 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.16-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.16-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.16-legacy.zip index bc3ce5b7b..136d9f343 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.16-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.17-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.17-compact.zip index f2e98bd3b..e0695fc27 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.17-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.17-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.17-legacy.zip index 261cdb0a9..e22688039 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.17-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.2-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.2-compact.zip index 250999b8e..f088905bf 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.2-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.2-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.2-legacy.zip index 03a831226..2f255c634 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.2-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.3-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.3-compact.zip index 275c4a759..158d9d7b4 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.3-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.3-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.3-legacy.zip index 1e0bc91d1..dd9e511d9 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.3-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.4-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.4-compact.zip index 1218424d2..3f94f2a4e 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.4-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.4-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.4-legacy.zip index 45e0525dc..d8694f056 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.4-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.5-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.5-compact.zip index 1cb633dd7..9382406d7 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.5-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.5-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.5-legacy.zip index f66ca58bf..e6d92a148 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.5-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.6-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.6-compact.zip index 40e36394e..94ba27c38 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.6-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.6-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.6-legacy.zip index 8d60d4e26..eba2790cf 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.6-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.7-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.7-compact.zip index 167b5843b..bfb91ad2f 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.7-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.7-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.7-legacy.zip index 22985c8c9..a8755f0cc 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.7-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.8-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.8-compact.zip index 68c409835..649b92e3a 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.8-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.8-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.8-legacy.zip index bb74ba424..bdec51e59 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.8-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.9-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.5.9-compact.zip index b3a0cfb4c..919a6307a 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.9-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.5.9-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.5.9-legacy.zip index 3e336f9f5..e41b12654 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.5.9-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.0-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.0-compact.zip index b02d1a69b..5a4a3362d 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.0-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.0-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.0-legacy.zip index b95af901a..bc952c13a 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.0-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.1-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.1-compact.zip index ec78f99f7..527e16a5c 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.1-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.1-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.1-legacy.zip index 0ae8f87f3..5e6c17c58 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.1-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.10-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.10-compact.zip index afaa4ceae..9c2757a73 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.10-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.10-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.10-legacy.zip index 70c40cd86..264390bc2 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.10-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.11-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.11-compact.zip index aba125d21..2df4b01c1 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.11-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.11-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.11-legacy.zip index 05eca79d8..ebbc71f90 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.11-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.12-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.12-compact.zip index a5601123f..02876210a 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.12-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.12-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.12-legacy.zip index a68a087dd..11ce0390b 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.12-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.2-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.2-compact.zip index fe2c71f7b..0d5ec48bb 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.2-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.2-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.2-legacy.zip index b94147f7f..58511d41e 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.2-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.3-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.3-compact.zip index 89a3faf13..cdcba2a54 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.3-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.3-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.3-legacy.zip index c5f996960..f7e4bf4ac 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.3-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.4-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.4-compact.zip index 1dbdd2be1..19dc3ed3e 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.4-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.4-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.4-legacy.zip index 199740603..c2eb24332 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.4-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.5-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.5-compact.zip index f8a2fa5d7..2321f7ab0 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.5-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.5-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.5-legacy.zip index 8f0630c05..c14a1db57 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.5-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.6-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.6-compact.zip index 55a00a8ef..e0fa7fc22 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.6-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.6-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.6-legacy.zip index 4c27a482d..3f15e9188 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.6-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.7-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.7-compact.zip index d353d97d3..ab87b4f71 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.7-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.7-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.7-legacy.zip index 971edfdaf..6595d1b28 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.7-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.8-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.8-compact.zip index 0cc2485c6..5915620cb 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.8-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.8-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.8-legacy.zip index 022eea760..032b2b0c1 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.8-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.9-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.6.9-compact.zip index 08f399dfb..fa93537ea 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.9-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.6.9-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.6.9-legacy.zip index ff9d8f99e..87b9a7f1b 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.6.9-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.0-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.0-compact.zip index c01b81cb8..0c1757287 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.0-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.0-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.0-legacy.zip index 670190209..8f3c6c131 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.0-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.1-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.1-compact.zip index eb821ef84..1ce8d36c3 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.1-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.1-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.1-legacy.zip index 81d43164e..adfa9cd5c 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.1-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.2-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.2-compact.zip index 7fae82cbc..1053ef856 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.2-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.2-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.2-legacy.zip index 4a1291c5e..41a1bace6 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.2-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.3-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.3-compact.zip index f19eaf04d..7dd38b9a2 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.3-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.3-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.3-legacy.zip index c9203e245..9bd68a5f8 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.3-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.4-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.4-compact.zip index 41fa25c71..2d324c08e 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.4-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.4-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.4-legacy.zip index a39a6d210..e9fce3070 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.4-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.5-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.5-compact.zip index 8205470d0..9e9ac1891 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.5-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.5-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.5-legacy.zip index c078680ed..95a902a24 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.5-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.6-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.7.6-compact.zip index 87cfcb0e4..dfdf235e9 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.6-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.7.6-legacy.zip b/tests/ast-parsing/compile/tupleexpression-0.7.6-legacy.zip index 0938ab0d8..70d890742 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.7.6-legacy.zip and b/tests/ast-parsing/compile/tupleexpression-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.0-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.0-compact.zip index 3f5d91233..2612b9c01 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.0-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.1-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.1-compact.zip index c45490f54..644852a85 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.1-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.2-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.2-compact.zip index b48b22a6d..fed52b540 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.2-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.3-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.3-compact.zip index aa47c27bb..e6775a366 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.3-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.4-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.4-compact.zip index 0c54902b9..7829a162c 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.4-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.5-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.5-compact.zip index 413382c1b..83e062867 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.5-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.6-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.6-compact.zip index 25bb46c47..07c70f53e 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.6-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/tupleexpression-0.8.7-compact.zip b/tests/ast-parsing/compile/tupleexpression-0.8.7-compact.zip index a374656e7..0e401b696 100644 Binary files a/tests/ast-parsing/compile/tupleexpression-0.8.7-compact.zip and b/tests/ast-parsing/compile/tupleexpression-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.0-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.0-legacy.zip index c42c4d5d8..8d0c1167b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.0-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.1-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.1-legacy.zip index 3efb2f90e..5727a41f1 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.1-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.10-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.10-legacy.zip index 33646ea6f..363de57dc 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.10-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.11-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.11-legacy.zip index 1f7858beb..52c96be22 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.11-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.12-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.12-compact.zip index 2ddd85a63..8b9143d7b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.12-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.12-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.12-legacy.zip index 435127260..91b3c02bc 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.12-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.13-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.13-compact.zip index 6838444cc..249f4dac9 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.13-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.13-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.13-legacy.zip index 960c82814..f1e3279e6 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.13-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.14-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.14-compact.zip index b8eea671e..3d341609e 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.14-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.14-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.14-legacy.zip index 4074d2fd2..3a48f0193 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.14-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.15-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.15-compact.zip index d4c83b1b3..4e8e7475c 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.15-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.15-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.15-legacy.zip index 788fdafb6..4703eb805 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.15-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.16-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.16-compact.zip index 77371a196..eae7c6d5e 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.16-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.16-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.16-legacy.zip index d22443c10..54e3de721 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.16-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.17-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.17-compact.zip index 232bda0b8..253b74959 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.17-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.17-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.17-legacy.zip index e9a277102..401bfa77e 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.17-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.18-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.18-compact.zip index 9deaca06f..abba0314a 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.18-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.18-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.18-legacy.zip index 39477adb1..bb895a9f0 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.18-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.19-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.19-compact.zip index f8d2b65f3..d5550f428 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.19-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.19-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.19-legacy.zip index 2b00ed5a8..ea13cf42b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.19-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.2-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.2-legacy.zip index 2677fb327..0fed6b2f2 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.2-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.20-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.20-compact.zip index 2318f3b0a..33290617b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.20-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.20-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.20-legacy.zip index a7275bd1f..3a370fa3d 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.20-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.21-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.21-compact.zip index a7a928a29..06e90c3f6 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.21-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.21-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.21-legacy.zip index b49557e10..4ccfa4676 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.21-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.22-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.22-compact.zip index 3cfbc8ce9..fb0253d7b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.22-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.22-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.22-legacy.zip index 8d44f34e5..75b6fe67a 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.22-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.23-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.23-compact.zip index abd755335..5b41e3699 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.23-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.23-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.23-legacy.zip index 8a905176f..5edd364f3 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.23-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.24-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.24-compact.zip index 7e468e0a7..3ed82e27d 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.24-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.24-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.24-legacy.zip index ed0b5bc4e..050de2c41 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.24-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.25-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.25-compact.zip index 5265b5dad..eb9100278 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.25-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.25-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.25-legacy.zip index 852b6211e..7b458a440 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.25-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.26-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.4.26-compact.zip index c3dea68de..d4f5606ca 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.26-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.26-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.26-legacy.zip index c20294974..93ff2cf0b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.26-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.3-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.3-legacy.zip index 2cfaf978d..79c6e32c3 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.3-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.4-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.4-legacy.zip index da1f2d23c..287a10801 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.4-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.5-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.5-legacy.zip index 954fa5184..b500a6834 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.5-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.6-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.6-legacy.zip index fde8121c0..51bd89a77 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.6-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.7-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.7-legacy.zip index b25b0963a..a80d20038 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.7-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.8-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.8-legacy.zip index a3129019e..2f3148e25 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.8-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.4.9-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.4.9-legacy.zip index cff861c1a..0a3ab8e85 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.4.9-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.0-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.0-compact.zip index 42bea8379..ab5426577 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.0-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.0-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.0-legacy.zip index fdefa2416..21710386b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.0-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.1-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.1-compact.zip index 7a78d8708..13f87b7eb 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.1-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.1-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.1-legacy.zip index 3ba626eab..d696605f5 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.1-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.10-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.10-compact.zip index 955953a3d..3974b68df 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.10-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.10-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.10-legacy.zip index 96d665916..148e60ce0 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.10-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.11-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.11-compact.zip index 65cf039c7..0b4af4c96 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.11-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.11-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.11-legacy.zip index 4581c3b07..f2771d41c 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.11-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.12-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.12-compact.zip index 2151bfa7d..7179b6f00 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.12-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.12-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.12-legacy.zip index 8b3defb5d..789eb3e34 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.12-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.13-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.13-compact.zip index 1cd6e20a3..e31d9a7e2 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.13-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.13-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.13-legacy.zip index 5aac939a2..2efe85345 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.13-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.14-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.14-compact.zip index 01e401a4b..0677d343d 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.14-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.14-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.14-legacy.zip index 2f7610938..5c8838e19 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.14-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.15-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.15-compact.zip index f8d9577c3..2d60689cb 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.15-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.15-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.15-legacy.zip index 8a329159c..3f244b4ca 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.15-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.16-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.16-compact.zip index 1fe5f8122..24c12b6c2 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.16-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.16-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.16-legacy.zip index af30b7aaa..547d484e3 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.16-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.17-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.17-compact.zip index 214498aab..e6fe9fbbe 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.17-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.17-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.17-legacy.zip index 323cad228..a4b3253e4 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.17-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.2-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.2-compact.zip index a8afc0183..b565c6774 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.2-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.2-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.2-legacy.zip index 4827d9354..7ad9710de 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.2-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.3-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.3-compact.zip index 5c4187273..bcc4b7236 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.3-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.3-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.3-legacy.zip index 0a042bb0f..d42d7a07b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.3-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.4-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.4-compact.zip index 81adf4e63..0c33e6ab3 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.4-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.4-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.4-legacy.zip index 56b2b2e4e..9439020b6 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.4-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.5-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.5-compact.zip index 74f6471b8..a7fe4e8a8 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.5-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.5-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.5-legacy.zip index b7e287d67..ec44c352a 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.5-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.6-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.6-compact.zip index 6baae6bad..480bab02a 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.6-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.6-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.6-legacy.zip index 2d47bd2dc..fe9917f70 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.6-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.7-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.7-compact.zip index cc5175e5f..9a1f9b258 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.7-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.7-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.7-legacy.zip index 2bfbd4e64..4bc2c88ce 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.7-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.8-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.8-compact.zip index bc91751b6..de5bf7514 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.8-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.8-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.8-legacy.zip index a196e82d9..ac15fe7eb 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.8-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.9-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.5.9-compact.zip index 4a2ef22e8..8725dcab5 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.9-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.5.9-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.5.9-legacy.zip index b46e0edd8..65a2052cd 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.5.9-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.0-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.0-compact.zip index 6d3348518..5561165f7 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.0-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.0-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.0-legacy.zip index fce0abc9f..72400024a 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.0-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.1-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.1-compact.zip index 9f0613e85..42c48ba83 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.1-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.1-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.1-legacy.zip index 9572c33aa..7b76f6398 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.1-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.10-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.10-compact.zip index 66a2371e0..6b3c3e573 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.10-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.10-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.10-legacy.zip index 27878b437..2b1dca645 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.10-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.11-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.11-compact.zip index c36bb2f35..ca1e262fe 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.11-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.11-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.11-legacy.zip index a3653f8eb..ad62b5c73 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.11-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.12-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.12-compact.zip index 861f9a720..c918540a4 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.12-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.12-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.12-legacy.zip index a6975f92c..14a5fa240 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.12-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.2-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.2-compact.zip index a40475d9c..70a49caa7 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.2-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.2-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.2-legacy.zip index 6f83489db..a6678a583 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.2-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.3-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.3-compact.zip index 9653ece7e..f2b14d3e4 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.3-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.3-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.3-legacy.zip index e913e0fd2..3129b095d 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.3-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.4-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.4-compact.zip index d36986262..e3c863d90 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.4-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.4-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.4-legacy.zip index 8078a7808..8d98e053c 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.4-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.5-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.5-compact.zip index 56afaf8e0..bc1e39b46 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.5-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.5-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.5-legacy.zip index 347efb9ec..3a32aa5c9 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.5-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.6-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.6-compact.zip index 043be7845..c8f5de776 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.6-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.6-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.6-legacy.zip index 11ef9f4aa..56dfdc5a1 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.6-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.7-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.7-compact.zip index 0a7a3961a..2e438edd7 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.7-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.7-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.7-legacy.zip index 3e068d348..60170401b 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.7-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.8-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.8-compact.zip index ce2f91f32..167b60eb6 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.8-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.8-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.8-legacy.zip index 317e484de..9e3cbc60d 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.8-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.9-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.6.9-compact.zip index 4dff1e889..523b6fead 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.9-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.6.9-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.6.9-legacy.zip index cbc933ce0..a13168358 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.6.9-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.0-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.0-compact.zip index 334a1259e..677ceb557 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.0-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.0-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.0-legacy.zip index c07769033..be9e276fa 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.0-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.1-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.1-compact.zip index edc06ef5a..a7fa1e95e 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.1-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.1-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.1-legacy.zip index 2457d45f1..0a891674d 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.1-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.2-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.2-compact.zip index fb6059ca0..eee9dd777 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.2-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.2-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.2-legacy.zip index 43a94881b..27c8c4bed 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.2-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.3-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.3-compact.zip index 3fa324281..91f04c6f2 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.3-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.3-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.3-legacy.zip index d81172e57..acba0780f 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.3-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.4-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.4-compact.zip index 6ab846274..2d8a159d9 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.4-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.4-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.4-legacy.zip index 25c4f83e3..97f27cd38 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.4-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.5-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.5-compact.zip index ea76a7cac..b7a565d76 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.5-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.5-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.5-legacy.zip index d30be4531..6cecc7d90 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.5-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.6-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.7.6-compact.zip index 16a3652c6..2973d16a8 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.6-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.7.6-legacy.zip b/tests/ast-parsing/compile/unaryexpression-0.7.6-legacy.zip index 7b75b8f8b..2854df2ba 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.7.6-legacy.zip and b/tests/ast-parsing/compile/unaryexpression-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.0-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.0-compact.zip index 8bc1daac0..eaee8c96a 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.0-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.1-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.1-compact.zip index 4cc02db87..f4726699f 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.1-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.2-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.2-compact.zip index cad7049c2..02c320971 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.2-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.3-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.3-compact.zip index 48bcd5995..800a820dd 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.3-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.4-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.4-compact.zip index b48bf8ea7..90d53f545 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.4-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.5-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.5-compact.zip index 673d19734..84ba34637 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.5-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.6-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.6-compact.zip index 4bf302318..c456b4113 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.6-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unaryexpression-0.8.7-compact.zip b/tests/ast-parsing/compile/unaryexpression-0.8.7-compact.zip index 0ae2e9e03..b04824daa 100644 Binary files a/tests/ast-parsing/compile/unaryexpression-0.8.7-compact.zip and b/tests/ast-parsing/compile/unaryexpression-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.0-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.0-legacy.zip index afa31cb4b..4fd3fe05a 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.0-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.1-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.1-legacy.zip index 4c624ab53..000aab8c0 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.1-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.10-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.10-legacy.zip index e0e915193..c7f08c1f5 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.10-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.11-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.11-legacy.zip index cceafefcd..39f3be179 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.11-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.12-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.12-compact.zip index 26c9c752e..aebac3c3c 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.12-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.12-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.12-legacy.zip index ad0a00a61..02aac1e01 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.12-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.13-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.13-compact.zip index c766c7abb..9bc5a24af 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.13-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.13-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.13-legacy.zip index 6b9beec9c..726233e29 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.13-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.14-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.14-compact.zip index 9a06283d1..643ac5fb6 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.14-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.14-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.14-legacy.zip index fcaa14e88..940612a17 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.14-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.15-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.15-compact.zip index 2b4ca9608..fffa36730 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.15-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.15-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.15-legacy.zip index 57d88aa5a..88b95b59b 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.15-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.16-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.16-compact.zip index 66a13f09b..f677b4b52 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.16-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.16-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.16-legacy.zip index bffa3e35e..cca5cd304 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.16-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.17-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.17-compact.zip index f2a4039d5..9b830e9b1 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.17-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.17-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.17-legacy.zip index 362d1e0fd..ab2d11c15 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.17-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.18-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.18-compact.zip index 9659fd287..c8675062d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.18-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.18-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.18-legacy.zip index 0fea83810..4dcc363fc 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.18-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.19-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.19-compact.zip index e42a4673e..abdab7ea1 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.19-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.19-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.19-legacy.zip index 6c9a9698e..6dc94f57e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.19-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.2-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.2-legacy.zip index 8d1ab6610..2dfcfa4ce 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.2-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.20-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.20-compact.zip index 274160ea2..43e29e422 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.20-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.20-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.20-legacy.zip index 0f389aa04..015a915be 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.20-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.21-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.21-compact.zip index 95dc3b061..6afa6f53f 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.21-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.21-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.21-legacy.zip index 9ada6e47c..d7bc6a321 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.21-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.22-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.22-compact.zip index ab057d483..c70974f0e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.22-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.22-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.22-legacy.zip index 11b8eb819..ed9225f8e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.22-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.23-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.23-compact.zip index 11b8c6c79..95271fd27 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.23-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.23-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.23-legacy.zip index 4a52501d9..8a9d2f233 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.23-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.24-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.24-compact.zip index 91264fd04..616a5029e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.24-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.24-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.24-legacy.zip index 86766b61f..452d45f15 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.24-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.25-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.25-compact.zip index 80bbb6c80..102fe0c1f 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.25-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.25-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.25-legacy.zip index 89b28ccf2..c2e1758d3 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.25-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.26-compact.zip b/tests/ast-parsing/compile/unchecked-0.4.26-compact.zip index ee86669b0..3a02853db 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.26-compact.zip and b/tests/ast-parsing/compile/unchecked-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.26-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.26-legacy.zip index 3bf98c450..79fe56f49 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.26-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.3-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.3-legacy.zip index 759cfdce8..4cfbc454d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.3-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.4-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.4-legacy.zip index 31648fe24..9293a09a2 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.4-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.5-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.5-legacy.zip index 1bdf4fa20..3586b68c7 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.5-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.6-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.6-legacy.zip index c5d67c0bd..e9d54e210 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.6-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.7-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.7-legacy.zip index ce5b145a0..a719f8785 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.7-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.8-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.8-legacy.zip index 0c91548f1..8ddda1ebc 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.8-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.4.9-legacy.zip b/tests/ast-parsing/compile/unchecked-0.4.9-legacy.zip index daf9af66d..3850acffd 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.4.9-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.0-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.0-compact.zip index bea5d4438..3b3189524 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.0-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.0-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.0-legacy.zip index 70e5b1758..05fac4079 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.0-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.1-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.1-compact.zip index 6efe62bbe..16e3eb1a4 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.1-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.1-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.1-legacy.zip index e184ff08a..fbbf0c57f 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.1-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.10-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.10-compact.zip index 4af745a6d..9a04e3437 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.10-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.10-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.10-legacy.zip index fb65a2e13..e7419f86d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.10-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.11-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.11-compact.zip index b4bc8b958..dbf660f45 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.11-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.11-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.11-legacy.zip index e0c45d9bf..b32609936 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.11-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.12-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.12-compact.zip index a3a0cd9c6..da2b77c48 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.12-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.12-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.12-legacy.zip index 9938426bc..cc4ca9572 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.12-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.13-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.13-compact.zip index d40c1dd4d..f71e14ca9 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.13-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.13-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.13-legacy.zip index 278451658..3a71cd24d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.13-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.14-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.14-compact.zip index 326823ac0..be5d973e3 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.14-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.14-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.14-legacy.zip index 6bd11a3cf..5114327c7 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.14-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.15-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.15-compact.zip index c1a5c2d5b..3644ad640 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.15-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.15-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.15-legacy.zip index e5faab732..1fda96b49 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.15-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.16-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.16-compact.zip index da3a4742a..8f21a331a 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.16-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.16-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.16-legacy.zip index 855b5eb5a..a5eb37b78 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.16-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.17-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.17-compact.zip index c82768731..a06c2192c 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.17-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.17-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.17-legacy.zip index 0d2ba25e8..808b291ff 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.17-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.2-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.2-compact.zip index f4658b9ce..f47378b8f 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.2-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.2-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.2-legacy.zip index ac69fdc38..d79828742 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.2-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.3-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.3-compact.zip index 596166577..27eb9cbc9 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.3-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.3-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.3-legacy.zip index 7e75607db..f2634b14f 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.3-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.4-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.4-compact.zip index 2eb9f2f9c..a222e0d97 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.4-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.4-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.4-legacy.zip index 0f551ac39..49b2c3c3d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.4-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.5-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.5-compact.zip index 0bb81f7b3..212cf06a8 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.5-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.5-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.5-legacy.zip index 97225c4d7..f881ae85d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.5-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.6-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.6-compact.zip index 6de7f170c..5218758ad 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.6-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.6-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.6-legacy.zip index 0d34af757..40f06ec37 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.6-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.7-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.7-compact.zip index 108ba1ffc..418fdf130 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.7-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.7-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.7-legacy.zip index 650849966..c84d72545 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.7-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.8-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.8-compact.zip index 4ad4bbc09..0e28263a6 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.8-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.8-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.8-legacy.zip index 5c4912674..fa073fb65 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.8-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.9-compact.zip b/tests/ast-parsing/compile/unchecked-0.5.9-compact.zip index 28edca302..b29fc6fa4 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.9-compact.zip and b/tests/ast-parsing/compile/unchecked-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.5.9-legacy.zip b/tests/ast-parsing/compile/unchecked-0.5.9-legacy.zip index 93eba1f76..0f381010d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.5.9-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.0-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.0-compact.zip index 5b86d1844..c9228a589 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.0-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.0-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.0-legacy.zip index 6006a1346..e1e2da27b 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.0-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.1-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.1-compact.zip index e3261eb47..3fb900a51 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.1-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.1-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.1-legacy.zip index 8c39453e4..af5e0d66c 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.1-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.10-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.10-compact.zip index 7f8917c4f..03042077e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.10-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.10-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.10-legacy.zip index 14c6285dd..5eb7eb4ed 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.10-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.11-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.11-compact.zip index 9ef32478a..1cbd8aa90 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.11-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.11-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.11-legacy.zip index d5a47ae65..0791bb17d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.11-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.12-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.12-compact.zip index 6208694d3..ddc8c0f26 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.12-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.12-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.12-legacy.zip index b4d7da9af..cd07df6d1 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.12-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.2-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.2-compact.zip index 7e07d658e..be90d6c32 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.2-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.2-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.2-legacy.zip index cd346ea42..a0dcf87c3 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.2-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.3-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.3-compact.zip index afe9f3c2c..605d7e3b5 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.3-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.3-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.3-legacy.zip index cccbe8fb0..933045207 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.3-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.4-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.4-compact.zip index a954519dd..de0b68917 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.4-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.4-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.4-legacy.zip index 1e9519071..27c7d986f 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.4-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.5-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.5-compact.zip index 0270d0e0b..0ff670c60 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.5-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.5-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.5-legacy.zip index 79e684eee..bc4df9265 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.5-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.6-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.6-compact.zip index 474d1670f..a9e65fade 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.6-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.6-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.6-legacy.zip index 19bf45c3f..aa8175eb6 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.6-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.7-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.7-compact.zip index 8d047bd06..b07018128 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.7-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.7-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.7-legacy.zip index b1e53231d..e965d6c80 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.7-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.8-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.8-compact.zip index 079787ad8..cf3517823 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.8-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.8-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.8-legacy.zip index 31f1c3e8d..7857e8e0e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.8-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.9-compact.zip b/tests/ast-parsing/compile/unchecked-0.6.9-compact.zip index 3b92bb29b..4230ef5bf 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.9-compact.zip and b/tests/ast-parsing/compile/unchecked-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.6.9-legacy.zip b/tests/ast-parsing/compile/unchecked-0.6.9-legacy.zip index f078b7e4d..86e99e1c9 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.6.9-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.0-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.0-compact.zip index f984d2d96..c1d682c44 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.0-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.0-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.0-legacy.zip index 1906b7877..d4c2cba7e 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.0-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.1-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.1-compact.zip index aaf712ad8..21bfe24f4 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.1-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.1-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.1-legacy.zip index 532d1a261..22d518e66 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.1-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.2-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.2-compact.zip index 7b0468662..c6ea7308d 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.2-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.2-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.2-legacy.zip index 4cd6ec7b0..ee47927ec 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.2-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.3-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.3-compact.zip index cfdaea998..a9042623c 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.3-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.3-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.3-legacy.zip index 8789ad598..edf68bf47 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.3-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.4-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.4-compact.zip index 9f9fd042f..1d96b5083 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.4-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.4-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.4-legacy.zip index 7aaada160..002cfd552 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.4-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.5-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.5-compact.zip index fcef7fc72..8b2868726 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.5-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.5-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.5-legacy.zip index 77180636a..9d1a36f4a 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.5-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.6-compact.zip b/tests/ast-parsing/compile/unchecked-0.7.6-compact.zip index 72cba521e..e4edc3ab9 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.6-compact.zip and b/tests/ast-parsing/compile/unchecked-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.7.6-legacy.zip b/tests/ast-parsing/compile/unchecked-0.7.6-legacy.zip index b7ad3ece3..6f14fdc0b 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.7.6-legacy.zip and b/tests/ast-parsing/compile/unchecked-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.0-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.0-compact.zip index 70a71b90e..773714be0 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.0-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.1-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.1-compact.zip index e31ad7677..e5be56633 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.1-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.2-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.2-compact.zip index 556955fd4..0ec97ad74 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.2-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.3-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.3-compact.zip index f2c6aed81..4eb6c852c 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.3-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.4-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.4-compact.zip index c0cca22e5..7e0af0adf 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.4-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.5-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.5-compact.zip index f478e73ed..f81930083 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.5-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.6-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.6-compact.zip index 37de93721..73dd922de 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.6-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/unchecked-0.8.7-compact.zip b/tests/ast-parsing/compile/unchecked-0.8.7-compact.zip index 6531816be..2fe3b0efa 100644 Binary files a/tests/ast-parsing/compile/unchecked-0.8.7-compact.zip and b/tests/ast-parsing/compile/unchecked-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.0-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.0-legacy.zip index 29851eacf..0a6b3a81b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.0-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.1-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.1-legacy.zip index a816a225f..0d462196e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.1-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.10-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.10-legacy.zip index 4042a3c16..3adf30f9d 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.10-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.11-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.11-legacy.zip index 685c54f8e..41f156242 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.11-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.12-compact.zip b/tests/ast-parsing/compile/using-for-0.4.12-compact.zip index 11ff7ba88..ac646d5f0 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.12-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.12-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.12-legacy.zip index 3c1db2282..32222df2f 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.12-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.13-compact.zip b/tests/ast-parsing/compile/using-for-0.4.13-compact.zip index 2022a7416..47f60e058 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.13-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.13-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.13-legacy.zip index 8402a2080..afb0c556a 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.13-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.14-compact.zip b/tests/ast-parsing/compile/using-for-0.4.14-compact.zip index 0cdd5869d..0ce31f9f4 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.14-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.14-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.14-legacy.zip index e538a36c4..784985dbc 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.14-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.15-compact.zip b/tests/ast-parsing/compile/using-for-0.4.15-compact.zip index 5c0f47b62..d2b4febfa 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.15-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.15-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.15-legacy.zip index 8f071fa3c..a4cb654dd 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.15-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.16-compact.zip b/tests/ast-parsing/compile/using-for-0.4.16-compact.zip index 23491d539..d597252f1 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.16-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.16-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.16-legacy.zip index 131ec8ed3..3e516dbdb 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.16-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.17-compact.zip b/tests/ast-parsing/compile/using-for-0.4.17-compact.zip index 90152f9f1..509088d90 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.17-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.17-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.17-legacy.zip index 72949ff7e..03d95166e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.17-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.18-compact.zip b/tests/ast-parsing/compile/using-for-0.4.18-compact.zip index ec06a2a9a..7806b0c95 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.18-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.18-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.18-legacy.zip index 10fd604cf..e793ccc1d 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.18-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.19-compact.zip b/tests/ast-parsing/compile/using-for-0.4.19-compact.zip index daa80937a..50048beae 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.19-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.19-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.19-legacy.zip index 2f4daf4c7..7a40aa640 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.19-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.2-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.2-legacy.zip index fc3026357..4049356a6 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.2-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.20-compact.zip b/tests/ast-parsing/compile/using-for-0.4.20-compact.zip index 3aad6bda3..347870629 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.20-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.20-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.20-legacy.zip index 1d96597a0..0deb2faf2 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.20-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.21-compact.zip b/tests/ast-parsing/compile/using-for-0.4.21-compact.zip index 0d1f78e52..bfdb20f82 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.21-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.21-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.21-legacy.zip index b30f35b82..0e1639259 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.21-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.22-compact.zip b/tests/ast-parsing/compile/using-for-0.4.22-compact.zip index 1701a2371..e69cbdf31 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.22-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.22-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.22-legacy.zip index a67214885..88dd30460 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.22-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.23-compact.zip b/tests/ast-parsing/compile/using-for-0.4.23-compact.zip index 95219a5e7..575fc29af 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.23-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.23-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.23-legacy.zip index 82b8fb97f..92a48044e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.23-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.24-compact.zip b/tests/ast-parsing/compile/using-for-0.4.24-compact.zip index 1e7bea202..9243f4bb2 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.24-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.24-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.24-legacy.zip index 1ff807dfd..0f88c9e55 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.24-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.25-compact.zip b/tests/ast-parsing/compile/using-for-0.4.25-compact.zip index 7bacb0705..97dd2fff9 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.25-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.25-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.25-legacy.zip index d6668b587..cd347df41 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.25-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.26-compact.zip b/tests/ast-parsing/compile/using-for-0.4.26-compact.zip index 05035c53c..20a746055 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.26-compact.zip and b/tests/ast-parsing/compile/using-for-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.26-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.26-legacy.zip index 3aff71f01..9820692a6 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.26-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.3-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.3-legacy.zip index 1c11ddfb1..4e21098c6 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.3-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.4-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.4-legacy.zip index e9fcc5c69..7795dce1b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.4-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.5-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.5-legacy.zip index 8c9a77dc0..c4bdcc7ce 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.5-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.6-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.6-legacy.zip index 7a1236abc..604f25f9c 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.6-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.7-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.7-legacy.zip index a6b66b091..a4456d943 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.7-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.8-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.8-legacy.zip index b45faf4ef..c9f32cb29 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.8-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.4.9-legacy.zip b/tests/ast-parsing/compile/using-for-0.4.9-legacy.zip index 4d1439914..2060d1558 100644 Binary files a/tests/ast-parsing/compile/using-for-0.4.9-legacy.zip and b/tests/ast-parsing/compile/using-for-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.0-compact.zip b/tests/ast-parsing/compile/using-for-0.5.0-compact.zip index 491906c64..16ae2fb33 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.0-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.0-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.0-legacy.zip index d6196ba6c..31ecb9251 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.0-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.1-compact.zip b/tests/ast-parsing/compile/using-for-0.5.1-compact.zip index 8c0af0ffe..b35bb6984 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.1-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.1-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.1-legacy.zip index c2379ba58..46ec3a634 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.1-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.10-compact.zip b/tests/ast-parsing/compile/using-for-0.5.10-compact.zip index f31fa7a34..18b1b2afc 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.10-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.10-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.10-legacy.zip index 9eab00848..e0467cb06 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.10-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.11-compact.zip b/tests/ast-parsing/compile/using-for-0.5.11-compact.zip index 5d6ab915b..80a6aed09 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.11-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.11-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.11-legacy.zip index 0e26fe441..fcabf5f0b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.11-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.12-compact.zip b/tests/ast-parsing/compile/using-for-0.5.12-compact.zip index 2f57fe0c2..56559510e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.12-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.12-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.12-legacy.zip index c500db79e..a695f9760 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.12-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.13-compact.zip b/tests/ast-parsing/compile/using-for-0.5.13-compact.zip index 049a32fe4..dd9b0c2fd 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.13-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.13-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.13-legacy.zip index f027d47e6..94027e377 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.13-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.14-compact.zip b/tests/ast-parsing/compile/using-for-0.5.14-compact.zip index 99f64704b..5b1012d71 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.14-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.14-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.14-legacy.zip index d5d766b28..ab62850f9 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.14-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.15-compact.zip b/tests/ast-parsing/compile/using-for-0.5.15-compact.zip index 24ce85c21..e3b4d8561 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.15-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.15-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.15-legacy.zip index 19cb48f43..f3412a9f5 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.15-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.16-compact.zip b/tests/ast-parsing/compile/using-for-0.5.16-compact.zip index 0ad838488..9b06f4e48 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.16-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.16-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.16-legacy.zip index 4f6272c71..b06915f6e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.16-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.17-compact.zip b/tests/ast-parsing/compile/using-for-0.5.17-compact.zip index 2b40767de..24fe1589a 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.17-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.17-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.17-legacy.zip index f42ed7d09..3a0364a36 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.17-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.2-compact.zip b/tests/ast-parsing/compile/using-for-0.5.2-compact.zip index 1cb46c29a..041c6107b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.2-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.2-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.2-legacy.zip index a06e6d02d..0ef79d5ec 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.2-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.3-compact.zip b/tests/ast-parsing/compile/using-for-0.5.3-compact.zip index b7f529d72..863e6659d 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.3-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.3-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.3-legacy.zip index 5ea95ee28..3c8ca518e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.3-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.4-compact.zip b/tests/ast-parsing/compile/using-for-0.5.4-compact.zip index e97733f42..6d02a51c9 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.4-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.4-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.4-legacy.zip index 084e6709a..c0c9d692f 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.4-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.5-compact.zip b/tests/ast-parsing/compile/using-for-0.5.5-compact.zip index 95c9acec5..4034c9a80 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.5-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.5-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.5-legacy.zip index 11826d5f0..a2c93d22e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.5-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.6-compact.zip b/tests/ast-parsing/compile/using-for-0.5.6-compact.zip index d2cf0fc84..b14934c5b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.6-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.6-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.6-legacy.zip index f143e0156..8e76dc438 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.6-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.7-compact.zip b/tests/ast-parsing/compile/using-for-0.5.7-compact.zip index 4562fb88d..e3c3fb8a6 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.7-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.7-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.7-legacy.zip index c726afcc7..27573e3c0 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.7-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.8-compact.zip b/tests/ast-parsing/compile/using-for-0.5.8-compact.zip index 9d6a62341..e5ef2756b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.8-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.8-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.8-legacy.zip index 583a22b24..876daa2e4 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.8-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.9-compact.zip b/tests/ast-parsing/compile/using-for-0.5.9-compact.zip index e6651a8d0..0bd79be3a 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.9-compact.zip and b/tests/ast-parsing/compile/using-for-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.5.9-legacy.zip b/tests/ast-parsing/compile/using-for-0.5.9-legacy.zip index 5b2ab691c..e599d550c 100644 Binary files a/tests/ast-parsing/compile/using-for-0.5.9-legacy.zip and b/tests/ast-parsing/compile/using-for-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.0-compact.zip b/tests/ast-parsing/compile/using-for-0.6.0-compact.zip index 2ef5c34cf..7b66353f3 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.0-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.0-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.0-legacy.zip index 7a45169fd..846e2fed4 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.0-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.1-compact.zip b/tests/ast-parsing/compile/using-for-0.6.1-compact.zip index cb573304a..ab5d75903 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.1-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.1-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.1-legacy.zip index 35ee84147..49dde6f7e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.1-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.10-compact.zip b/tests/ast-parsing/compile/using-for-0.6.10-compact.zip index 8733b00e7..d7cf33858 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.10-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.10-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.10-legacy.zip index f71f12b43..b29caefd0 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.10-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.11-compact.zip b/tests/ast-parsing/compile/using-for-0.6.11-compact.zip index 656080bc7..2d69495a7 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.11-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.11-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.11-legacy.zip index c4941c4c7..f60ec1bbb 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.11-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.12-compact.zip b/tests/ast-parsing/compile/using-for-0.6.12-compact.zip index 1c1f37a2a..5848eaa7d 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.12-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.12-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.12-legacy.zip index a84d6f152..cda2b163b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.12-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.2-compact.zip b/tests/ast-parsing/compile/using-for-0.6.2-compact.zip index 4e084f4d9..184beaad1 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.2-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.2-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.2-legacy.zip index f11a962e0..a27f05637 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.2-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.3-compact.zip b/tests/ast-parsing/compile/using-for-0.6.3-compact.zip index d8c807f85..a30a5697e 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.3-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.3-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.3-legacy.zip index c2acd8da5..8e5564ffd 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.3-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.4-compact.zip b/tests/ast-parsing/compile/using-for-0.6.4-compact.zip index 6c59fe0e1..8bad07132 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.4-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.4-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.4-legacy.zip index 837278f3b..defded8ad 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.4-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.5-compact.zip b/tests/ast-parsing/compile/using-for-0.6.5-compact.zip index 72b0a75b1..a2fdd5641 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.5-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.5-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.5-legacy.zip index b28b71e7a..19a14f76a 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.5-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.6-compact.zip b/tests/ast-parsing/compile/using-for-0.6.6-compact.zip index b788d94a5..0319068f2 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.6-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.6-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.6-legacy.zip index 1393bc848..13cf1d87c 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.6-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.7-compact.zip b/tests/ast-parsing/compile/using-for-0.6.7-compact.zip index 343c50ade..5a6d178e9 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.7-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.7-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.7-legacy.zip index b630ff392..a533ce357 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.7-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.8-compact.zip b/tests/ast-parsing/compile/using-for-0.6.8-compact.zip index 7a52d7378..cd3aa96b9 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.8-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.8-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.8-legacy.zip index c64e43db5..f070db3c7 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.8-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.9-compact.zip b/tests/ast-parsing/compile/using-for-0.6.9-compact.zip index f29ca505e..40b568328 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.9-compact.zip and b/tests/ast-parsing/compile/using-for-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.6.9-legacy.zip b/tests/ast-parsing/compile/using-for-0.6.9-legacy.zip index 729cd0b61..ca4e6ba80 100644 Binary files a/tests/ast-parsing/compile/using-for-0.6.9-legacy.zip and b/tests/ast-parsing/compile/using-for-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.0-compact.zip b/tests/ast-parsing/compile/using-for-0.7.0-compact.zip index 2ebd092fa..7774bdf2c 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.0-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.0-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.0-legacy.zip index b6f4186ba..d18fddbdb 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.0-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.1-compact.zip b/tests/ast-parsing/compile/using-for-0.7.1-compact.zip index 9a1ad45ca..8a60b90b0 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.1-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.1-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.1-legacy.zip index e29585529..61588ff25 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.1-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.2-compact.zip b/tests/ast-parsing/compile/using-for-0.7.2-compact.zip index 4edd24991..643690110 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.2-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.2-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.2-legacy.zip index 048b8f416..d68d3afef 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.2-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.3-compact.zip b/tests/ast-parsing/compile/using-for-0.7.3-compact.zip index 84a522254..f7131dba7 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.3-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.3-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.3-legacy.zip index 36ccaaaa1..a8ec0ab9a 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.3-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.4-compact.zip b/tests/ast-parsing/compile/using-for-0.7.4-compact.zip index 7f5686fb5..cbff658f2 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.4-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.4-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.4-legacy.zip index 4955bb15c..c47ade0c8 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.4-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.5-compact.zip b/tests/ast-parsing/compile/using-for-0.7.5-compact.zip index 49fc5c9ff..ffaf3d737 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.5-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.5-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.5-legacy.zip index c8980de59..d738bf544 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.5-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.6-compact.zip b/tests/ast-parsing/compile/using-for-0.7.6-compact.zip index a4f720a3c..1e22b4b0b 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.6-compact.zip and b/tests/ast-parsing/compile/using-for-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.7.6-legacy.zip b/tests/ast-parsing/compile/using-for-0.7.6-legacy.zip index 397af2bd2..1b7cd7268 100644 Binary files a/tests/ast-parsing/compile/using-for-0.7.6-legacy.zip and b/tests/ast-parsing/compile/using-for-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.0-compact.zip b/tests/ast-parsing/compile/using-for-0.8.0-compact.zip index 4786a6c3c..dcea913c2 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.0-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.1-compact.zip b/tests/ast-parsing/compile/using-for-0.8.1-compact.zip index 96e0b6bd9..aac9d03a7 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.1-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.2-compact.zip b/tests/ast-parsing/compile/using-for-0.8.2-compact.zip index 2fe51ad6c..5166dfba1 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.2-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.3-compact.zip b/tests/ast-parsing/compile/using-for-0.8.3-compact.zip index bfa8272a7..38a4f1617 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.3-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.4-compact.zip b/tests/ast-parsing/compile/using-for-0.8.4-compact.zip index 15fbe117c..d6a8cc096 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.4-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.5-compact.zip b/tests/ast-parsing/compile/using-for-0.8.5-compact.zip index ff54d6b9d..e4b6036cb 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.5-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.6-compact.zip b/tests/ast-parsing/compile/using-for-0.8.6-compact.zip index fa085c0f7..7db1d5897 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.6-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/using-for-0.8.7-compact.zip b/tests/ast-parsing/compile/using-for-0.8.7-compact.zip index 30bfad70f..1000b5a9f 100644 Binary files a/tests/ast-parsing/compile/using-for-0.8.7-compact.zip and b/tests/ast-parsing/compile/using-for-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.0-legacy.zip b/tests/ast-parsing/compile/variable-0.4.0-legacy.zip index 830ea89c2..106ad6366 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.0-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.1-legacy.zip b/tests/ast-parsing/compile/variable-0.4.1-legacy.zip index d06ece404..93e425b5d 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.1-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.10-legacy.zip b/tests/ast-parsing/compile/variable-0.4.10-legacy.zip index a915eff7e..394de5c7d 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.10-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.11-legacy.zip b/tests/ast-parsing/compile/variable-0.4.11-legacy.zip index cdd3dbdfa..3a8f2e093 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.11-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.12-compact.zip b/tests/ast-parsing/compile/variable-0.4.12-compact.zip index a3916ffef..686efe253 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.12-compact.zip and b/tests/ast-parsing/compile/variable-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.12-legacy.zip b/tests/ast-parsing/compile/variable-0.4.12-legacy.zip index ad9cecfdf..575457d03 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.12-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.13-compact.zip b/tests/ast-parsing/compile/variable-0.4.13-compact.zip index fd0589e51..09791cfd0 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.13-compact.zip and b/tests/ast-parsing/compile/variable-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.13-legacy.zip b/tests/ast-parsing/compile/variable-0.4.13-legacy.zip index 563a4fdc5..9fea310ce 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.13-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.14-compact.zip b/tests/ast-parsing/compile/variable-0.4.14-compact.zip index 9f80c1e06..c0a0bcbb4 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.14-compact.zip and b/tests/ast-parsing/compile/variable-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.14-legacy.zip b/tests/ast-parsing/compile/variable-0.4.14-legacy.zip index 7b4c99720..f297fb2c2 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.14-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.15-compact.zip b/tests/ast-parsing/compile/variable-0.4.15-compact.zip index 551c2e5b3..8a03f98fe 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.15-compact.zip and b/tests/ast-parsing/compile/variable-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.15-legacy.zip b/tests/ast-parsing/compile/variable-0.4.15-legacy.zip index c2c59ee48..b8ec6c280 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.15-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.16-compact.zip b/tests/ast-parsing/compile/variable-0.4.16-compact.zip index fdb2dff4f..9f74c5794 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.16-compact.zip and b/tests/ast-parsing/compile/variable-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.16-legacy.zip b/tests/ast-parsing/compile/variable-0.4.16-legacy.zip index 5091acd8b..153d9b9e9 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.16-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.17-compact.zip b/tests/ast-parsing/compile/variable-0.4.17-compact.zip index bd5ee490e..93da1d4c4 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.17-compact.zip and b/tests/ast-parsing/compile/variable-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.17-legacy.zip b/tests/ast-parsing/compile/variable-0.4.17-legacy.zip index 313e07411..9cc908038 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.17-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.18-compact.zip b/tests/ast-parsing/compile/variable-0.4.18-compact.zip index fd08acef7..20ad5330e 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.18-compact.zip and b/tests/ast-parsing/compile/variable-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.18-legacy.zip b/tests/ast-parsing/compile/variable-0.4.18-legacy.zip index 4600b2083..f4af80c00 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.18-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.19-compact.zip b/tests/ast-parsing/compile/variable-0.4.19-compact.zip index 936a95c0c..baef31506 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.19-compact.zip and b/tests/ast-parsing/compile/variable-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.19-legacy.zip b/tests/ast-parsing/compile/variable-0.4.19-legacy.zip index 1f3f66e49..e62548246 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.19-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.2-legacy.zip b/tests/ast-parsing/compile/variable-0.4.2-legacy.zip index 744fc24ce..25b79b3a9 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.2-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.20-compact.zip b/tests/ast-parsing/compile/variable-0.4.20-compact.zip index 65b40364a..e9725306a 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.20-compact.zip and b/tests/ast-parsing/compile/variable-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.20-legacy.zip b/tests/ast-parsing/compile/variable-0.4.20-legacy.zip index 182fc1167..8e251a233 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.20-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.21-compact.zip b/tests/ast-parsing/compile/variable-0.4.21-compact.zip index 73abf8db5..5ac5d0801 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.21-compact.zip and b/tests/ast-parsing/compile/variable-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.21-legacy.zip b/tests/ast-parsing/compile/variable-0.4.21-legacy.zip index 2aa32e7ce..6ba675631 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.21-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.22-compact.zip b/tests/ast-parsing/compile/variable-0.4.22-compact.zip index 004e2fd45..6e7e4d18c 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.22-compact.zip and b/tests/ast-parsing/compile/variable-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.22-legacy.zip b/tests/ast-parsing/compile/variable-0.4.22-legacy.zip index 3d8c89546..a185c9d77 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.22-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.23-compact.zip b/tests/ast-parsing/compile/variable-0.4.23-compact.zip index 7320a1b39..b9e6a164d 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.23-compact.zip and b/tests/ast-parsing/compile/variable-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.23-legacy.zip b/tests/ast-parsing/compile/variable-0.4.23-legacy.zip index ddc777e41..71a3c4f85 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.23-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.24-compact.zip b/tests/ast-parsing/compile/variable-0.4.24-compact.zip index 5dabe2cde..62d0f763f 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.24-compact.zip and b/tests/ast-parsing/compile/variable-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.24-legacy.zip b/tests/ast-parsing/compile/variable-0.4.24-legacy.zip index b28e5788d..d027a9b91 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.24-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.25-compact.zip b/tests/ast-parsing/compile/variable-0.4.25-compact.zip index a20472b33..dbbcb80ed 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.25-compact.zip and b/tests/ast-parsing/compile/variable-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.25-legacy.zip b/tests/ast-parsing/compile/variable-0.4.25-legacy.zip index 53d7058da..5361b4a74 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.25-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.26-compact.zip b/tests/ast-parsing/compile/variable-0.4.26-compact.zip index 6d0fb092d..4adafc09e 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.26-compact.zip and b/tests/ast-parsing/compile/variable-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.26-legacy.zip b/tests/ast-parsing/compile/variable-0.4.26-legacy.zip index 89a8686e1..b01b8fbc5 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.26-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.3-legacy.zip b/tests/ast-parsing/compile/variable-0.4.3-legacy.zip index 84daedd2a..f1420760d 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.3-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.4-legacy.zip b/tests/ast-parsing/compile/variable-0.4.4-legacy.zip index a89958645..82f1119fd 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.4-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.5-legacy.zip b/tests/ast-parsing/compile/variable-0.4.5-legacy.zip index a1176679c..6be88109f 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.5-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.6-legacy.zip b/tests/ast-parsing/compile/variable-0.4.6-legacy.zip index 50de45463..194db976c 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.6-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.7-legacy.zip b/tests/ast-parsing/compile/variable-0.4.7-legacy.zip index 85e90f406..728b57ef5 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.7-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.8-legacy.zip b/tests/ast-parsing/compile/variable-0.4.8-legacy.zip index 6b7fd4879..b7407c0f3 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.8-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.4.9-legacy.zip b/tests/ast-parsing/compile/variable-0.4.9-legacy.zip index 63adf737f..af7f6cae2 100644 Binary files a/tests/ast-parsing/compile/variable-0.4.9-legacy.zip and b/tests/ast-parsing/compile/variable-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.0-compact.zip b/tests/ast-parsing/compile/variable-0.5.0-compact.zip index 2db10a4b9..ddf440abb 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.0-compact.zip and b/tests/ast-parsing/compile/variable-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.0-legacy.zip b/tests/ast-parsing/compile/variable-0.5.0-legacy.zip index f38aa2b11..b870758cc 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.0-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.1-compact.zip b/tests/ast-parsing/compile/variable-0.5.1-compact.zip index 35821610a..1c86cc89e 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.1-compact.zip and b/tests/ast-parsing/compile/variable-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.1-legacy.zip b/tests/ast-parsing/compile/variable-0.5.1-legacy.zip index 287dd36b1..073fbb36c 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.1-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.10-compact.zip b/tests/ast-parsing/compile/variable-0.5.10-compact.zip index c72abb0fc..039b80ea5 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.10-compact.zip and b/tests/ast-parsing/compile/variable-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.10-legacy.zip b/tests/ast-parsing/compile/variable-0.5.10-legacy.zip index 5ed93750d..edd1061bf 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.10-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.11-compact.zip b/tests/ast-parsing/compile/variable-0.5.11-compact.zip index 000854cb4..ae520eda4 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.11-compact.zip and b/tests/ast-parsing/compile/variable-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.11-legacy.zip b/tests/ast-parsing/compile/variable-0.5.11-legacy.zip index cacfa247c..2e7ee8ba5 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.11-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.12-compact.zip b/tests/ast-parsing/compile/variable-0.5.12-compact.zip index ead523fbf..a015f38bb 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.12-compact.zip and b/tests/ast-parsing/compile/variable-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.12-legacy.zip b/tests/ast-parsing/compile/variable-0.5.12-legacy.zip index 100b187cf..43ee0c633 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.12-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.13-compact.zip b/tests/ast-parsing/compile/variable-0.5.13-compact.zip index 735dcf9e0..d24848963 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.13-compact.zip and b/tests/ast-parsing/compile/variable-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.13-legacy.zip b/tests/ast-parsing/compile/variable-0.5.13-legacy.zip index c67102899..ecda38ec6 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.13-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.14-compact.zip b/tests/ast-parsing/compile/variable-0.5.14-compact.zip index b2b7f4efb..5edb7f4d5 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.14-compact.zip and b/tests/ast-parsing/compile/variable-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.14-legacy.zip b/tests/ast-parsing/compile/variable-0.5.14-legacy.zip index 2fcbec456..f52edc916 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.14-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.15-compact.zip b/tests/ast-parsing/compile/variable-0.5.15-compact.zip index 516e94a41..e4bec8d45 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.15-compact.zip and b/tests/ast-parsing/compile/variable-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.15-legacy.zip b/tests/ast-parsing/compile/variable-0.5.15-legacy.zip index a7bd642ce..2ba531a8f 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.15-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.16-compact.zip b/tests/ast-parsing/compile/variable-0.5.16-compact.zip index dd70a72a1..055179816 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.16-compact.zip and b/tests/ast-parsing/compile/variable-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.16-legacy.zip b/tests/ast-parsing/compile/variable-0.5.16-legacy.zip index 9f06078d2..7053b887a 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.16-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.17-compact.zip b/tests/ast-parsing/compile/variable-0.5.17-compact.zip index 6b0116a49..fef4244ff 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.17-compact.zip and b/tests/ast-parsing/compile/variable-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.17-legacy.zip b/tests/ast-parsing/compile/variable-0.5.17-legacy.zip index 9b56bc28c..e8ac9ab05 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.17-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.2-compact.zip b/tests/ast-parsing/compile/variable-0.5.2-compact.zip index 689668eee..a6de60240 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.2-compact.zip and b/tests/ast-parsing/compile/variable-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.2-legacy.zip b/tests/ast-parsing/compile/variable-0.5.2-legacy.zip index 45569e76c..e422f3334 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.2-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.3-compact.zip b/tests/ast-parsing/compile/variable-0.5.3-compact.zip index 55b47d3ff..5f95cd506 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.3-compact.zip and b/tests/ast-parsing/compile/variable-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.3-legacy.zip b/tests/ast-parsing/compile/variable-0.5.3-legacy.zip index bec070afa..077459bbb 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.3-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.4-compact.zip b/tests/ast-parsing/compile/variable-0.5.4-compact.zip index afcb064cd..1022d7254 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.4-compact.zip and b/tests/ast-parsing/compile/variable-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.4-legacy.zip b/tests/ast-parsing/compile/variable-0.5.4-legacy.zip index aa7aee44c..8b38bc38b 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.4-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.5-compact.zip b/tests/ast-parsing/compile/variable-0.5.5-compact.zip index e55a6d672..24dbd59f4 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.5-compact.zip and b/tests/ast-parsing/compile/variable-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.5-legacy.zip b/tests/ast-parsing/compile/variable-0.5.5-legacy.zip index 43ff04631..ac4318ff8 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.5-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.6-compact.zip b/tests/ast-parsing/compile/variable-0.5.6-compact.zip index 5b8b1b4a3..dfbac6423 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.6-compact.zip and b/tests/ast-parsing/compile/variable-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.6-legacy.zip b/tests/ast-parsing/compile/variable-0.5.6-legacy.zip index 8674dca4d..afbcca7ff 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.6-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.7-compact.zip b/tests/ast-parsing/compile/variable-0.5.7-compact.zip index 516b14f60..2fd02e90f 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.7-compact.zip and b/tests/ast-parsing/compile/variable-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.7-legacy.zip b/tests/ast-parsing/compile/variable-0.5.7-legacy.zip index a80507460..f9a66156e 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.7-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.8-compact.zip b/tests/ast-parsing/compile/variable-0.5.8-compact.zip index a44868578..7f7033e23 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.8-compact.zip and b/tests/ast-parsing/compile/variable-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.8-legacy.zip b/tests/ast-parsing/compile/variable-0.5.8-legacy.zip index e85f0e925..46d16ea64 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.8-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.9-compact.zip b/tests/ast-parsing/compile/variable-0.5.9-compact.zip index b0a9754bb..a39696bfe 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.9-compact.zip and b/tests/ast-parsing/compile/variable-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.5.9-legacy.zip b/tests/ast-parsing/compile/variable-0.5.9-legacy.zip index f0e4ed909..9d918d598 100644 Binary files a/tests/ast-parsing/compile/variable-0.5.9-legacy.zip and b/tests/ast-parsing/compile/variable-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.0-compact.zip b/tests/ast-parsing/compile/variable-0.6.0-compact.zip index 5375aa24e..144a914c9 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.0-compact.zip and b/tests/ast-parsing/compile/variable-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.0-legacy.zip b/tests/ast-parsing/compile/variable-0.6.0-legacy.zip index 13ac27204..721e0e846 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.0-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.1-compact.zip b/tests/ast-parsing/compile/variable-0.6.1-compact.zip index 40075f293..9910d421d 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.1-compact.zip and b/tests/ast-parsing/compile/variable-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.1-legacy.zip b/tests/ast-parsing/compile/variable-0.6.1-legacy.zip index cb4ac296e..7700d156e 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.1-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.10-compact.zip b/tests/ast-parsing/compile/variable-0.6.10-compact.zip index 65ce8ed62..31f56c73c 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.10-compact.zip and b/tests/ast-parsing/compile/variable-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.10-legacy.zip b/tests/ast-parsing/compile/variable-0.6.10-legacy.zip index 135d8073a..15395f6a9 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.10-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.11-compact.zip b/tests/ast-parsing/compile/variable-0.6.11-compact.zip index b4b3eb773..9bec50d32 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.11-compact.zip and b/tests/ast-parsing/compile/variable-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.11-legacy.zip b/tests/ast-parsing/compile/variable-0.6.11-legacy.zip index 9f66d77fa..b54a7cfa2 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.11-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.12-compact.zip b/tests/ast-parsing/compile/variable-0.6.12-compact.zip index 326fb2e88..0e96891a0 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.12-compact.zip and b/tests/ast-parsing/compile/variable-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.12-legacy.zip b/tests/ast-parsing/compile/variable-0.6.12-legacy.zip index 21504b62c..d710d31b6 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.12-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.2-compact.zip b/tests/ast-parsing/compile/variable-0.6.2-compact.zip index c37660e85..4b7942b09 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.2-compact.zip and b/tests/ast-parsing/compile/variable-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.2-legacy.zip b/tests/ast-parsing/compile/variable-0.6.2-legacy.zip index a1607ede4..65eb53fcf 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.2-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.3-compact.zip b/tests/ast-parsing/compile/variable-0.6.3-compact.zip index 47589bea8..349fe9bec 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.3-compact.zip and b/tests/ast-parsing/compile/variable-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.3-legacy.zip b/tests/ast-parsing/compile/variable-0.6.3-legacy.zip index b44fcb057..b2f0bee20 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.3-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.4-compact.zip b/tests/ast-parsing/compile/variable-0.6.4-compact.zip index ffb038617..364559ecd 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.4-compact.zip and b/tests/ast-parsing/compile/variable-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.4-legacy.zip b/tests/ast-parsing/compile/variable-0.6.4-legacy.zip index cdab118dc..4bca024d3 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.4-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.5-compact.zip b/tests/ast-parsing/compile/variable-0.6.5-compact.zip index d7e5e447b..73e3beed6 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.5-compact.zip and b/tests/ast-parsing/compile/variable-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.5-legacy.zip b/tests/ast-parsing/compile/variable-0.6.5-legacy.zip index 015bef2e0..b741d756c 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.5-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.6-compact.zip b/tests/ast-parsing/compile/variable-0.6.6-compact.zip index 8bc3aed59..89cab2f2d 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.6-compact.zip and b/tests/ast-parsing/compile/variable-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.6-legacy.zip b/tests/ast-parsing/compile/variable-0.6.6-legacy.zip index a29934a44..0166633c9 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.6-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.7-compact.zip b/tests/ast-parsing/compile/variable-0.6.7-compact.zip index 4ee7a54d3..93afe1b62 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.7-compact.zip and b/tests/ast-parsing/compile/variable-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.7-legacy.zip b/tests/ast-parsing/compile/variable-0.6.7-legacy.zip index 9120e08b2..5ff715acc 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.7-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.8-compact.zip b/tests/ast-parsing/compile/variable-0.6.8-compact.zip index ed575e669..c57f45a01 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.8-compact.zip and b/tests/ast-parsing/compile/variable-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.8-legacy.zip b/tests/ast-parsing/compile/variable-0.6.8-legacy.zip index 00a03e56a..579420c8c 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.8-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.9-compact.zip b/tests/ast-parsing/compile/variable-0.6.9-compact.zip index 924f0a0ce..7f8461276 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.9-compact.zip and b/tests/ast-parsing/compile/variable-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.6.9-legacy.zip b/tests/ast-parsing/compile/variable-0.6.9-legacy.zip index 28b9ae01f..a6a864b37 100644 Binary files a/tests/ast-parsing/compile/variable-0.6.9-legacy.zip and b/tests/ast-parsing/compile/variable-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.0-compact.zip b/tests/ast-parsing/compile/variable-0.7.0-compact.zip index 28bf68f22..0933c9797 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.0-compact.zip and b/tests/ast-parsing/compile/variable-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.0-legacy.zip b/tests/ast-parsing/compile/variable-0.7.0-legacy.zip index 78c5829f4..8d73e1874 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.0-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.1-compact.zip b/tests/ast-parsing/compile/variable-0.7.1-compact.zip index 8a9e09132..b91a9bf8e 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.1-compact.zip and b/tests/ast-parsing/compile/variable-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.1-legacy.zip b/tests/ast-parsing/compile/variable-0.7.1-legacy.zip index cb99fa732..efb22f828 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.1-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.2-compact.zip b/tests/ast-parsing/compile/variable-0.7.2-compact.zip index e85cf7ec8..bb45bf2df 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.2-compact.zip and b/tests/ast-parsing/compile/variable-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.2-legacy.zip b/tests/ast-parsing/compile/variable-0.7.2-legacy.zip index 120928223..5c2f0aa07 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.2-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.3-compact.zip b/tests/ast-parsing/compile/variable-0.7.3-compact.zip index 9566b8a38..689169255 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.3-compact.zip and b/tests/ast-parsing/compile/variable-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.3-legacy.zip b/tests/ast-parsing/compile/variable-0.7.3-legacy.zip index 4f1fe23e4..6ed2d0158 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.3-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.4-compact.zip b/tests/ast-parsing/compile/variable-0.7.4-compact.zip index 0cbf9755c..7afbf4c1e 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.4-compact.zip and b/tests/ast-parsing/compile/variable-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.4-legacy.zip b/tests/ast-parsing/compile/variable-0.7.4-legacy.zip index dbc84fd4c..889dc9081 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.4-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.5-compact.zip b/tests/ast-parsing/compile/variable-0.7.5-compact.zip index aef9bd732..b6fcca4a8 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.5-compact.zip and b/tests/ast-parsing/compile/variable-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.5-legacy.zip b/tests/ast-parsing/compile/variable-0.7.5-legacy.zip index 4d3f53390..dc33ca2dc 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.5-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.6-compact.zip b/tests/ast-parsing/compile/variable-0.7.6-compact.zip index ca2272551..595bf0271 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.6-compact.zip and b/tests/ast-parsing/compile/variable-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.7.6-legacy.zip b/tests/ast-parsing/compile/variable-0.7.6-legacy.zip index 960bef07e..490b6e64b 100644 Binary files a/tests/ast-parsing/compile/variable-0.7.6-legacy.zip and b/tests/ast-parsing/compile/variable-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.0-compact.zip b/tests/ast-parsing/compile/variable-0.8.0-compact.zip index be20901c8..11b3876d4 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.0-compact.zip and b/tests/ast-parsing/compile/variable-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.1-compact.zip b/tests/ast-parsing/compile/variable-0.8.1-compact.zip index d138261ee..ca934183d 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.1-compact.zip and b/tests/ast-parsing/compile/variable-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.2-compact.zip b/tests/ast-parsing/compile/variable-0.8.2-compact.zip index 897d56092..9d6a0090a 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.2-compact.zip and b/tests/ast-parsing/compile/variable-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.3-compact.zip b/tests/ast-parsing/compile/variable-0.8.3-compact.zip index d744f51d9..b9c1a1188 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.3-compact.zip and b/tests/ast-parsing/compile/variable-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.4-compact.zip b/tests/ast-parsing/compile/variable-0.8.4-compact.zip index 4a6a378be..a880296a9 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.4-compact.zip and b/tests/ast-parsing/compile/variable-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.5-compact.zip b/tests/ast-parsing/compile/variable-0.8.5-compact.zip index d027c926f..599f858c7 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.5-compact.zip and b/tests/ast-parsing/compile/variable-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.6-compact.zip b/tests/ast-parsing/compile/variable-0.8.6-compact.zip index 0b14fb482..3f765b95d 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.6-compact.zip and b/tests/ast-parsing/compile/variable-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variable-0.8.7-compact.zip b/tests/ast-parsing/compile/variable-0.8.7-compact.zip index c0ce24cf5..8c193393e 100644 Binary files a/tests/ast-parsing/compile/variable-0.8.7-compact.zip and b/tests/ast-parsing/compile/variable-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.0-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.0-legacy.zip index dc69a6666..a138f017a 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.0-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.1-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.1-legacy.zip index 4f8349c25..bf82f620a 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.1-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.10-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.10-legacy.zip index 1aa41ba17..3bf056478 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.10-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.11-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.11-legacy.zip index 9389a4f42..89aac99f6 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.11-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.12-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.12-compact.zip index b935d84db..cfd20514d 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.12-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.12-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.12-legacy.zip index 0d7c63119..65e72a99f 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.12-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.13-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.13-compact.zip index 3510dc52b..617e24fa3 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.13-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.13-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.13-legacy.zip index 5bd37f2a3..818df82ae 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.13-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.14-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.14-compact.zip index 801405db7..525493dc0 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.14-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.14-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.14-legacy.zip index 1174e7a8d..553d7d89f 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.14-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.15-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.15-compact.zip index 2695d5ba2..359cd62a2 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.15-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.15-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.15-legacy.zip index 32f8c0819..377083235 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.15-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.16-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.16-compact.zip index f1bb35cb8..9c0a38b2e 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.16-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.16-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.16-legacy.zip index 0db9a2283..56fc5910f 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.16-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.17-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.17-compact.zip index a527b762d..441fd9358 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.17-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.17-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.17-legacy.zip index 017316490..5eb629061 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.17-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.18-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.18-compact.zip index 5a14555b1..9c902d860 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.18-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.18-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.18-legacy.zip index 6e554f6c5..898a47fde 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.18-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.19-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.19-compact.zip index 372dc2917..9486756a1 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.19-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.19-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.19-legacy.zip index 2abedf158..726cc6c0b 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.19-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.2-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.2-legacy.zip index 59d29fc1a..f3999d1fb 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.2-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.20-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.20-compact.zip index cd94f8592..fc1bf0d9d 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.20-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.20-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.20-legacy.zip index c09035fa8..0081c4133 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.20-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.21-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.21-compact.zip index 262ef5950..c8c6e235c 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.21-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.21-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.21-legacy.zip index d7785c533..096e0fbe4 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.21-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.22-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.22-compact.zip index ac87c4b88..0252afd5b 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.22-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.22-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.22-legacy.zip index 6754a4b31..2148aefb2 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.22-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.23-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.23-compact.zip index 4ce98ae7d..4410e220e 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.23-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.23-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.23-legacy.zip index 50c140e82..dad21c0a8 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.23-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.24-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.24-compact.zip index 489850ad3..8933e2c35 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.24-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.24-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.24-legacy.zip index a18945829..2e5d78524 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.24-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.25-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.25-compact.zip index 78999d549..beee04809 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.25-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.25-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.25-legacy.zip index f0818e95f..4da7ba024 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.25-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.26-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.26-compact.zip index adc8fadcb..50f2ea1c4 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.26-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.26-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.26-legacy.zip index a269d991b..3d8071b45 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.26-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.3-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.3-legacy.zip index 4b68cf38c..43a9faec9 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.3-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.4-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.4-legacy.zip index 59c9b8f65..d11f55680 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.4-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.5-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.5-legacy.zip index fb5ea831b..35f4be6fd 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.5-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.6-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.6-legacy.zip index 4b650ba29..63956bddf 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.6-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.7-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.7-legacy.zip index 9124b4db5..4ec7f8447 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.7-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.8-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.8-legacy.zip index b853e4783..28dade4c3 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.8-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.4.9-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.4.9-legacy.zip index ba20c2d75..11e208d14 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.4.9-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.0-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.0-compact.zip index d32e47af1..c2888f9be 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.0-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.0-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.0-legacy.zip index e4bc91f59..8e2d89d64 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.0-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.1-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.1-compact.zip index 9d56034e2..f3105a7ef 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.1-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.1-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.1-legacy.zip index 1e9c88640..08352404e 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.1-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.10-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.10-compact.zip index 920c050ad..9bdc6bb01 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.10-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.10-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.10-legacy.zip index 397c185b8..4d7e98e18 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.10-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.11-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.11-compact.zip index b0fe4b290..c0f14b0fe 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.11-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.11-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.11-legacy.zip index dbdfbdc64..d7d68b2ac 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.11-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.12-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.12-compact.zip index 1d7032b9e..aaeb3386c 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.12-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.12-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.12-legacy.zip index 4ea1e6a78..dedc13711 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.12-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.13-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.13-compact.zip index 69d919f22..860c9b9e3 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.13-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.13-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.13-legacy.zip index e87fa615c..ee075b1d4 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.13-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.14-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.14-compact.zip index 144335398..9c7d9262b 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.14-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.14-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.14-legacy.zip index f96c9a413..3085aef79 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.14-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.15-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.15-compact.zip index e3a08caeb..3a64129ff 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.15-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.15-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.15-legacy.zip index f18f0de59..363b4afec 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.15-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.16-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.16-compact.zip index 315a2c5f0..181b8c039 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.16-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.16-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.16-legacy.zip index 6e0fde736..c65fb8293 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.16-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.17-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.17-compact.zip index 0686e40a0..bbe5a041f 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.17-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.17-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.17-legacy.zip index cd667d21b..87aa5f0be 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.17-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.2-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.2-compact.zip index 0b2352153..abe214e41 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.2-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.2-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.2-legacy.zip index 6c96441a7..da793ef00 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.2-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.3-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.3-compact.zip index 6518744fa..d67d7a644 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.3-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.3-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.3-legacy.zip index f6fb5fea5..106ab13d9 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.3-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.4-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.4-compact.zip index f56abde40..44e460d09 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.4-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.4-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.4-legacy.zip index be7082e0a..b58330ec3 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.4-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.5-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.5-compact.zip index 912ac4def..3eefb0539 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.5-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.5-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.5-legacy.zip index 8cca1ac61..691793246 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.5-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.6-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.6-compact.zip index 02d0d34f9..1f567e8d2 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.6-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.6-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.6-legacy.zip index ab6241f0c..17eeab66d 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.6-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.7-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.7-compact.zip index 5a95f3961..9afd055ce 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.7-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.7-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.7-legacy.zip index 1aded7277..83fd277d0 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.7-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.8-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.8-compact.zip index 4d0e37f47..7fdbfd364 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.8-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.8-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.8-legacy.zip index 5e955b249..71da4eea1 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.8-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.9-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.9-compact.zip index aa77c718c..0358b781d 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.9-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.5.9-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.5.9-legacy.zip index e19330c37..509407313 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.5.9-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.0-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.0-compact.zip index 0a653f4b2..64c683cfd 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.0-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.0-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.0-legacy.zip index 352543f61..f2ec62a80 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.0-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.1-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.1-compact.zip index 4ee72c3ef..f34591cad 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.1-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.1-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.1-legacy.zip index 8d14a48a9..65c81e08a 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.1-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.10-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.10-compact.zip index 3342d8e11..28ced5c71 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.10-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.10-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.10-legacy.zip index dea38132e..3949b80cc 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.10-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.11-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.11-compact.zip index aff015329..f45859907 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.11-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.11-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.11-legacy.zip index a893e83ae..2ccc2d366 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.11-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.12-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.12-compact.zip index 7f9f8f97a..6ebc27b94 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.12-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.12-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.12-legacy.zip index e8af3b8af..40f8f3d0e 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.12-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.2-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.2-compact.zip index 146a7b0b8..03bcb6089 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.2-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.2-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.2-legacy.zip index 3f847fdd8..9c76d57db 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.2-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.3-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.3-compact.zip index da67a7c9c..9623d8f37 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.3-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.3-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.3-legacy.zip index 13aa12044..ce44ac6f1 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.3-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.4-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.4-compact.zip index 8a1af569a..7b2fb0714 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.4-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.4-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.4-legacy.zip index 58507f394..1084e7320 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.4-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.5-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.5-compact.zip index 7d1c78c5b..d76de822a 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.5-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.5-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.5-legacy.zip index d9c9a1b34..50cda83d8 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.5-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.6-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.6-compact.zip index 718ae4c9b..1580fcf25 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.6-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.6-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.6-legacy.zip index ddb00e957..287600a34 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.6-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.7-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.7-compact.zip index a62eaa3aa..aca103454 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.7-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.7-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.7-legacy.zip index d77b13615..6f6d5b291 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.7-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.8-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.8-compact.zip index d620de180..b2300c69a 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.8-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.8-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.8-legacy.zip index 218ae0c8b..ad6165f89 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.8-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.9-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.9-compact.zip index fe7b72c37..717168bad 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.9-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.6.9-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.6.9-legacy.zip index 1522bb42a..1bd5d134b 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.6.9-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.0-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.0-compact.zip index bdc095da4..b42a0dd21 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.0-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.0-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.0-legacy.zip index 723706278..289dd3b96 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.0-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.1-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.1-compact.zip index e1a5a64cc..e6064edbd 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.1-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.1-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.1-legacy.zip index 563a4329e..e054adc81 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.1-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.2-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.2-compact.zip index 5c3d3a532..253d22c14 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.2-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.2-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.2-legacy.zip index 09cd805ce..c93d4ee29 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.2-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.3-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.3-compact.zip index 8747c8816..05d1d731f 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.3-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.3-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.3-legacy.zip index b0e6cc712..1b01436c7 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.3-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.4-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.4-compact.zip index 612509781..387a8431b 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.4-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.4-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.4-legacy.zip index f7f76a6f7..27d077a16 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.4-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.5-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.5-compact.zip index 964a5f407..8731a763f 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.5-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.5-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.5-legacy.zip index c69e11d01..0026b97ec 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.5-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.6-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.6-compact.zip index 591e9cf2f..07769e1e2 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.6-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.7.6-legacy.zip b/tests/ast-parsing/compile/variabledeclaration-0.7.6-legacy.zip index 742805b94..47e430765 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.7.6-legacy.zip and b/tests/ast-parsing/compile/variabledeclaration-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.0-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.0-compact.zip index bbc10f1c1..781943a84 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.0-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.1-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.1-compact.zip index b45d2878a..049d23f94 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.1-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.2-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.2-compact.zip index 7a688fa70..da4675af9 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.2-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.3-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.3-compact.zip index 5ecc99605..c9ef409a5 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.3-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.4-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.4-compact.zip index a457b5ef6..e1f3e2242 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.4-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.5-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.5-compact.zip index cc3ca2e0c..b7b44163a 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.5-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.6-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.6-compact.zip index 90365df83..dcb4d9c8e 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.6-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/variabledeclaration-0.8.7-compact.zip b/tests/ast-parsing/compile/variabledeclaration-0.8.7-compact.zip index 28372ab44..35de9ce55 100644 Binary files a/tests/ast-parsing/compile/variabledeclaration-0.8.7-compact.zip and b/tests/ast-parsing/compile/variabledeclaration-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.0-legacy.zip b/tests/ast-parsing/compile/while-0.4.0-legacy.zip index 12e156b59..249bfa852 100644 Binary files a/tests/ast-parsing/compile/while-0.4.0-legacy.zip and b/tests/ast-parsing/compile/while-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.1-legacy.zip b/tests/ast-parsing/compile/while-0.4.1-legacy.zip index 603f235e7..9d7e5f340 100644 Binary files a/tests/ast-parsing/compile/while-0.4.1-legacy.zip and b/tests/ast-parsing/compile/while-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.10-legacy.zip b/tests/ast-parsing/compile/while-0.4.10-legacy.zip index 9a8a9a585..220505483 100644 Binary files a/tests/ast-parsing/compile/while-0.4.10-legacy.zip and b/tests/ast-parsing/compile/while-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.11-legacy.zip b/tests/ast-parsing/compile/while-0.4.11-legacy.zip index cc678ba23..b6c8a957d 100644 Binary files a/tests/ast-parsing/compile/while-0.4.11-legacy.zip and b/tests/ast-parsing/compile/while-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.12-compact.zip b/tests/ast-parsing/compile/while-0.4.12-compact.zip index 6209158d3..078bc7086 100644 Binary files a/tests/ast-parsing/compile/while-0.4.12-compact.zip and b/tests/ast-parsing/compile/while-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.12-legacy.zip b/tests/ast-parsing/compile/while-0.4.12-legacy.zip index e5d3f4cae..58fed283a 100644 Binary files a/tests/ast-parsing/compile/while-0.4.12-legacy.zip and b/tests/ast-parsing/compile/while-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.13-compact.zip b/tests/ast-parsing/compile/while-0.4.13-compact.zip index 5bdeac2bb..30a9453f0 100644 Binary files a/tests/ast-parsing/compile/while-0.4.13-compact.zip and b/tests/ast-parsing/compile/while-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.13-legacy.zip b/tests/ast-parsing/compile/while-0.4.13-legacy.zip index f09cbae8d..0150f6808 100644 Binary files a/tests/ast-parsing/compile/while-0.4.13-legacy.zip and b/tests/ast-parsing/compile/while-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.14-compact.zip b/tests/ast-parsing/compile/while-0.4.14-compact.zip index efdac28e1..2da1d180b 100644 Binary files a/tests/ast-parsing/compile/while-0.4.14-compact.zip and b/tests/ast-parsing/compile/while-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.14-legacy.zip b/tests/ast-parsing/compile/while-0.4.14-legacy.zip index 112acde64..7bfb976f4 100644 Binary files a/tests/ast-parsing/compile/while-0.4.14-legacy.zip and b/tests/ast-parsing/compile/while-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.15-compact.zip b/tests/ast-parsing/compile/while-0.4.15-compact.zip index c74eadd1d..cb57fae37 100644 Binary files a/tests/ast-parsing/compile/while-0.4.15-compact.zip and b/tests/ast-parsing/compile/while-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.15-legacy.zip b/tests/ast-parsing/compile/while-0.4.15-legacy.zip index fb7abccb7..1e8f56366 100644 Binary files a/tests/ast-parsing/compile/while-0.4.15-legacy.zip and b/tests/ast-parsing/compile/while-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.16-compact.zip b/tests/ast-parsing/compile/while-0.4.16-compact.zip index 5c1877b11..3f4a8d2b8 100644 Binary files a/tests/ast-parsing/compile/while-0.4.16-compact.zip and b/tests/ast-parsing/compile/while-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.16-legacy.zip b/tests/ast-parsing/compile/while-0.4.16-legacy.zip index c8ca4aa2a..d8dc91108 100644 Binary files a/tests/ast-parsing/compile/while-0.4.16-legacy.zip and b/tests/ast-parsing/compile/while-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.17-compact.zip b/tests/ast-parsing/compile/while-0.4.17-compact.zip index d9c1dced3..271528951 100644 Binary files a/tests/ast-parsing/compile/while-0.4.17-compact.zip and b/tests/ast-parsing/compile/while-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.17-legacy.zip b/tests/ast-parsing/compile/while-0.4.17-legacy.zip index 32cbde0ab..4aa92004b 100644 Binary files a/tests/ast-parsing/compile/while-0.4.17-legacy.zip and b/tests/ast-parsing/compile/while-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.18-compact.zip b/tests/ast-parsing/compile/while-0.4.18-compact.zip index 1f25651bd..81f0bc0ae 100644 Binary files a/tests/ast-parsing/compile/while-0.4.18-compact.zip and b/tests/ast-parsing/compile/while-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.18-legacy.zip b/tests/ast-parsing/compile/while-0.4.18-legacy.zip index c859bbccf..06e96368c 100644 Binary files a/tests/ast-parsing/compile/while-0.4.18-legacy.zip and b/tests/ast-parsing/compile/while-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.19-compact.zip b/tests/ast-parsing/compile/while-0.4.19-compact.zip index 2528ae1a6..4841205f4 100644 Binary files a/tests/ast-parsing/compile/while-0.4.19-compact.zip and b/tests/ast-parsing/compile/while-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.19-legacy.zip b/tests/ast-parsing/compile/while-0.4.19-legacy.zip index 4941b9cbd..efd544599 100644 Binary files a/tests/ast-parsing/compile/while-0.4.19-legacy.zip and b/tests/ast-parsing/compile/while-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.2-legacy.zip b/tests/ast-parsing/compile/while-0.4.2-legacy.zip index 6126e450d..ce7dfb5a6 100644 Binary files a/tests/ast-parsing/compile/while-0.4.2-legacy.zip and b/tests/ast-parsing/compile/while-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.20-compact.zip b/tests/ast-parsing/compile/while-0.4.20-compact.zip index 8ebc71dd2..efeb00172 100644 Binary files a/tests/ast-parsing/compile/while-0.4.20-compact.zip and b/tests/ast-parsing/compile/while-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.20-legacy.zip b/tests/ast-parsing/compile/while-0.4.20-legacy.zip index 2cc448014..d65d4fcd9 100644 Binary files a/tests/ast-parsing/compile/while-0.4.20-legacy.zip and b/tests/ast-parsing/compile/while-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.21-compact.zip b/tests/ast-parsing/compile/while-0.4.21-compact.zip index 7e675d5bf..aac793cfd 100644 Binary files a/tests/ast-parsing/compile/while-0.4.21-compact.zip and b/tests/ast-parsing/compile/while-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.21-legacy.zip b/tests/ast-parsing/compile/while-0.4.21-legacy.zip index 184d62d7e..5b26d21db 100644 Binary files a/tests/ast-parsing/compile/while-0.4.21-legacy.zip and b/tests/ast-parsing/compile/while-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.22-compact.zip b/tests/ast-parsing/compile/while-0.4.22-compact.zip index 1c627e51c..777362a5f 100644 Binary files a/tests/ast-parsing/compile/while-0.4.22-compact.zip and b/tests/ast-parsing/compile/while-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.22-legacy.zip b/tests/ast-parsing/compile/while-0.4.22-legacy.zip index 6dd6b2639..8abf49dba 100644 Binary files a/tests/ast-parsing/compile/while-0.4.22-legacy.zip and b/tests/ast-parsing/compile/while-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.23-compact.zip b/tests/ast-parsing/compile/while-0.4.23-compact.zip index 6a400e027..a4a5c6042 100644 Binary files a/tests/ast-parsing/compile/while-0.4.23-compact.zip and b/tests/ast-parsing/compile/while-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.23-legacy.zip b/tests/ast-parsing/compile/while-0.4.23-legacy.zip index 86a6e2b91..2ba7d9b9d 100644 Binary files a/tests/ast-parsing/compile/while-0.4.23-legacy.zip and b/tests/ast-parsing/compile/while-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.24-compact.zip b/tests/ast-parsing/compile/while-0.4.24-compact.zip index 74b902551..ec459da50 100644 Binary files a/tests/ast-parsing/compile/while-0.4.24-compact.zip and b/tests/ast-parsing/compile/while-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.24-legacy.zip b/tests/ast-parsing/compile/while-0.4.24-legacy.zip index 82bb5bf9b..12d295c38 100644 Binary files a/tests/ast-parsing/compile/while-0.4.24-legacy.zip and b/tests/ast-parsing/compile/while-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.25-compact.zip b/tests/ast-parsing/compile/while-0.4.25-compact.zip index 1bb83a229..05e7a27a6 100644 Binary files a/tests/ast-parsing/compile/while-0.4.25-compact.zip and b/tests/ast-parsing/compile/while-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.25-legacy.zip b/tests/ast-parsing/compile/while-0.4.25-legacy.zip index 1c598d335..7fda12a0b 100644 Binary files a/tests/ast-parsing/compile/while-0.4.25-legacy.zip and b/tests/ast-parsing/compile/while-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.26-compact.zip b/tests/ast-parsing/compile/while-0.4.26-compact.zip index dd39b5da9..9cf69bd05 100644 Binary files a/tests/ast-parsing/compile/while-0.4.26-compact.zip and b/tests/ast-parsing/compile/while-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.26-legacy.zip b/tests/ast-parsing/compile/while-0.4.26-legacy.zip index a83897222..a96ac624e 100644 Binary files a/tests/ast-parsing/compile/while-0.4.26-legacy.zip and b/tests/ast-parsing/compile/while-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.3-legacy.zip b/tests/ast-parsing/compile/while-0.4.3-legacy.zip index 04b8c3624..9c1d38668 100644 Binary files a/tests/ast-parsing/compile/while-0.4.3-legacy.zip and b/tests/ast-parsing/compile/while-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.4-legacy.zip b/tests/ast-parsing/compile/while-0.4.4-legacy.zip index 0d4223830..6afb40415 100644 Binary files a/tests/ast-parsing/compile/while-0.4.4-legacy.zip and b/tests/ast-parsing/compile/while-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.5-legacy.zip b/tests/ast-parsing/compile/while-0.4.5-legacy.zip index 633906070..b060a98e0 100644 Binary files a/tests/ast-parsing/compile/while-0.4.5-legacy.zip and b/tests/ast-parsing/compile/while-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.6-legacy.zip b/tests/ast-parsing/compile/while-0.4.6-legacy.zip index 712275ac7..f5c2431ed 100644 Binary files a/tests/ast-parsing/compile/while-0.4.6-legacy.zip and b/tests/ast-parsing/compile/while-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.7-legacy.zip b/tests/ast-parsing/compile/while-0.4.7-legacy.zip index 71aaf3ebc..b854ba3b4 100644 Binary files a/tests/ast-parsing/compile/while-0.4.7-legacy.zip and b/tests/ast-parsing/compile/while-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.8-legacy.zip b/tests/ast-parsing/compile/while-0.4.8-legacy.zip index 8c43fc9e1..3fc25752a 100644 Binary files a/tests/ast-parsing/compile/while-0.4.8-legacy.zip and b/tests/ast-parsing/compile/while-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.4.9-legacy.zip b/tests/ast-parsing/compile/while-0.4.9-legacy.zip index eff0087d4..471fb78ca 100644 Binary files a/tests/ast-parsing/compile/while-0.4.9-legacy.zip and b/tests/ast-parsing/compile/while-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.0-compact.zip b/tests/ast-parsing/compile/while-0.5.0-compact.zip index 5dff1d7a1..8ecc4e80e 100644 Binary files a/tests/ast-parsing/compile/while-0.5.0-compact.zip and b/tests/ast-parsing/compile/while-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.0-legacy.zip b/tests/ast-parsing/compile/while-0.5.0-legacy.zip index 152fa02ee..4d932c6d7 100644 Binary files a/tests/ast-parsing/compile/while-0.5.0-legacy.zip and b/tests/ast-parsing/compile/while-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.1-compact.zip b/tests/ast-parsing/compile/while-0.5.1-compact.zip index f3abbe584..a5aec42a4 100644 Binary files a/tests/ast-parsing/compile/while-0.5.1-compact.zip and b/tests/ast-parsing/compile/while-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.1-legacy.zip b/tests/ast-parsing/compile/while-0.5.1-legacy.zip index 416ab068f..9583dd914 100644 Binary files a/tests/ast-parsing/compile/while-0.5.1-legacy.zip and b/tests/ast-parsing/compile/while-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.10-compact.zip b/tests/ast-parsing/compile/while-0.5.10-compact.zip index 68559aa4a..26cae0cc4 100644 Binary files a/tests/ast-parsing/compile/while-0.5.10-compact.zip and b/tests/ast-parsing/compile/while-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.10-legacy.zip b/tests/ast-parsing/compile/while-0.5.10-legacy.zip index e22f70625..b748d6028 100644 Binary files a/tests/ast-parsing/compile/while-0.5.10-legacy.zip and b/tests/ast-parsing/compile/while-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.11-compact.zip b/tests/ast-parsing/compile/while-0.5.11-compact.zip index 521389565..7273e177e 100644 Binary files a/tests/ast-parsing/compile/while-0.5.11-compact.zip and b/tests/ast-parsing/compile/while-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.11-legacy.zip b/tests/ast-parsing/compile/while-0.5.11-legacy.zip index 5b3a9d5fe..f422f3b04 100644 Binary files a/tests/ast-parsing/compile/while-0.5.11-legacy.zip and b/tests/ast-parsing/compile/while-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.12-compact.zip b/tests/ast-parsing/compile/while-0.5.12-compact.zip index 24d033efb..e5089ccca 100644 Binary files a/tests/ast-parsing/compile/while-0.5.12-compact.zip and b/tests/ast-parsing/compile/while-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.12-legacy.zip b/tests/ast-parsing/compile/while-0.5.12-legacy.zip index 0ba9f394d..47f05960c 100644 Binary files a/tests/ast-parsing/compile/while-0.5.12-legacy.zip and b/tests/ast-parsing/compile/while-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.13-compact.zip b/tests/ast-parsing/compile/while-0.5.13-compact.zip index 5ea0fe0b0..1a7f4a1cf 100644 Binary files a/tests/ast-parsing/compile/while-0.5.13-compact.zip and b/tests/ast-parsing/compile/while-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.13-legacy.zip b/tests/ast-parsing/compile/while-0.5.13-legacy.zip index 3dc5fadda..b9f6b9c3b 100644 Binary files a/tests/ast-parsing/compile/while-0.5.13-legacy.zip and b/tests/ast-parsing/compile/while-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.14-compact.zip b/tests/ast-parsing/compile/while-0.5.14-compact.zip index 5243e2b2a..32d0941cd 100644 Binary files a/tests/ast-parsing/compile/while-0.5.14-compact.zip and b/tests/ast-parsing/compile/while-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.14-legacy.zip b/tests/ast-parsing/compile/while-0.5.14-legacy.zip index 1796510d8..ca2bf8494 100644 Binary files a/tests/ast-parsing/compile/while-0.5.14-legacy.zip and b/tests/ast-parsing/compile/while-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.15-compact.zip b/tests/ast-parsing/compile/while-0.5.15-compact.zip index 3fde6c1b6..3b89b966a 100644 Binary files a/tests/ast-parsing/compile/while-0.5.15-compact.zip and b/tests/ast-parsing/compile/while-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.15-legacy.zip b/tests/ast-parsing/compile/while-0.5.15-legacy.zip index 266f9016a..d2d1830d6 100644 Binary files a/tests/ast-parsing/compile/while-0.5.15-legacy.zip and b/tests/ast-parsing/compile/while-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.16-compact.zip b/tests/ast-parsing/compile/while-0.5.16-compact.zip index 5e5597feb..2d6144ec9 100644 Binary files a/tests/ast-parsing/compile/while-0.5.16-compact.zip and b/tests/ast-parsing/compile/while-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.16-legacy.zip b/tests/ast-parsing/compile/while-0.5.16-legacy.zip index 4324ee209..0d1817de5 100644 Binary files a/tests/ast-parsing/compile/while-0.5.16-legacy.zip and b/tests/ast-parsing/compile/while-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.17-compact.zip b/tests/ast-parsing/compile/while-0.5.17-compact.zip index 28b942e71..1b9553620 100644 Binary files a/tests/ast-parsing/compile/while-0.5.17-compact.zip and b/tests/ast-parsing/compile/while-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.17-legacy.zip b/tests/ast-parsing/compile/while-0.5.17-legacy.zip index 0f037db3b..aac70c85c 100644 Binary files a/tests/ast-parsing/compile/while-0.5.17-legacy.zip and b/tests/ast-parsing/compile/while-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.2-compact.zip b/tests/ast-parsing/compile/while-0.5.2-compact.zip index 0220dc0b7..3eb89c66f 100644 Binary files a/tests/ast-parsing/compile/while-0.5.2-compact.zip and b/tests/ast-parsing/compile/while-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.2-legacy.zip b/tests/ast-parsing/compile/while-0.5.2-legacy.zip index a5b3df248..03dabc997 100644 Binary files a/tests/ast-parsing/compile/while-0.5.2-legacy.zip and b/tests/ast-parsing/compile/while-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.3-compact.zip b/tests/ast-parsing/compile/while-0.5.3-compact.zip index 8600fd32c..3b688d057 100644 Binary files a/tests/ast-parsing/compile/while-0.5.3-compact.zip and b/tests/ast-parsing/compile/while-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.3-legacy.zip b/tests/ast-parsing/compile/while-0.5.3-legacy.zip index 4ac5971da..cf01484e4 100644 Binary files a/tests/ast-parsing/compile/while-0.5.3-legacy.zip and b/tests/ast-parsing/compile/while-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.4-compact.zip b/tests/ast-parsing/compile/while-0.5.4-compact.zip index 14283675d..dfc52346e 100644 Binary files a/tests/ast-parsing/compile/while-0.5.4-compact.zip and b/tests/ast-parsing/compile/while-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.4-legacy.zip b/tests/ast-parsing/compile/while-0.5.4-legacy.zip index df543bc9f..b075dab2d 100644 Binary files a/tests/ast-parsing/compile/while-0.5.4-legacy.zip and b/tests/ast-parsing/compile/while-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.5-compact.zip b/tests/ast-parsing/compile/while-0.5.5-compact.zip index 7c36aedf2..f4c39559d 100644 Binary files a/tests/ast-parsing/compile/while-0.5.5-compact.zip and b/tests/ast-parsing/compile/while-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.5-legacy.zip b/tests/ast-parsing/compile/while-0.5.5-legacy.zip index 594b0da4f..d5d0a4ac8 100644 Binary files a/tests/ast-parsing/compile/while-0.5.5-legacy.zip and b/tests/ast-parsing/compile/while-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.6-compact.zip b/tests/ast-parsing/compile/while-0.5.6-compact.zip index 4230a7ef9..a3ea9a3a9 100644 Binary files a/tests/ast-parsing/compile/while-0.5.6-compact.zip and b/tests/ast-parsing/compile/while-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.6-legacy.zip b/tests/ast-parsing/compile/while-0.5.6-legacy.zip index a74b11231..5237d3f03 100644 Binary files a/tests/ast-parsing/compile/while-0.5.6-legacy.zip and b/tests/ast-parsing/compile/while-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.7-compact.zip b/tests/ast-parsing/compile/while-0.5.7-compact.zip index 40fabc901..93ef72213 100644 Binary files a/tests/ast-parsing/compile/while-0.5.7-compact.zip and b/tests/ast-parsing/compile/while-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.7-legacy.zip b/tests/ast-parsing/compile/while-0.5.7-legacy.zip index 4e4ad2f70..9a7516e8f 100644 Binary files a/tests/ast-parsing/compile/while-0.5.7-legacy.zip and b/tests/ast-parsing/compile/while-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.8-compact.zip b/tests/ast-parsing/compile/while-0.5.8-compact.zip index 4169aa394..38422ba28 100644 Binary files a/tests/ast-parsing/compile/while-0.5.8-compact.zip and b/tests/ast-parsing/compile/while-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.8-legacy.zip b/tests/ast-parsing/compile/while-0.5.8-legacy.zip index f662b980f..34034f65c 100644 Binary files a/tests/ast-parsing/compile/while-0.5.8-legacy.zip and b/tests/ast-parsing/compile/while-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.9-compact.zip b/tests/ast-parsing/compile/while-0.5.9-compact.zip index e9c9ecbd0..a1c65aff4 100644 Binary files a/tests/ast-parsing/compile/while-0.5.9-compact.zip and b/tests/ast-parsing/compile/while-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.5.9-legacy.zip b/tests/ast-parsing/compile/while-0.5.9-legacy.zip index 4fd52e83a..2c4e78a72 100644 Binary files a/tests/ast-parsing/compile/while-0.5.9-legacy.zip and b/tests/ast-parsing/compile/while-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.0-compact.zip b/tests/ast-parsing/compile/while-0.6.0-compact.zip index 455839a30..7c5355baa 100644 Binary files a/tests/ast-parsing/compile/while-0.6.0-compact.zip and b/tests/ast-parsing/compile/while-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.0-legacy.zip b/tests/ast-parsing/compile/while-0.6.0-legacy.zip index 2933c1548..6b79b32cb 100644 Binary files a/tests/ast-parsing/compile/while-0.6.0-legacy.zip and b/tests/ast-parsing/compile/while-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.1-compact.zip b/tests/ast-parsing/compile/while-0.6.1-compact.zip index cfddc7d03..2f7b21aed 100644 Binary files a/tests/ast-parsing/compile/while-0.6.1-compact.zip and b/tests/ast-parsing/compile/while-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.1-legacy.zip b/tests/ast-parsing/compile/while-0.6.1-legacy.zip index 66aca674a..13ad797ef 100644 Binary files a/tests/ast-parsing/compile/while-0.6.1-legacy.zip and b/tests/ast-parsing/compile/while-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.10-compact.zip b/tests/ast-parsing/compile/while-0.6.10-compact.zip index 1bf767e0a..dc160ed66 100644 Binary files a/tests/ast-parsing/compile/while-0.6.10-compact.zip and b/tests/ast-parsing/compile/while-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.10-legacy.zip b/tests/ast-parsing/compile/while-0.6.10-legacy.zip index 5a84688bc..1efa1a75f 100644 Binary files a/tests/ast-parsing/compile/while-0.6.10-legacy.zip and b/tests/ast-parsing/compile/while-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.11-compact.zip b/tests/ast-parsing/compile/while-0.6.11-compact.zip index 5b8b81248..3d0ef9421 100644 Binary files a/tests/ast-parsing/compile/while-0.6.11-compact.zip and b/tests/ast-parsing/compile/while-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.11-legacy.zip b/tests/ast-parsing/compile/while-0.6.11-legacy.zip index 42e9c2b87..c4db4b93c 100644 Binary files a/tests/ast-parsing/compile/while-0.6.11-legacy.zip and b/tests/ast-parsing/compile/while-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.12-compact.zip b/tests/ast-parsing/compile/while-0.6.12-compact.zip index f031bb232..e3b803512 100644 Binary files a/tests/ast-parsing/compile/while-0.6.12-compact.zip and b/tests/ast-parsing/compile/while-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.12-legacy.zip b/tests/ast-parsing/compile/while-0.6.12-legacy.zip index f06f532b4..99ad23bc0 100644 Binary files a/tests/ast-parsing/compile/while-0.6.12-legacy.zip and b/tests/ast-parsing/compile/while-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.2-compact.zip b/tests/ast-parsing/compile/while-0.6.2-compact.zip index 4ba7fd91f..5680a88cf 100644 Binary files a/tests/ast-parsing/compile/while-0.6.2-compact.zip and b/tests/ast-parsing/compile/while-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.2-legacy.zip b/tests/ast-parsing/compile/while-0.6.2-legacy.zip index 01a1afbdd..85dafd1e8 100644 Binary files a/tests/ast-parsing/compile/while-0.6.2-legacy.zip and b/tests/ast-parsing/compile/while-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.3-compact.zip b/tests/ast-parsing/compile/while-0.6.3-compact.zip index c27fe2208..0a1236479 100644 Binary files a/tests/ast-parsing/compile/while-0.6.3-compact.zip and b/tests/ast-parsing/compile/while-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.3-legacy.zip b/tests/ast-parsing/compile/while-0.6.3-legacy.zip index c6d0c8b25..9d6f79c9a 100644 Binary files a/tests/ast-parsing/compile/while-0.6.3-legacy.zip and b/tests/ast-parsing/compile/while-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.4-compact.zip b/tests/ast-parsing/compile/while-0.6.4-compact.zip index 6b2d667a4..991af2047 100644 Binary files a/tests/ast-parsing/compile/while-0.6.4-compact.zip and b/tests/ast-parsing/compile/while-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.4-legacy.zip b/tests/ast-parsing/compile/while-0.6.4-legacy.zip index f05749365..d2d47d7b8 100644 Binary files a/tests/ast-parsing/compile/while-0.6.4-legacy.zip and b/tests/ast-parsing/compile/while-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.5-compact.zip b/tests/ast-parsing/compile/while-0.6.5-compact.zip index 38059aa97..7c073fd3b 100644 Binary files a/tests/ast-parsing/compile/while-0.6.5-compact.zip and b/tests/ast-parsing/compile/while-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.5-legacy.zip b/tests/ast-parsing/compile/while-0.6.5-legacy.zip index 2ee475c6b..6f0647e30 100644 Binary files a/tests/ast-parsing/compile/while-0.6.5-legacy.zip and b/tests/ast-parsing/compile/while-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.6-compact.zip b/tests/ast-parsing/compile/while-0.6.6-compact.zip index edacf11b0..e169f50b5 100644 Binary files a/tests/ast-parsing/compile/while-0.6.6-compact.zip and b/tests/ast-parsing/compile/while-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.6-legacy.zip b/tests/ast-parsing/compile/while-0.6.6-legacy.zip index 32b4c297d..b587a3815 100644 Binary files a/tests/ast-parsing/compile/while-0.6.6-legacy.zip and b/tests/ast-parsing/compile/while-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.7-compact.zip b/tests/ast-parsing/compile/while-0.6.7-compact.zip index 5bfbf864a..3b2bd422a 100644 Binary files a/tests/ast-parsing/compile/while-0.6.7-compact.zip and b/tests/ast-parsing/compile/while-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.7-legacy.zip b/tests/ast-parsing/compile/while-0.6.7-legacy.zip index 3555bad5f..f5c96911f 100644 Binary files a/tests/ast-parsing/compile/while-0.6.7-legacy.zip and b/tests/ast-parsing/compile/while-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.8-compact.zip b/tests/ast-parsing/compile/while-0.6.8-compact.zip index d5c24eab8..b1d974077 100644 Binary files a/tests/ast-parsing/compile/while-0.6.8-compact.zip and b/tests/ast-parsing/compile/while-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.8-legacy.zip b/tests/ast-parsing/compile/while-0.6.8-legacy.zip index 026ffdce2..59f08e537 100644 Binary files a/tests/ast-parsing/compile/while-0.6.8-legacy.zip and b/tests/ast-parsing/compile/while-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.9-compact.zip b/tests/ast-parsing/compile/while-0.6.9-compact.zip index 4bc05f02c..b3cc6230d 100644 Binary files a/tests/ast-parsing/compile/while-0.6.9-compact.zip and b/tests/ast-parsing/compile/while-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.6.9-legacy.zip b/tests/ast-parsing/compile/while-0.6.9-legacy.zip index 1d7dd89f9..5e456174a 100644 Binary files a/tests/ast-parsing/compile/while-0.6.9-legacy.zip and b/tests/ast-parsing/compile/while-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.0-compact.zip b/tests/ast-parsing/compile/while-0.7.0-compact.zip index 87642e207..b4057d0f8 100644 Binary files a/tests/ast-parsing/compile/while-0.7.0-compact.zip and b/tests/ast-parsing/compile/while-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.0-legacy.zip b/tests/ast-parsing/compile/while-0.7.0-legacy.zip index d6a3da8c9..78b2b7b8f 100644 Binary files a/tests/ast-parsing/compile/while-0.7.0-legacy.zip and b/tests/ast-parsing/compile/while-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.1-compact.zip b/tests/ast-parsing/compile/while-0.7.1-compact.zip index 45970a87d..6c2ab1e68 100644 Binary files a/tests/ast-parsing/compile/while-0.7.1-compact.zip and b/tests/ast-parsing/compile/while-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.1-legacy.zip b/tests/ast-parsing/compile/while-0.7.1-legacy.zip index c718ad0ab..a87033f6a 100644 Binary files a/tests/ast-parsing/compile/while-0.7.1-legacy.zip and b/tests/ast-parsing/compile/while-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.2-compact.zip b/tests/ast-parsing/compile/while-0.7.2-compact.zip index 8d1c9a2a9..c8ed233c3 100644 Binary files a/tests/ast-parsing/compile/while-0.7.2-compact.zip and b/tests/ast-parsing/compile/while-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.2-legacy.zip b/tests/ast-parsing/compile/while-0.7.2-legacy.zip index f831a29bd..afe2f7b63 100644 Binary files a/tests/ast-parsing/compile/while-0.7.2-legacy.zip and b/tests/ast-parsing/compile/while-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.3-compact.zip b/tests/ast-parsing/compile/while-0.7.3-compact.zip index 88c646742..b908aaf6f 100644 Binary files a/tests/ast-parsing/compile/while-0.7.3-compact.zip and b/tests/ast-parsing/compile/while-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.3-legacy.zip b/tests/ast-parsing/compile/while-0.7.3-legacy.zip index 55e9e8a2a..ae27de769 100644 Binary files a/tests/ast-parsing/compile/while-0.7.3-legacy.zip and b/tests/ast-parsing/compile/while-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.4-compact.zip b/tests/ast-parsing/compile/while-0.7.4-compact.zip index 37b0873de..5fd3085fe 100644 Binary files a/tests/ast-parsing/compile/while-0.7.4-compact.zip and b/tests/ast-parsing/compile/while-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.4-legacy.zip b/tests/ast-parsing/compile/while-0.7.4-legacy.zip index 61a41b207..b417d3099 100644 Binary files a/tests/ast-parsing/compile/while-0.7.4-legacy.zip and b/tests/ast-parsing/compile/while-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.5-compact.zip b/tests/ast-parsing/compile/while-0.7.5-compact.zip index b7b1064a8..407a6b145 100644 Binary files a/tests/ast-parsing/compile/while-0.7.5-compact.zip and b/tests/ast-parsing/compile/while-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.5-legacy.zip b/tests/ast-parsing/compile/while-0.7.5-legacy.zip index c24a2d7b8..97f20c993 100644 Binary files a/tests/ast-parsing/compile/while-0.7.5-legacy.zip and b/tests/ast-parsing/compile/while-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.6-compact.zip b/tests/ast-parsing/compile/while-0.7.6-compact.zip index 8c574b88c..e446632c4 100644 Binary files a/tests/ast-parsing/compile/while-0.7.6-compact.zip and b/tests/ast-parsing/compile/while-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.7.6-legacy.zip b/tests/ast-parsing/compile/while-0.7.6-legacy.zip index ad85e7a70..f1fcc7dc0 100644 Binary files a/tests/ast-parsing/compile/while-0.7.6-legacy.zip and b/tests/ast-parsing/compile/while-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.0-compact.zip b/tests/ast-parsing/compile/while-0.8.0-compact.zip index 26dd2c841..39d020997 100644 Binary files a/tests/ast-parsing/compile/while-0.8.0-compact.zip and b/tests/ast-parsing/compile/while-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.1-compact.zip b/tests/ast-parsing/compile/while-0.8.1-compact.zip index 24f17fa41..e8ae6616f 100644 Binary files a/tests/ast-parsing/compile/while-0.8.1-compact.zip and b/tests/ast-parsing/compile/while-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.2-compact.zip b/tests/ast-parsing/compile/while-0.8.2-compact.zip index e7ffa33b5..49aced7c5 100644 Binary files a/tests/ast-parsing/compile/while-0.8.2-compact.zip and b/tests/ast-parsing/compile/while-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.3-compact.zip b/tests/ast-parsing/compile/while-0.8.3-compact.zip index 5c996ad7a..806b12fb4 100644 Binary files a/tests/ast-parsing/compile/while-0.8.3-compact.zip and b/tests/ast-parsing/compile/while-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.4-compact.zip b/tests/ast-parsing/compile/while-0.8.4-compact.zip index 402f07b30..0d076d2a5 100644 Binary files a/tests/ast-parsing/compile/while-0.8.4-compact.zip and b/tests/ast-parsing/compile/while-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.5-compact.zip b/tests/ast-parsing/compile/while-0.8.5-compact.zip index f5b32f5c3..dd2595849 100644 Binary files a/tests/ast-parsing/compile/while-0.8.5-compact.zip and b/tests/ast-parsing/compile/while-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.6-compact.zip b/tests/ast-parsing/compile/while-0.8.6-compact.zip index f4f1e1b6c..c29a94f60 100644 Binary files a/tests/ast-parsing/compile/while-0.8.6-compact.zip and b/tests/ast-parsing/compile/while-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/while-0.8.7-compact.zip b/tests/ast-parsing/compile/while-0.8.7-compact.zip index 3d68f8833..9ab7de178 100644 Binary files a/tests/ast-parsing/compile/while-0.8.7-compact.zip and b/tests/ast-parsing/compile/while-0.8.7-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.0-legacy.zip b/tests/ast-parsing/compile/yul-0.4.0-legacy.zip index e213df607..f7f102c12 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.0-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.1-legacy.zip b/tests/ast-parsing/compile/yul-0.4.1-legacy.zip index d96535614..dd527073a 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.1-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.10-legacy.zip b/tests/ast-parsing/compile/yul-0.4.10-legacy.zip index 381848635..67dd17424 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.10-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.11-legacy.zip b/tests/ast-parsing/compile/yul-0.4.11-legacy.zip index 4e23da836..0b0d9e86e 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.11-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.12-compact.zip b/tests/ast-parsing/compile/yul-0.4.12-compact.zip index 36fbe22ca..b08f6d05d 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.12-compact.zip and b/tests/ast-parsing/compile/yul-0.4.12-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.12-legacy.zip b/tests/ast-parsing/compile/yul-0.4.12-legacy.zip index 9015b6fcc..01aabca8f 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.12-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.13-compact.zip b/tests/ast-parsing/compile/yul-0.4.13-compact.zip index ff9aaed3f..c617c7ea4 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.13-compact.zip and b/tests/ast-parsing/compile/yul-0.4.13-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.13-legacy.zip b/tests/ast-parsing/compile/yul-0.4.13-legacy.zip index 29de0514e..7514051be 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.13-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.14-compact.zip b/tests/ast-parsing/compile/yul-0.4.14-compact.zip index 40a2c973b..f79d9db8f 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.14-compact.zip and b/tests/ast-parsing/compile/yul-0.4.14-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.14-legacy.zip b/tests/ast-parsing/compile/yul-0.4.14-legacy.zip index 0afed5aa3..5cef0ce03 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.14-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.15-compact.zip b/tests/ast-parsing/compile/yul-0.4.15-compact.zip index a4008b964..36d8c5370 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.15-compact.zip and b/tests/ast-parsing/compile/yul-0.4.15-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.15-legacy.zip b/tests/ast-parsing/compile/yul-0.4.15-legacy.zip index 044ce00f6..cc14e2895 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.15-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.16-compact.zip b/tests/ast-parsing/compile/yul-0.4.16-compact.zip index 859bb6c24..a793a0a01 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.16-compact.zip and b/tests/ast-parsing/compile/yul-0.4.16-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.16-legacy.zip b/tests/ast-parsing/compile/yul-0.4.16-legacy.zip index 5561749dd..3f8d2d34d 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.16-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.17-compact.zip b/tests/ast-parsing/compile/yul-0.4.17-compact.zip index 126cf17f6..8b694701f 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.17-compact.zip and b/tests/ast-parsing/compile/yul-0.4.17-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.17-legacy.zip b/tests/ast-parsing/compile/yul-0.4.17-legacy.zip index fed491f8c..70dfe3a3c 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.17-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.18-compact.zip b/tests/ast-parsing/compile/yul-0.4.18-compact.zip index 076d4e02a..3f708cc96 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.18-compact.zip and b/tests/ast-parsing/compile/yul-0.4.18-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.18-legacy.zip b/tests/ast-parsing/compile/yul-0.4.18-legacy.zip index febcd91bc..2fc4fe915 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.18-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.18-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.19-compact.zip b/tests/ast-parsing/compile/yul-0.4.19-compact.zip index 531e202a5..8551c4696 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.19-compact.zip and b/tests/ast-parsing/compile/yul-0.4.19-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.19-legacy.zip b/tests/ast-parsing/compile/yul-0.4.19-legacy.zip index a748f4523..f453e2d54 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.19-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.19-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.2-legacy.zip b/tests/ast-parsing/compile/yul-0.4.2-legacy.zip index d0daec48c..5bf62a997 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.2-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.20-compact.zip b/tests/ast-parsing/compile/yul-0.4.20-compact.zip index 5e673ecf8..b3e57a2e3 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.20-compact.zip and b/tests/ast-parsing/compile/yul-0.4.20-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.20-legacy.zip b/tests/ast-parsing/compile/yul-0.4.20-legacy.zip index 4510d579a..1b075c386 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.20-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.20-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.21-compact.zip b/tests/ast-parsing/compile/yul-0.4.21-compact.zip index d13d63392..d4a71c265 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.21-compact.zip and b/tests/ast-parsing/compile/yul-0.4.21-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.21-legacy.zip b/tests/ast-parsing/compile/yul-0.4.21-legacy.zip index a0367618e..6514bdce1 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.21-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.21-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.22-compact.zip b/tests/ast-parsing/compile/yul-0.4.22-compact.zip index a615e1db3..0e3747fe8 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.22-compact.zip and b/tests/ast-parsing/compile/yul-0.4.22-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.22-legacy.zip b/tests/ast-parsing/compile/yul-0.4.22-legacy.zip index 3db142ad3..1e682ac15 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.22-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.22-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.23-compact.zip b/tests/ast-parsing/compile/yul-0.4.23-compact.zip index e03680aae..f03383927 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.23-compact.zip and b/tests/ast-parsing/compile/yul-0.4.23-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.23-legacy.zip b/tests/ast-parsing/compile/yul-0.4.23-legacy.zip index fc67c3aef..4eacbde15 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.23-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.23-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.24-compact.zip b/tests/ast-parsing/compile/yul-0.4.24-compact.zip index 21923c8ce..4f7db2b7f 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.24-compact.zip and b/tests/ast-parsing/compile/yul-0.4.24-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.24-legacy.zip b/tests/ast-parsing/compile/yul-0.4.24-legacy.zip index 5b6a2a951..a1bb31253 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.24-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.24-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.25-compact.zip b/tests/ast-parsing/compile/yul-0.4.25-compact.zip index 69006d62e..9296ee1b8 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.25-compact.zip and b/tests/ast-parsing/compile/yul-0.4.25-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.25-legacy.zip b/tests/ast-parsing/compile/yul-0.4.25-legacy.zip index 83c6b260b..dac7f63a2 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.25-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.25-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.26-compact.zip b/tests/ast-parsing/compile/yul-0.4.26-compact.zip index 7d93c0855..bb8ec41e4 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.26-compact.zip and b/tests/ast-parsing/compile/yul-0.4.26-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.26-legacy.zip b/tests/ast-parsing/compile/yul-0.4.26-legacy.zip index 6930bfa2d..917937949 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.26-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.26-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.3-legacy.zip b/tests/ast-parsing/compile/yul-0.4.3-legacy.zip index fa9cd3d59..b94c570cb 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.3-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.4-legacy.zip b/tests/ast-parsing/compile/yul-0.4.4-legacy.zip index 8b921fd90..1867399e6 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.4-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.5-legacy.zip b/tests/ast-parsing/compile/yul-0.4.5-legacy.zip index 4a63a0c52..75df5c76f 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.5-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.6-legacy.zip b/tests/ast-parsing/compile/yul-0.4.6-legacy.zip index 4c6ee4c4f..eaa564e50 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.6-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.7-legacy.zip b/tests/ast-parsing/compile/yul-0.4.7-legacy.zip index c886d313b..a5b4853b0 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.7-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.8-legacy.zip b/tests/ast-parsing/compile/yul-0.4.8-legacy.zip index e7a1a4bbc..10b510996 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.8-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.4.9-legacy.zip b/tests/ast-parsing/compile/yul-0.4.9-legacy.zip index 098108194..99cb5970d 100644 Binary files a/tests/ast-parsing/compile/yul-0.4.9-legacy.zip and b/tests/ast-parsing/compile/yul-0.4.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.0-compact.zip b/tests/ast-parsing/compile/yul-0.5.0-compact.zip index 0e82ff0df..2f1616699 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.0-compact.zip and b/tests/ast-parsing/compile/yul-0.5.0-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.0-legacy.zip b/tests/ast-parsing/compile/yul-0.5.0-legacy.zip index 0360b4bd9..6cb9e5012 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.0-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.1-compact.zip b/tests/ast-parsing/compile/yul-0.5.1-compact.zip index 43abfc30e..5e5d9bee1 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.1-compact.zip and b/tests/ast-parsing/compile/yul-0.5.1-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.1-legacy.zip b/tests/ast-parsing/compile/yul-0.5.1-legacy.zip index a7b00d761..b7d2d5776 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.1-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.10-compact.zip b/tests/ast-parsing/compile/yul-0.5.10-compact.zip index c9d683219..bcf640a9e 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.10-compact.zip and b/tests/ast-parsing/compile/yul-0.5.10-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.10-legacy.zip b/tests/ast-parsing/compile/yul-0.5.10-legacy.zip index cd3620d68..315e23339 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.10-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.11-compact.zip b/tests/ast-parsing/compile/yul-0.5.11-compact.zip index 83ada5e08..e24418d9c 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.11-compact.zip and b/tests/ast-parsing/compile/yul-0.5.11-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.11-legacy.zip b/tests/ast-parsing/compile/yul-0.5.11-legacy.zip index cd559c61a..c04b1ce21 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.11-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.12-compact.zip b/tests/ast-parsing/compile/yul-0.5.12-compact.zip index e8b06e254..8f07e2369 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.12-compact.zip and b/tests/ast-parsing/compile/yul-0.5.12-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.12-legacy.zip b/tests/ast-parsing/compile/yul-0.5.12-legacy.zip index 9dbb4e8cc..522d79aa6 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.12-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.13-compact.zip b/tests/ast-parsing/compile/yul-0.5.13-compact.zip index d7e0dcef1..4598a4f7b 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.13-compact.zip and b/tests/ast-parsing/compile/yul-0.5.13-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.13-legacy.zip b/tests/ast-parsing/compile/yul-0.5.13-legacy.zip index 693714e34..06ff20ae1 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.13-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.13-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.14-compact.zip b/tests/ast-parsing/compile/yul-0.5.14-compact.zip index c41898a10..ee3defd66 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.14-compact.zip and b/tests/ast-parsing/compile/yul-0.5.14-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.14-legacy.zip b/tests/ast-parsing/compile/yul-0.5.14-legacy.zip index 6732906f7..9be8b8bc3 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.14-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.14-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.15-compact.zip b/tests/ast-parsing/compile/yul-0.5.15-compact.zip index a579c6d2a..7dbb0f5bb 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.15-compact.zip and b/tests/ast-parsing/compile/yul-0.5.15-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.15-legacy.zip b/tests/ast-parsing/compile/yul-0.5.15-legacy.zip index 3039d497c..6202c5784 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.15-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.15-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.16-compact.zip b/tests/ast-parsing/compile/yul-0.5.16-compact.zip index c1b980e9b..7b39dab0c 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.16-compact.zip and b/tests/ast-parsing/compile/yul-0.5.16-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.16-legacy.zip b/tests/ast-parsing/compile/yul-0.5.16-legacy.zip index f951a74c1..66a087f85 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.16-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.16-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.17-compact.zip b/tests/ast-parsing/compile/yul-0.5.17-compact.zip index 0bfcdf503..07cb26af4 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.17-compact.zip and b/tests/ast-parsing/compile/yul-0.5.17-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.17-legacy.zip b/tests/ast-parsing/compile/yul-0.5.17-legacy.zip index 32fc5e7d9..6bc0611d0 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.17-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.17-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.2-compact.zip b/tests/ast-parsing/compile/yul-0.5.2-compact.zip index 10bc7c332..de301506f 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.2-compact.zip and b/tests/ast-parsing/compile/yul-0.5.2-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.2-legacy.zip b/tests/ast-parsing/compile/yul-0.5.2-legacy.zip index f2b8f34ef..7e3728315 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.2-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.3-compact.zip b/tests/ast-parsing/compile/yul-0.5.3-compact.zip index 0e91dddbd..265e4d30d 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.3-compact.zip and b/tests/ast-parsing/compile/yul-0.5.3-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.3-legacy.zip b/tests/ast-parsing/compile/yul-0.5.3-legacy.zip index 45e8f6c85..66ca9af43 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.3-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.4-compact.zip b/tests/ast-parsing/compile/yul-0.5.4-compact.zip index 69ac32ac8..a659b6150 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.4-compact.zip and b/tests/ast-parsing/compile/yul-0.5.4-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.4-legacy.zip b/tests/ast-parsing/compile/yul-0.5.4-legacy.zip index 5793fdf11..25c256463 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.4-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.5-compact.zip b/tests/ast-parsing/compile/yul-0.5.5-compact.zip index 7779913c6..387497810 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.5-compact.zip and b/tests/ast-parsing/compile/yul-0.5.5-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.5-legacy.zip b/tests/ast-parsing/compile/yul-0.5.5-legacy.zip index d0d42f838..fb15115f6 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.5-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.6-compact.zip b/tests/ast-parsing/compile/yul-0.5.6-compact.zip index ee0d66a42..cd2cee2c3 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.6-compact.zip and b/tests/ast-parsing/compile/yul-0.5.6-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.6-legacy.zip b/tests/ast-parsing/compile/yul-0.5.6-legacy.zip index 30681b149..1e6fd2768 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.6-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.7-compact.zip b/tests/ast-parsing/compile/yul-0.5.7-compact.zip index 99631e444..4801f0d2e 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.7-compact.zip and b/tests/ast-parsing/compile/yul-0.5.7-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.7-legacy.zip b/tests/ast-parsing/compile/yul-0.5.7-legacy.zip index 59c81f34d..46dfb4007 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.7-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.8-compact.zip b/tests/ast-parsing/compile/yul-0.5.8-compact.zip index 1f76dd9b2..831eaa56b 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.8-compact.zip and b/tests/ast-parsing/compile/yul-0.5.8-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.8-legacy.zip b/tests/ast-parsing/compile/yul-0.5.8-legacy.zip index 290d80303..8a82d7481 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.8-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.9-compact.zip b/tests/ast-parsing/compile/yul-0.5.9-compact.zip index a98cc612b..9d3edbeb9 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.9-compact.zip and b/tests/ast-parsing/compile/yul-0.5.9-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.5.9-legacy.zip b/tests/ast-parsing/compile/yul-0.5.9-legacy.zip index a96764433..3cd41a3cb 100644 Binary files a/tests/ast-parsing/compile/yul-0.5.9-legacy.zip and b/tests/ast-parsing/compile/yul-0.5.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.0-compact.zip b/tests/ast-parsing/compile/yul-0.6.0-compact.zip index d00bf0d7f..e8a304f43 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.0-compact.zip and b/tests/ast-parsing/compile/yul-0.6.0-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.0-legacy.zip b/tests/ast-parsing/compile/yul-0.6.0-legacy.zip index 6443659ca..6e2d33dfd 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.0-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.1-compact.zip b/tests/ast-parsing/compile/yul-0.6.1-compact.zip index 92520a77c..e2d617373 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.1-compact.zip and b/tests/ast-parsing/compile/yul-0.6.1-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.1-legacy.zip b/tests/ast-parsing/compile/yul-0.6.1-legacy.zip index 77ae55991..258547d5a 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.1-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.10-compact.zip b/tests/ast-parsing/compile/yul-0.6.10-compact.zip index 7c64d912e..cc5affce1 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.10-compact.zip and b/tests/ast-parsing/compile/yul-0.6.10-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.10-legacy.zip b/tests/ast-parsing/compile/yul-0.6.10-legacy.zip index c9ba5a36e..bb8359350 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.10-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.10-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.11-compact.zip b/tests/ast-parsing/compile/yul-0.6.11-compact.zip index fbf63354f..820e587bd 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.11-compact.zip and b/tests/ast-parsing/compile/yul-0.6.11-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.11-legacy.zip b/tests/ast-parsing/compile/yul-0.6.11-legacy.zip index 6a07771b1..f394320f2 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.11-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.11-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.12-compact.zip b/tests/ast-parsing/compile/yul-0.6.12-compact.zip index 89e6da149..f8c85dfae 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.12-compact.zip and b/tests/ast-parsing/compile/yul-0.6.12-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.12-legacy.zip b/tests/ast-parsing/compile/yul-0.6.12-legacy.zip index 3ffc9c790..7365a4c30 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.12-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.12-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.2-compact.zip b/tests/ast-parsing/compile/yul-0.6.2-compact.zip index f2c86fb52..9b5e0e589 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.2-compact.zip and b/tests/ast-parsing/compile/yul-0.6.2-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.2-legacy.zip b/tests/ast-parsing/compile/yul-0.6.2-legacy.zip index 496f09ed1..9d712bf6a 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.2-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.3-compact.zip b/tests/ast-parsing/compile/yul-0.6.3-compact.zip index 863c238be..c162df5cf 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.3-compact.zip and b/tests/ast-parsing/compile/yul-0.6.3-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.3-legacy.zip b/tests/ast-parsing/compile/yul-0.6.3-legacy.zip index 8d08ca124..16a68967b 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.3-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.4-compact.zip b/tests/ast-parsing/compile/yul-0.6.4-compact.zip index d30e78667..b84eb6890 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.4-compact.zip and b/tests/ast-parsing/compile/yul-0.6.4-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.4-legacy.zip b/tests/ast-parsing/compile/yul-0.6.4-legacy.zip index ca3e31a8c..a1ae29f57 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.4-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.5-compact.zip b/tests/ast-parsing/compile/yul-0.6.5-compact.zip index a6756f570..3ec5c5b92 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.5-compact.zip and b/tests/ast-parsing/compile/yul-0.6.5-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.5-legacy.zip b/tests/ast-parsing/compile/yul-0.6.5-legacy.zip index cd36160d7..08213c8b2 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.5-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.6-compact.zip b/tests/ast-parsing/compile/yul-0.6.6-compact.zip index de8b7cefa..b46395e4a 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.6-compact.zip and b/tests/ast-parsing/compile/yul-0.6.6-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.6-legacy.zip b/tests/ast-parsing/compile/yul-0.6.6-legacy.zip index 7bc6b9804..2d630380c 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.6-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.7-compact.zip b/tests/ast-parsing/compile/yul-0.6.7-compact.zip index 3e5dc6502..14ca1733d 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.7-compact.zip and b/tests/ast-parsing/compile/yul-0.6.7-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.7-legacy.zip b/tests/ast-parsing/compile/yul-0.6.7-legacy.zip index 8e550b582..da083b94b 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.7-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.7-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.8-compact.zip b/tests/ast-parsing/compile/yul-0.6.8-compact.zip index 20e37902a..748b6bce4 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.8-compact.zip and b/tests/ast-parsing/compile/yul-0.6.8-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.8-legacy.zip b/tests/ast-parsing/compile/yul-0.6.8-legacy.zip index 7844ddbef..dc40b0225 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.8-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.8-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.9-compact.zip b/tests/ast-parsing/compile/yul-0.6.9-compact.zip index f336f9490..93cc1d059 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.9-compact.zip and b/tests/ast-parsing/compile/yul-0.6.9-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.6.9-legacy.zip b/tests/ast-parsing/compile/yul-0.6.9-legacy.zip index a71b7eae2..326c8cee2 100644 Binary files a/tests/ast-parsing/compile/yul-0.6.9-legacy.zip and b/tests/ast-parsing/compile/yul-0.6.9-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.0-compact.zip b/tests/ast-parsing/compile/yul-0.7.0-compact.zip index caa307208..b475659e5 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.0-compact.zip and b/tests/ast-parsing/compile/yul-0.7.0-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.0-legacy.zip b/tests/ast-parsing/compile/yul-0.7.0-legacy.zip index 67a203f50..6160854ab 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.0-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.0-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.1-compact.zip b/tests/ast-parsing/compile/yul-0.7.1-compact.zip index c908ed479..09c766fe8 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.1-compact.zip and b/tests/ast-parsing/compile/yul-0.7.1-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.1-legacy.zip b/tests/ast-parsing/compile/yul-0.7.1-legacy.zip index a70812fdf..7dba0c3ff 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.1-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.1-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.2-compact.zip b/tests/ast-parsing/compile/yul-0.7.2-compact.zip index 26469b529..f35062134 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.2-compact.zip and b/tests/ast-parsing/compile/yul-0.7.2-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.2-legacy.zip b/tests/ast-parsing/compile/yul-0.7.2-legacy.zip index a9b807c36..119a95061 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.2-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.2-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.3-compact.zip b/tests/ast-parsing/compile/yul-0.7.3-compact.zip index ed64e8e9b..d77134abf 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.3-compact.zip and b/tests/ast-parsing/compile/yul-0.7.3-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.3-legacy.zip b/tests/ast-parsing/compile/yul-0.7.3-legacy.zip index d59cb8d02..931bfb917 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.3-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.3-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.4-compact.zip b/tests/ast-parsing/compile/yul-0.7.4-compact.zip index f86c4d3a7..2538da4db 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.4-compact.zip and b/tests/ast-parsing/compile/yul-0.7.4-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.4-legacy.zip b/tests/ast-parsing/compile/yul-0.7.4-legacy.zip index 039a1652e..dbb02e4fa 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.4-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.4-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.5-compact.zip b/tests/ast-parsing/compile/yul-0.7.5-compact.zip index a394648c5..727fce452 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.5-compact.zip and b/tests/ast-parsing/compile/yul-0.7.5-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.5-legacy.zip b/tests/ast-parsing/compile/yul-0.7.5-legacy.zip index 96c19062e..8ea24fc98 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.5-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.5-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.6-compact.zip b/tests/ast-parsing/compile/yul-0.7.6-compact.zip index 124cc638f..1c1253363 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.6-compact.zip and b/tests/ast-parsing/compile/yul-0.7.6-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.7.6-legacy.zip b/tests/ast-parsing/compile/yul-0.7.6-legacy.zip index acdc43163..57245a7ef 100644 Binary files a/tests/ast-parsing/compile/yul-0.7.6-legacy.zip and b/tests/ast-parsing/compile/yul-0.7.6-legacy.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.0-compact.zip b/tests/ast-parsing/compile/yul-0.8.0-compact.zip index 30b7cb79e..7510d1fd0 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.0-compact.zip and b/tests/ast-parsing/compile/yul-0.8.0-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.1-compact.zip b/tests/ast-parsing/compile/yul-0.8.1-compact.zip index 0d57d712a..f1af763aa 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.1-compact.zip and b/tests/ast-parsing/compile/yul-0.8.1-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.2-compact.zip b/tests/ast-parsing/compile/yul-0.8.2-compact.zip index 84040bca9..7fab06eb7 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.2-compact.zip and b/tests/ast-parsing/compile/yul-0.8.2-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.3-compact.zip b/tests/ast-parsing/compile/yul-0.8.3-compact.zip index 6f1b5281e..78f2a9db0 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.3-compact.zip and b/tests/ast-parsing/compile/yul-0.8.3-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.4-compact.zip b/tests/ast-parsing/compile/yul-0.8.4-compact.zip index 5758f8d09..f6f36b64d 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.4-compact.zip and b/tests/ast-parsing/compile/yul-0.8.4-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.5-compact.zip b/tests/ast-parsing/compile/yul-0.8.5-compact.zip index 2783eca84..839c75400 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.5-compact.zip and b/tests/ast-parsing/compile/yul-0.8.5-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.6-compact.zip b/tests/ast-parsing/compile/yul-0.8.6-compact.zip index 342fb1ae0..da2077639 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.6-compact.zip and b/tests/ast-parsing/compile/yul-0.8.6-compact.zip differ diff --git a/tests/ast-parsing/compile/yul-0.8.7-compact.zip b/tests/ast-parsing/compile/yul-0.8.7-compact.zip index 3f47193d6..9b76b7bd4 100644 Binary files a/tests/ast-parsing/compile/yul-0.8.7-compact.zip and b/tests/ast-parsing/compile/yul-0.8.7-compact.zip differ diff --git a/tests/test_ast_parsing.py b/tests/test_ast_parsing.py index ad48c3031..f23757092 100644 --- a/tests/test_ast_parsing.py +++ b/tests/test_ast_parsing.py @@ -6,11 +6,11 @@ import sys from collections import namedtuple from distutils.version import StrictVersion from typing import List, Dict +from deepdiff import DeepDiff import pytest from crytic_compile import CryticCompile, save_to_zip from crytic_compile.utils.zip import load_from_zip -from deepdiff import DeepDiff from slither import Slither from slither.printers.guidance.echidna import Echidna @@ -67,13 +67,6 @@ XFAIL = ( + [f"variabledeclaration_0.7.{ver}_legacy" for ver in ALL_07] + [f"variabledeclaration_0.8.{ver}_legacy" for ver in ALL_08] + [f"variabledeclaration_0.4.{ver}_compact" for ver in range(12, 27)] - + [f"top-level_0.7.{ver}_legacy" for ver in ALL_07] - + [f"top-level_0.7.{ver}_compact" for ver in ALL_07] - + [f"top-level_0.8.{ver}_legacy" for ver in ALL_08] - + [f"top-level_0.8.{ver}_compact" for ver in ALL_08] - + [f"top-level-import_0.7.{ver}_legacy" for ver in range(1, 7)] - + [f"top-level-import_0.7.{ver}_compact" for ver in range(1, 7)] - + [f"top-level-import_0.8.{ver}_compact" for ver in ALL_08] )