diff --git a/ets2panda/parser/ETSparser.cpp b/ets2panda/parser/ETSparser.cpp index e86b81930b53cae8faaf2f62b2477e5529ca52c7..baac6272f115b077bd5ab6a87f2c2eb6442efad3 100644 --- a/ets2panda/parser/ETSparser.cpp +++ b/ets2panda/parser/ETSparser.cpp @@ -669,7 +669,7 @@ ArenaVector ETSParser::ParseTopLevelStatements(ArenaVector::Enter( VarBinder(), GetProgram()->GlobalClassScope()); - ParseClassFieldDefiniton(member_name, member_modifiers, &global_properties, init_function); + ParseClassFieldDefiniton(member_name, member_modifiers, &global_properties, init_function, &start_loc); break; } case lexer::TokenType::KEYW_ASYNC: @@ -1253,8 +1253,11 @@ ir::ModifierFlags ETSParser::ParseClassMethodModifiers(bool seen_static) // NOLINTNEXTLINE(google-default-arguments) void ETSParser::ParseClassFieldDefiniton(ir::Identifier *field_name, ir::ModifierFlags modifiers, - ArenaVector *declarations, ir::ScriptFunction *init_function) + ArenaVector *declarations, ir::ScriptFunction *init_function, + lexer::SourcePosition *let_loc) { + lexer::SourcePosition start_loc = let_loc != nullptr ? *let_loc : Lexer()->GetToken().Start(); + lexer::SourcePosition end_loc = start_loc; ir::TypeNode *type_annotation = nullptr; TypeAnnotationParsingOptions options = TypeAnnotationParsingOptions::THROW_ERROR; @@ -1283,9 +1286,16 @@ void ETSParser::ParseClassFieldDefiniton(ir::Identifier *field_name, ir::Modifie auto *assignment_expression = AllocNode(ident, initializer, lexer::TokenType::PUNCTUATOR_SUBSTITUTION); + end_loc = initializer->End(); + assignment_expression->SetRange({field_name->Start(), end_loc}); assignment_expression->SetParent(func_body); - func_body->AsBlockStatement()->Statements().emplace_back( - AllocNode(assignment_expression)); + + auto expression_statement = AllocNode(assignment_expression); + if (Lexer()->GetToken().Type() == lexer::TokenType::PUNCTUATOR_SEMI_COLON) { + end_loc = Lexer()->GetToken().End(); + } + expression_statement->SetRange({start_loc, end_loc}); + func_body->AsBlockStatement()->Statements().emplace_back(expression_statement); if (type_annotation != nullptr && !type_annotation->IsETSFunctionType()) { initializer = nullptr; @@ -1300,6 +1310,13 @@ void ETSParser::ParseClassFieldDefiniton(ir::Identifier *field_name, ir::Modifie } auto *field = AllocNode(field_name, initializer, type_annotation, modifiers, Allocator(), false); + start_loc = field_name->Start(); + if (initializer != nullptr) { + end_loc = initializer->End(); + } else { + end_loc = type_annotation != nullptr ? type_annotation->End() : field_name->End(); + } + field->SetRange({start_loc, end_loc}); if ((modifiers & ir::ModifierFlags::CONST) != 0) { ASSERT(VarBinder()->GetScope()->Parent() != nullptr); diff --git a/ets2panda/parser/ETSparser.h b/ets2panda/parser/ETSparser.h index ba8e78e3598ff4a5968eafceb990cbf6237273d0..378c58b9598e2385bd42bb1931251075be75bc0e 100644 --- a/ets2panda/parser/ETSparser.h +++ b/ets2panda/parser/ETSparser.h @@ -103,8 +103,8 @@ private: // NOLINTNEXTLINE(google-default-arguments) void ParseClassFieldDefiniton(ir::Identifier *field_name, ir::ModifierFlags modifiers, - ArenaVector *declarations, - ir::ScriptFunction *init_function = nullptr); + ArenaVector *declarations, ir::ScriptFunction *init_function = nullptr, + lexer::SourcePosition *let_loc = nullptr); std::tuple ParseTypeReferencePart( TypeAnnotationParsingOptions *options); ir::TypeNode *ParseTypeReference(TypeAnnotationParsingOptions *options); diff --git a/ets2panda/test/compiler/ets/FunctionType1-expected.txt b/ets2panda/test/compiler/ets/FunctionType1-expected.txt index 8a077af2aa1c71fa7e8cbec4bf39c1a4edcfc0f6..067f0174687c1432a88946ef6160ecd645cca7f2 100644 --- a/ets2panda/test/compiler/ets/FunctionType1-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType1-expected.txt @@ -594,12 +594,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 35 } } }, diff --git a/ets2panda/test/compiler/ets/FunctionType2-expected.txt b/ets2panda/test/compiler/ets/FunctionType2-expected.txt index 071e519658d1b4ba336c9c2028e3f5eb16df4101..1dcaa7ce18cad300834afa778966c9f4f1368547 100644 --- a/ets2panda/test/compiler/ets/FunctionType2-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType2-expected.txt @@ -253,12 +253,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 37 } } }, diff --git a/ets2panda/test/compiler/ets/FunctionType3-expected.txt b/ets2panda/test/compiler/ets/FunctionType3-expected.txt index ca35e1e27ca278512efc531856f662671c7d2acc..9f4f79c8571bd80cc8786da052cf4cd025e27c3d 100644 --- a/ets2panda/test/compiler/ets/FunctionType3-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType3-expected.txt @@ -281,12 +281,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 36 } } }, diff --git a/ets2panda/test/compiler/ets/FunctionType4-expected.txt b/ets2panda/test/compiler/ets/FunctionType4-expected.txt index c2aedd46bf6c9423523616e25365b365f5e02e45..8927a880696633a15427e3a077bcfc4fde64e7e0 100644 --- a/ets2panda/test/compiler/ets/FunctionType4-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType4-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 24 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 25 } } } @@ -393,12 +393,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 24 } } }, diff --git a/ets2panda/test/compiler/ets/FunctionType5-expected.txt b/ets2panda/test/compiler/ets/FunctionType5-expected.txt index 20c6f2c6fc116e7aa3f1d881e6525bb7f4755aeb..c6c23c17deefe05dd99af1785a27875cdb188c55 100644 --- a/ets2panda/test/compiler/ets/FunctionType5-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType5-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 14 } } } @@ -434,12 +434,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 } } } diff --git a/ets2panda/test/compiler/ets/FunctionType6-expected.txt b/ets2panda/test/compiler/ets/FunctionType6-expected.txt index f0652030543c41e44a49166a1606092dd9ac3aca..909ce83c37a295537bee3d4ca6896fb2f6b23d13 100644 --- a/ets2panda/test/compiler/ets/FunctionType6-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType6-expected.txt @@ -446,12 +446,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 17 } } }, diff --git a/ets2panda/test/compiler/ets/FunctionType8-expected.txt b/ets2panda/test/compiler/ets/FunctionType8-expected.txt index 98c579e069b0722d245a7204faaad75689f82f68..246720088183d754f5cd838c8689bdd222ac527a 100644 --- a/ets2panda/test/compiler/ets/FunctionType8-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType8-expected.txt @@ -448,12 +448,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 42 } } }, @@ -978,12 +978,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 34 } } }, diff --git a/ets2panda/test/compiler/ets/FunctionType9-expected.txt b/ets2panda/test/compiler/ets/FunctionType9-expected.txt index b0d532dda3f1bbc611e296d7984d3398daf13429..e6dafbd1aedc0b5c985c1960af18a070f203de10 100644 --- a/ets2panda/test/compiler/ets/FunctionType9-expected.txt +++ b/ets2panda/test/compiler/ets/FunctionType9-expected.txt @@ -338,12 +338,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 37 } } }, diff --git a/ets2panda/test/compiler/ets/abstractNewClassInstanceExpression-expected.txt b/ets2panda/test/compiler/ets/abstractNewClassInstanceExpression-expected.txt index e136477e1f712db4ee485f8cf6108052094ec704..d2a660f61fd80d3a31797928ad2fc5a706b667fd 100644 --- a/ets2panda/test/compiler/ets/abstractNewClassInstanceExpression-expected.txt +++ b/ets2panda/test/compiler/ets/abstractNewClassInstanceExpression-expected.txt @@ -746,12 +746,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 9 } } }, @@ -948,12 +948,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 34, + "column": 2 } } }, diff --git a/ets2panda/test/compiler/ets/for_of_missing_iterator_type-expected.txt b/ets2panda/test/compiler/ets/for_of_missing_iterator_type-expected.txt index bc25d70c78f102d30b18e19902252789f137459c..e2347bad084c1a78e4c09c379c4d19a1109714dd 100644 --- a/ets2panda/test/compiler/ets/for_of_missing_iterator_type-expected.txt +++ b/ets2panda/test/compiler/ets/for_of_missing_iterator_type-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 17 } } }, diff --git a/ets2panda/test/compiler/ets/from-soft-keyword-0-expected.txt b/ets2panda/test/compiler/ets/from-soft-keyword-0-expected.txt index 7e25b44fe194e548df02e16ab173e5742b6a788f..3bbcd11e33ef65d1560400dab4ba7a68d1dc9f59 100644 --- a/ets2panda/test/compiler/ets/from-soft-keyword-0-expected.txt +++ b/ets2panda/test/compiler/ets/from-soft-keyword-0-expected.txt @@ -119,12 +119,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, diff --git a/ets2panda/test/compiler/ets/generic_arrayaslist-expected.txt b/ets2panda/test/compiler/ets/generic_arrayaslist-expected.txt index e902bdbdba6b18c5653e8f9385f15b4f1f1e1952..4769cb130a3e19312293236b350d5ee01f41fd1c 100644 --- a/ets2panda/test/compiler/ets/generic_arrayaslist-expected.txt +++ b/ets2panda/test/compiler/ets/generic_arrayaslist-expected.txt @@ -20928,12 +20928,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 238, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 238, + "column": 23 } } }, @@ -20977,12 +20977,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 239, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 239, + "column": 25 } } } diff --git a/ets2panda/test/compiler/ets/generic_function_call_5-expected.txt b/ets2panda/test/compiler/ets/generic_function_call_5-expected.txt index f74eaa8b74e437a34c849d6ddd5300ce4519f4c1..42dbbefc7b1b9fc2284ff47ae8905ac98c15f221 100644 --- a/ets2panda/test/compiler/ets/generic_function_call_5-expected.txt +++ b/ets2panda/test/compiler/ets/generic_function_call_5-expected.txt @@ -466,12 +466,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 25 } } } diff --git a/ets2panda/test/compiler/ets/generics_class_recursive_type_1-expected.txt b/ets2panda/test/compiler/ets/generics_class_recursive_type_1-expected.txt index bd5f6fdaac1d5fdeadccfd1b5a36c7c8988948c6..8c18f48d2d53e1b85e1adde629d867cf5b4b6376 100644 --- a/ets2panda/test/compiler/ets/generics_class_recursive_type_1-expected.txt +++ b/ets2panda/test/compiler/ets/generics_class_recursive_type_1-expected.txt @@ -355,12 +355,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, @@ -432,12 +432,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } }, @@ -509,12 +509,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, @@ -558,12 +558,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } }, @@ -732,12 +732,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 24 } } }, @@ -5376,12 +5376,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 55, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 55, + "column": 13 } } }, @@ -5855,12 +5855,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 59, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 59, + "column": 20 } } }, @@ -6029,12 +6029,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 60, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 60, + "column": 20 } } }, diff --git a/ets2panda/test/compiler/ets/generics_instantiation_1-expected.txt b/ets2panda/test/compiler/ets/generics_instantiation_1-expected.txt index a39528d5a38ab36748bc8bc21b3cbea200b7b823..826c0e80a2a5d3a8bdbdc04ccce1745a3cf8cedc 100644 --- a/ets2panda/test/compiler/ets/generics_instantiation_1-expected.txt +++ b/ets2panda/test/compiler/ets/generics_instantiation_1-expected.txt @@ -174,12 +174,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, diff --git a/ets2panda/test/compiler/ets/generics_instantiation_2-expected.txt b/ets2panda/test/compiler/ets/generics_instantiation_2-expected.txt index 9378ef0aa26c2df1f48d9148668533fa64f723af..2e60845699d3825ea362f56d7c1df654d0fdef7b 100644 --- a/ets2panda/test/compiler/ets/generics_instantiation_2-expected.txt +++ b/ets2panda/test/compiler/ets/generics_instantiation_2-expected.txt @@ -395,12 +395,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 21 } } }, diff --git a/ets2panda/test/compiler/ets/generics_instantiation_3-expected.txt b/ets2panda/test/compiler/ets/generics_instantiation_3-expected.txt index 4304cd5d687d10c9e40f63cd3235c7113c7298ed..7aee3903115cb2f559b552a5dc20f616270cdc33 100644 --- a/ets2panda/test/compiler/ets/generics_instantiation_3-expected.txt +++ b/ets2panda/test/compiler/ets/generics_instantiation_3-expected.txt @@ -498,12 +498,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, diff --git a/ets2panda/test/compiler/ets/generics_instantiation_4-expected.txt b/ets2panda/test/compiler/ets/generics_instantiation_4-expected.txt index 4d568d9bcf9474a674492185989acb10183bb7d9..58ac0be4cfac4fecd88f525982db39725aebebcf 100644 --- a/ets2panda/test/compiler/ets/generics_instantiation_4-expected.txt +++ b/ets2panda/test/compiler/ets/generics_instantiation_4-expected.txt @@ -1952,12 +1952,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 41, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 41, + "column": 21 } } }, diff --git a/ets2panda/test/compiler/ets/generics_interface_bounds_1-expected.txt b/ets2panda/test/compiler/ets/generics_interface_bounds_1-expected.txt index bcf0a134c96a95adf9a519c133d2610130162040..618aaf0ee73a60ef27168d8fd50d945a3e917aa8 100644 --- a/ets2panda/test/compiler/ets/generics_interface_bounds_1-expected.txt +++ b/ets2panda/test/compiler/ets/generics_interface_bounds_1-expected.txt @@ -509,12 +509,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, diff --git a/ets2panda/test/compiler/ets/generics_primitive_type_param_1-expected.txt b/ets2panda/test/compiler/ets/generics_primitive_type_param_1-expected.txt index d17aa49e9fbfecdd6c5077b0f5e12bfa6b85ef79..beeda0916cc791e793dba090353c106ce47b51ef 100644 --- a/ets2panda/test/compiler/ets/generics_primitive_type_param_1-expected.txt +++ b/ets2panda/test/compiler/ets/generics_primitive_type_param_1-expected.txt @@ -133,12 +133,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 } } }, @@ -196,12 +196,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 31 } } }, diff --git a/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_1-expected.txt b/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_1-expected.txt index 0217b74e03617b6fa40af2736435e5e4cc702626..981fbdf9d51da28140bb7735680829375e60846c 100644 --- a/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_1-expected.txt +++ b/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_1-expected.txt @@ -133,12 +133,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 } } }, diff --git a/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_2-expected.txt b/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_2-expected.txt index 64dcbdf3312e415af616aedcba2608594f09cfb9..cb01550c5cf92886f01e6485b96d5516e3b1b69c 100644 --- a/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_2-expected.txt +++ b/ets2panda/test/compiler/ets/generics_primitive_type_param_neg_2-expected.txt @@ -133,12 +133,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 } } }, diff --git a/ets2panda/test/compiler/ets/identifierReference10-expected.txt b/ets2panda/test/compiler/ets/identifierReference10-expected.txt index 3eb9089b8257dc353155625959fde77cc80781f5..c956b389498268a4a617309cf07097e15c35e852 100644 --- a/ets2panda/test/compiler/ets/identifierReference10-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference10-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 } } }, @@ -345,12 +345,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 18 } } }, diff --git a/ets2panda/test/compiler/ets/identifierReference11-expected.txt b/ets2panda/test/compiler/ets/identifierReference11-expected.txt index 0d57a8c2bcad8794cd44fc911adc825909b6ff0d..f0d601241052dc6a836894ef9b0cd87f1863b571 100644 --- a/ets2panda/test/compiler/ets/identifierReference11-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference11-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 15 } } }, diff --git a/ets2panda/test/compiler/ets/identifierReference12-expected.txt b/ets2panda/test/compiler/ets/identifierReference12-expected.txt index efc3f35fc8f1630c140845997675ebec15a25652..c41ed2bceb102471cca4d21074d66d858b42c362 100644 --- a/ets2panda/test/compiler/ets/identifierReference12-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference12-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 16 } } }, @@ -345,12 +345,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 18 } } }, diff --git a/ets2panda/test/compiler/ets/identifierReference13-expected.txt b/ets2panda/test/compiler/ets/identifierReference13-expected.txt index f11520714b1f94145ed7f201a62f27580d7d664b..b9a14ad2ffcf30aecc632e992570e00be7fabb65 100644 --- a/ets2panda/test/compiler/ets/identifierReference13-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference13-expected.txt @@ -417,12 +417,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 18 } } }, diff --git a/ets2panda/test/compiler/ets/identifierReference2-expected.txt b/ets2panda/test/compiler/ets/identifierReference2-expected.txt index 07248d61cc74133a3e39b310f113ced2d96a5c2d..4f28a2426c9af4f5c3ec56e6aa866368b4e95e0d 100644 --- a/ets2panda/test/compiler/ets/identifierReference2-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference2-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 37 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 38 } } } @@ -354,12 +354,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 37 } } } diff --git a/ets2panda/test/compiler/ets/identifierReference3-expected.txt b/ets2panda/test/compiler/ets/identifierReference3-expected.txt index 6495cedbd507534806dc7aa04c65d78638513a60..6e49f3f6047d4d305eb455b2495bc0e3260c1f38 100644 --- a/ets2panda/test/compiler/ets/identifierReference3-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference3-expected.txt @@ -435,23 +435,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } } @@ -542,12 +542,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/identifierReference4-expected.txt b/ets2panda/test/compiler/ets/identifierReference4-expected.txt index bed72d5ed11b89f0c4e5a6bdd14300794738428f..beb0f9de571c0db777b146fd15c7af262a494110 100644 --- a/ets2panda/test/compiler/ets/identifierReference4-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference4-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 } } }, @@ -689,23 +689,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 17 } } } @@ -796,12 +796,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/identifierReference5-expected.txt b/ets2panda/test/compiler/ets/identifierReference5-expected.txt index e0cef05812a4d38732a01afb6743d0801ffbe325..ebaa3df0392c0733bb049e85472606fe1e15c774 100644 --- a/ets2panda/test/compiler/ets/identifierReference5-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference5-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 } } }, @@ -209,12 +209,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 23 } } }, diff --git a/ets2panda/test/compiler/ets/inferTypeOfArray-expected.txt b/ets2panda/test/compiler/ets/inferTypeOfArray-expected.txt index 835924e26a17c4e648145487aadfba3402cfb59b..ed3c6dd87d5fd3763b62d4bcef09dfb9a232888a 100644 --- a/ets2panda/test/compiler/ets/inferTypeOfArray-expected.txt +++ b/ets2panda/test/compiler/ets/inferTypeOfArray-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -233,23 +233,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, @@ -332,23 +332,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, @@ -501,23 +501,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 34 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 34 } } }, @@ -557,23 +557,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 11 } } }, @@ -671,23 +671,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 19 } } }, "loc": { "start": { - "line": 1, + "line": 22, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 19 } } }, @@ -949,12 +949,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, @@ -999,12 +999,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -1064,12 +1064,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, @@ -1157,12 +1157,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, @@ -1320,12 +1320,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 34 } } }, @@ -1370,12 +1370,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 11 } } }, @@ -1478,12 +1478,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 19 } } } diff --git a/ets2panda/test/compiler/ets/inferTypeOfArrayNegative1-expected.txt b/ets2panda/test/compiler/ets/inferTypeOfArrayNegative1-expected.txt index 88c70a3f2dd27e73d03dcb6a8d6589eb6a39a01d..8f6bb0ae1d0975589b7f81984e15d40d629ba372 100644 --- a/ets2panda/test/compiler/ets/inferTypeOfArrayNegative1-expected.txt +++ b/ets2panda/test/compiler/ets/inferTypeOfArrayNegative1-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 23 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 23 } } } @@ -300,12 +300,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 23 } } } diff --git a/ets2panda/test/compiler/ets/inferTypeOfArrayNegative2-expected.txt b/ets2panda/test/compiler/ets/inferTypeOfArrayNegative2-expected.txt index 8a219b90aaeaeb70f5101732898f1bfc95b46cc7..be6fbf6957dc573b9d43b407d70f4a2a4be7deca 100644 --- a/ets2panda/test/compiler/ets/inferTypeOfArrayNegative2-expected.txt +++ b/ets2panda/test/compiler/ets/inferTypeOfArrayNegative2-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -420,23 +420,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } } @@ -528,12 +528,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -666,12 +666,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } } diff --git a/ets2panda/test/compiler/ets/inferTypeOfArrayNegative3-expected.txt b/ets2panda/test/compiler/ets/inferTypeOfArrayNegative3-expected.txt index aca5d358ee60330e2d0ffb7355d4224539765564..6b9887c2443957e1e61566b49f2c8077b5b809e5 100644 --- a/ets2panda/test/compiler/ets/inferTypeOfArrayNegative3-expected.txt +++ b/ets2panda/test/compiler/ets/inferTypeOfArrayNegative3-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 18 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 18 } } }, @@ -385,12 +385,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 18 } } } diff --git a/ets2panda/test/compiler/ets/infinityNarrowing-expected.txt b/ets2panda/test/compiler/ets/infinityNarrowing-expected.txt index 15762d56248fd9d3714a8e176cddbba1c326798c..0e8ee965c51ef83140341a2831267caee8114ed2 100644 --- a/ets2panda/test/compiler/ets/infinityNarrowing-expected.txt +++ b/ets2panda/test/compiler/ets/infinityNarrowing-expected.txt @@ -198,12 +198,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 41 } } }, @@ -289,12 +289,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 39 } } }, @@ -380,12 +380,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 41 } } } diff --git a/ets2panda/test/compiler/ets/invalidInheritance1-expected.txt b/ets2panda/test/compiler/ets/invalidInheritance1-expected.txt index c352a2bbf8d8919eeaa6bbc20989e755c08b8c61..035dd5dd21c1153e965fd16b527ba91e0703095a 100644 --- a/ets2panda/test/compiler/ets/invalidInheritance1-expected.txt +++ b/ets2panda/test/compiler/ets/invalidInheritance1-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 15 } } }, diff --git a/ets2panda/test/compiler/ets/invalidInheritance3-expected.txt b/ets2panda/test/compiler/ets/invalidInheritance3-expected.txt index b51e8ebc28d9b4a9e7dfda61e70054c0e946f267..bb1005989a0af56b8f0cdd76857e7d4a8184ac95 100644 --- a/ets2panda/test/compiler/ets/invalidInheritance3-expected.txt +++ b/ets2panda/test/compiler/ets/invalidInheritance3-expected.txt @@ -187,12 +187,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 33 } } }, @@ -427,12 +427,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 15 } } }, diff --git a/ets2panda/test/compiler/ets/invalidPrivateAccess1-expected.txt b/ets2panda/test/compiler/ets/invalidPrivateAccess1-expected.txt index 050eafacd6e78562b37a13570083d4b2c800ed71..f902846d03329cbaf2f6f287b0d0a254703358b1 100644 --- a/ets2panda/test/compiler/ets/invalidPrivateAccess1-expected.txt +++ b/ets2panda/test/compiler/ets/invalidPrivateAccess1-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 15 } } }, diff --git a/ets2panda/test/compiler/ets/invalidPrivateAccess2-expected.txt b/ets2panda/test/compiler/ets/invalidPrivateAccess2-expected.txt index 363fb01a7035caaf6ce91eb80df139c7611b0439..37596af9b0411671162bed3285e0892dfc1935ef 100644 --- a/ets2panda/test/compiler/ets/invalidPrivateAccess2-expected.txt +++ b/ets2panda/test/compiler/ets/invalidPrivateAccess2-expected.txt @@ -255,12 +255,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } } diff --git a/ets2panda/test/compiler/ets/invalidPrivateAccess3-expected.txt b/ets2panda/test/compiler/ets/invalidPrivateAccess3-expected.txt index 2d7478d6bbb74531046405fff69057d2ebc6ff1c..7a5181e8f833dcd0efe9e484c626a4c8b470c3a3 100644 --- a/ets2panda/test/compiler/ets/invalidPrivateAccess3-expected.txt +++ b/ets2panda/test/compiler/ets/invalidPrivateAccess3-expected.txt @@ -255,12 +255,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, diff --git a/ets2panda/test/compiler/ets/invalidPrivateAccess4-expected.txt b/ets2panda/test/compiler/ets/invalidPrivateAccess4-expected.txt index e32a0fe8b363c29033f82de27e2524ebcfc9828a..661b94b89bb836625aa5045129f81acd6c1a15c1 100644 --- a/ets2panda/test/compiler/ets/invalidPrivateAccess4-expected.txt +++ b/ets2panda/test/compiler/ets/invalidPrivateAccess4-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, diff --git a/ets2panda/test/compiler/ets/invalidProtectedAccess1-expected.txt b/ets2panda/test/compiler/ets/invalidProtectedAccess1-expected.txt index 5614525b4dd15844890c659c258b6e5ad78d0da4..013fcfafc4406c822305c7b524edcaa704178a9e 100644 --- a/ets2panda/test/compiler/ets/invalidProtectedAccess1-expected.txt +++ b/ets2panda/test/compiler/ets/invalidProtectedAccess1-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 15 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 16 } } }, diff --git a/ets2panda/test/compiler/ets/invalidProtectedAccess2-expected.txt b/ets2panda/test/compiler/ets/invalidProtectedAccess2-expected.txt index e0a657b55a3c1182d8c7e98a0f75da005ef5f5c2..e7356eb49ac88663605c00760fdfa126b2da8113 100644 --- a/ets2panda/test/compiler/ets/invalidProtectedAccess2-expected.txt +++ b/ets2panda/test/compiler/ets/invalidProtectedAccess2-expected.txt @@ -255,12 +255,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 24 } } } diff --git a/ets2panda/test/compiler/ets/invalidProtectedAccess3-expected.txt b/ets2panda/test/compiler/ets/invalidProtectedAccess3-expected.txt index a3ba983dd75bc6a2498dfdae3e64ad4d1d57ee4f..fa41a9e7db8e6ea6dfb79ef3d996be4a197c9388 100644 --- a/ets2panda/test/compiler/ets/invalidProtectedAccess3-expected.txt +++ b/ets2panda/test/compiler/ets/invalidProtectedAccess3-expected.txt @@ -255,12 +255,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 24 } } }, diff --git a/ets2panda/test/compiler/ets/lambdaFunction1-expected.txt b/ets2panda/test/compiler/ets/lambdaFunction1-expected.txt index 22a3b73a7aeabb59eb9a14bbf64c3778db3c2b05..132a58cca84c259f538604a00d25b0fbf40fcfb9 100644 --- a/ets2panda/test/compiler/ets/lambdaFunction1-expected.txt +++ b/ets2panda/test/compiler/ets/lambdaFunction1-expected.txt @@ -553,12 +553,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 34, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 36, + "column": 6 } } }, @@ -783,23 +783,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } } @@ -890,12 +890,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -1083,12 +1083,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 2 } } }, diff --git a/ets2panda/test/compiler/ets/lambdaFunction4-expected.txt b/ets2panda/test/compiler/ets/lambdaFunction4-expected.txt index 1dc4a6da9a133b7a9ffcb444516db13c20737e51..581964183a2641672a9bbc8fde3b4fe0532fe59b 100644 --- a/ets2panda/test/compiler/ets/lambdaFunction4-expected.txt +++ b/ets2panda/test/compiler/ets/lambdaFunction4-expected.txt @@ -104,12 +104,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, @@ -353,12 +353,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 6 } } }, diff --git a/ets2panda/test/compiler/ets/lambdaFunction5-expected.txt b/ets2panda/test/compiler/ets/lambdaFunction5-expected.txt index 2cae57f050c12f9206ee759d2fff9109c6cac46a..131a90f02e35ec70e1ef761fb09451a38ed0d508 100644 --- a/ets2panda/test/compiler/ets/lambdaFunction5-expected.txt +++ b/ets2panda/test/compiler/ets/lambdaFunction5-expected.txt @@ -63,12 +63,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -437,12 +437,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 6 } } }, diff --git a/ets2panda/test/compiler/ets/launch_expression-expected.txt b/ets2panda/test/compiler/ets/launch_expression-expected.txt index 943aa3142140f683aabf5d6270246626eb436d73..ef4e77e94292a46fcb1550c006cc52d5d3b59384 100644 --- a/ets2panda/test/compiler/ets/launch_expression-expected.txt +++ b/ets2panda/test/compiler/ets/launch_expression-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 14 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -245,23 +245,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 30 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 31 } } }, @@ -328,23 +328,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 30 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 31 } } } @@ -436,12 +436,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 14 } } }, @@ -486,12 +486,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -548,12 +548,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 15 } } }, @@ -610,12 +610,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, diff --git a/ets2panda/test/compiler/ets/loopWithinLambda-expected.txt b/ets2panda/test/compiler/ets/loopWithinLambda-expected.txt index 9c9103dccf00b6d76e65386ee61d42021ea14ca0..520b7c45cc2609b062daec9d91f721d5e9c14959 100644 --- a/ets2panda/test/compiler/ets/loopWithinLambda-expected.txt +++ b/ets2panda/test/compiler/ets/loopWithinLambda-expected.txt @@ -1390,12 +1390,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 2 } } }, diff --git a/ets2panda/test/compiler/ets/manyLocalsParamRegUsage-expected.txt b/ets2panda/test/compiler/ets/manyLocalsParamRegUsage-expected.txt index 0420e8c4b96b71d6e36ac2179941af5bdd885130..9c8d5790d23a90e3ee6a20cb67a84306d46f7edd 100644 --- a/ets2panda/test/compiler/ets/manyLocalsParamRegUsage-expected.txt +++ b/ets2panda/test/compiler/ets/manyLocalsParamRegUsage-expected.txt @@ -10697,12 +10697,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 280, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 280, + "column": 18 } } }, @@ -14373,12 +14373,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 281, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 538, + "column": 7 } } }, diff --git a/ets2panda/test/compiler/ets/objectLiteralAbstract-expected.txt b/ets2panda/test/compiler/ets/objectLiteralAbstract-expected.txt index 69b8a1f75481b700c511885771312e5b850412c8..e4799e206c3975afe37d67236466909ca6fbeff2 100644 --- a/ets2panda/test/compiler/ets/objectLiteralAbstract-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralAbstract-expected.txt @@ -243,23 +243,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 15 } } } @@ -378,12 +378,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralBadKey-expected.txt b/ets2panda/test/compiler/ets/objectLiteralBadKey-expected.txt index 69dabbbb8f507ece4fa449766a3bac54b2f53dd4..37364fa25b8d25f5d7a19254dfe384a02a91aee4 100644 --- a/ets2panda/test/compiler/ets/objectLiteralBadKey-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralBadKey-expected.txt @@ -289,23 +289,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 3 } } } @@ -424,12 +424,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralInaccessibleKey-expected.txt b/ets2panda/test/compiler/ets/objectLiteralInaccessibleKey-expected.txt index 3d5876a288aea2b930633f3cdd5079405613bc24..7d776f219ab4f37e9980605c8736ed316acc3b00 100644 --- a/ets2panda/test/compiler/ets/objectLiteralInaccessibleKey-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralInaccessibleKey-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, @@ -339,23 +339,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 3 } } } @@ -474,12 +474,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralInterface-expected.txt b/ets2panda/test/compiler/ets/objectLiteralInterface-expected.txt index 2fca7389c448f7bcba61df2a0c56c44087316526..368098ad83f6eb7b5f35661510a5781ab22f2714 100644 --- a/ets2panda/test/compiler/ets/objectLiteralInterface-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralInterface-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 15 } } } @@ -284,12 +284,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralNoContextType-expected.txt b/ets2panda/test/compiler/ets/objectLiteralNoContextType-expected.txt index 58b54f8ad1ed0153e11c6f54b1a8169e74561474..ef22164be00fe61f84da4df0bdc7c4adc381728e 100644 --- a/ets2panda/test/compiler/ets/objectLiteralNoContextType-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralNoContextType-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 } } } @@ -214,12 +214,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralNoParameterlessConstructor-expected.txt b/ets2panda/test/compiler/ets/objectLiteralNoParameterlessConstructor-expected.txt index 8c92271a75f399b9b7089e85aedc90d9054cc2d7..365d537e22b794e553d61b68cf3d0407320c40f5 100644 --- a/ets2panda/test/compiler/ets/objectLiteralNoParameterlessConstructor-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralNoParameterlessConstructor-expected.txt @@ -286,23 +286,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } } @@ -421,12 +421,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralNoSuchKey-expected.txt b/ets2panda/test/compiler/ets/objectLiteralNoSuchKey-expected.txt index 3a47a2cb86681feb3c7fd71b08a0399ba4820788..d7eb3607ecdda660cc4a5d74dd402f5e03f19c6d 100644 --- a/ets2panda/test/compiler/ets/objectLiteralNoSuchKey-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralNoSuchKey-expected.txt @@ -290,23 +290,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 3 } } } @@ -425,12 +425,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralPrimitiveContextType-expected.txt b/ets2panda/test/compiler/ets/objectLiteralPrimitiveContextType-expected.txt index 67be00033869b6b07c182be1b7272d5bdf81ce6e..15dc9ad6b1f1d483d7ac083b9f8a22f8341d1e22 100644 --- a/ets2panda/test/compiler/ets/objectLiteralPrimitiveContextType-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralPrimitiveContextType-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 17 } } } @@ -213,12 +213,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralPrivateConstructor-expected.txt b/ets2panda/test/compiler/ets/objectLiteralPrivateConstructor-expected.txt index 270254e5ab5f47498bbfd189e99e126943f37d16..65af224bc883906b76a4648d61499d8d66007624 100644 --- a/ets2panda/test/compiler/ets/objectLiteralPrivateConstructor-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralPrivateConstructor-expected.txt @@ -244,23 +244,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } } @@ -379,12 +379,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralReadonlyKey-expected.txt b/ets2panda/test/compiler/ets/objectLiteralReadonlyKey-expected.txt index f98ed82a485635ee8ca5508daad2bd618b0d136c..277e55a111bd4dcedf02ac2061caecd338b5fc33 100644 --- a/ets2panda/test/compiler/ets/objectLiteralReadonlyKey-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralReadonlyKey-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 20 } } }, @@ -339,23 +339,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 3 } } } @@ -474,12 +474,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/objectLiteralWrongValueType-expected.txt b/ets2panda/test/compiler/ets/objectLiteralWrongValueType-expected.txt index cba33cf83f95878978207ba234016f9e56128c85..b391dd776152656baf1fa61458c423c4940fd5ce 100644 --- a/ets2panda/test/compiler/ets/objectLiteralWrongValueType-expected.txt +++ b/ets2panda/test/compiler/ets/objectLiteralWrongValueType-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -339,23 +339,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 3 } } } @@ -474,12 +474,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } } diff --git a/ets2panda/test/compiler/ets/setArrayLength1-expected.txt b/ets2panda/test/compiler/ets/setArrayLength1-expected.txt index a494136da14d4df2024aea6e9c83c5d5eb0b48d5..df6abda8adaa59f33375167c80fd2c1300d8de28 100644 --- a/ets2panda/test/compiler/ets/setArrayLength1-expected.txt +++ b/ets2panda/test/compiler/ets/setArrayLength1-expected.txt @@ -132,12 +132,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 34 } } }, diff --git a/ets2panda/test/compiler/ets/superReferenceFromStaticContext-expected.txt b/ets2panda/test/compiler/ets/superReferenceFromStaticContext-expected.txt index 2d6182f988e66d750e26381fee3cc349495e7957..0fe5d6df8dda8edc812d63a41138d508cbd0428e 100644 --- a/ets2panda/test/compiler/ets/superReferenceFromStaticContext-expected.txt +++ b/ets2panda/test/compiler/ets/superReferenceFromStaticContext-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 15 } } }, diff --git a/ets2panda/test/compiler/ets/thisReferenceFromStaticContext-expected.txt b/ets2panda/test/compiler/ets/thisReferenceFromStaticContext-expected.txt index 19f43b83628682f7616844eaa4604b51a56bfd86..28b0b12faeb806eaed28de7f60d7958426bbf331 100644 --- a/ets2panda/test/compiler/ets/thisReferenceFromStaticContext-expected.txt +++ b/ets2panda/test/compiler/ets/thisReferenceFromStaticContext-expected.txt @@ -233,12 +233,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, diff --git a/ets2panda/test/compiler/ets/throwingFunctionCheck1-expected.txt b/ets2panda/test/compiler/ets/throwingFunctionCheck1-expected.txt index 76f6ac6fcda6ef5d615c5ba6043773fa4224bfbc..14b1a16a4052ff3326d0faf4d09ed45a02c3c214 100644 --- a/ets2panda/test/compiler/ets/throwingFunctionCheck1-expected.txt +++ b/ets2panda/test/compiler/ets/throwingFunctionCheck1-expected.txt @@ -122,23 +122,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 27 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 28 } } } @@ -382,12 +382,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 27 } } } diff --git a/ets2panda/test/compiler/ets/typeAlias-expected.txt b/ets2panda/test/compiler/ets/typeAlias-expected.txt index afd663e75c8cf939ac914e00ab8557a5902f9318..4f17d69d03438581f00eefe50e28732e1d2d4227 100644 --- a/ets2panda/test/compiler/ets/typeAlias-expected.txt +++ b/ets2panda/test/compiler/ets/typeAlias-expected.txt @@ -167,23 +167,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 28 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 29 } } } @@ -336,12 +336,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 28 } } } diff --git a/ets2panda/test/compiler/ets/union_types_1-expected.txt b/ets2panda/test/compiler/ets/union_types_1-expected.txt index 124c26c7ed81d78a771058243ca42cbbb295f32c..c6343a07d2af189303ee52626d73928658599864 100644 --- a/ets2panda/test/compiler/ets/union_types_1-expected.txt +++ b/ets2panda/test/compiler/ets/union_types_1-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, @@ -276,12 +276,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 18 } } }, @@ -476,12 +476,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 18 } } }, diff --git a/ets2panda/test/compiler/ets/union_types_2-expected.txt b/ets2panda/test/compiler/ets/union_types_2-expected.txt index 868389447b183772a6d3affbcd902e8bfbcc5715..02bad5efa30c8e9a195fca186ff7cda9332d71c0 100644 --- a/ets2panda/test/compiler/ets/union_types_2-expected.txt +++ b/ets2panda/test/compiler/ets/union_types_2-expected.txt @@ -213,12 +213,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, @@ -413,12 +413,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 18 } } }, diff --git a/ets2panda/test/compiler/ets/union_types_4-expected.txt b/ets2panda/test/compiler/ets/union_types_4-expected.txt index f69abcff990d30f21f336bdbc510840c89d79cb4..3ae46f4f245c157c7e296e237c49a9f52d4ef420 100644 --- a/ets2panda/test/compiler/ets/union_types_4-expected.txt +++ b/ets2panda/test/compiler/ets/union_types_4-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, diff --git a/ets2panda/test/compiler/ets/union_types_5-expected.txt b/ets2panda/test/compiler/ets/union_types_5-expected.txt index 1ca5dd87b41c5782c6c35e20978a00677fa6680f..3a041975ac79846e59708c3e456c28967f60f1c1 100644 --- a/ets2panda/test/compiler/ets/union_types_5-expected.txt +++ b/ets2panda/test/compiler/ets/union_types_5-expected.txt @@ -174,12 +174,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 15 } } }, @@ -374,12 +374,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 18 } } }, @@ -574,12 +574,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 18 } } }, diff --git a/ets2panda/test/parser/ets/AccessBinaryTrees-expected.txt b/ets2panda/test/parser/ets/AccessBinaryTrees-expected.txt index df130879674f709131f58e8118451cf1885bee5f..d5501d37a78b4b9f0ffdf8acd77fb4c6087cdaf2 100644 --- a/ets2panda/test/parser/ets/AccessBinaryTrees-expected.txt +++ b/ets2panda/test/parser/ets/AccessBinaryTrees-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 27 } } }, @@ -167,12 +167,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 28 } } }, @@ -216,12 +216,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } }, @@ -1348,12 +1348,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 36, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 36, + "column": 33 } } }, @@ -1398,12 +1398,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 37, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 37, + "column": 31 } } }, @@ -1463,12 +1463,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 38, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 32 } } }, diff --git a/ets2panda/test/parser/ets/AccessFannkuch-expected.txt b/ets2panda/test/parser/ets/AccessFannkuch-expected.txt index ae08c0e2bc89e3161066f26273a90a2abac937a2..bf878c72fa03e37a869114189c2edde404646afe 100644 --- a/ets2panda/test/parser/ets/AccessFannkuch-expected.txt +++ b/ets2panda/test/parser/ets/AccessFannkuch-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, @@ -304,12 +304,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/AccessNBody-expected.txt b/ets2panda/test/parser/ets/AccessNBody-expected.txt index 71bf383517453d950e44559734f7abe60cc0a7a3..068b84444be6b15f224b93399867d68cccc4efd4 100644 --- a/ets2panda/test/parser/ets/AccessNBody-expected.txt +++ b/ets2panda/test/parser/ets/AccessNBody-expected.txt @@ -206,12 +206,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 47 } } }, @@ -255,12 +255,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 16 } } }, @@ -304,12 +304,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 16 } } }, @@ -353,12 +353,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 16 } } }, @@ -402,12 +402,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 17 } } }, @@ -451,12 +451,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 17 } } }, @@ -500,12 +500,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 17 } } }, @@ -549,12 +549,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 19 } } }, @@ -2418,12 +2418,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 47, + "column": 6 }, "end": { - "line": 1, - "column": 1 + "line": 47, + "column": 23 } } }, @@ -10644,12 +10644,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 119, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 119, + "column": 54 } } }, @@ -10707,12 +10707,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 120, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 120, + "column": 52 } } }, @@ -10770,12 +10770,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 121, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 121, + "column": 17 } } }, @@ -10833,12 +10833,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 122, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 122, + "column": 18 } } }, @@ -13551,12 +13551,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 139, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 139, + "column": 53 } } }, diff --git a/ets2panda/test/parser/ets/AccessNSieve-expected.txt b/ets2panda/test/parser/ets/AccessNSieve-expected.txt index c51455e4dd544f0e1444e2169f38211620f221ea..e9379ad0e68b659f0e6efe5606a982a1314bc11a 100644 --- a/ets2panda/test/parser/ets/AccessNSieve-expected.txt +++ b/ets2panda/test/parser/ets/AccessNSieve-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 34 } } }, @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 40 } } }, @@ -264,12 +264,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 29 } } }, diff --git a/ets2panda/test/parser/ets/Bitops3BitBitsInByte-expected.txt b/ets2panda/test/parser/ets/Bitops3BitBitsInByte-expected.txt index 1eccd3fe82a3342280f4f27fe92748eee1cca953..a298f24c52b74b3278008473dccf4b51f0f2f877 100644 --- a/ets2panda/test/parser/ets/Bitops3BitBitsInByte-expected.txt +++ b/ets2panda/test/parser/ets/Bitops3BitBitsInByte-expected.txt @@ -893,12 +893,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 24 } } }, @@ -956,12 +956,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 24 } } }, @@ -1019,12 +1019,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 27 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 49 } } }, diff --git a/ets2panda/test/parser/ets/BitopsBitsInByte-expected.txt b/ets2panda/test/parser/ets/BitopsBitsInByte-expected.txt index 9f7a9bfd2fbf598bb3d9bc99e2489e3de2186e25..dd67845c62470f0b84d2c2dcf4779e29c60d5636 100644 --- a/ets2panda/test/parser/ets/BitopsBitsInByte-expected.txt +++ b/ets2panda/test/parser/ets/BitopsBitsInByte-expected.txt @@ -667,12 +667,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 24 } } }, @@ -730,12 +730,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 24 } } }, @@ -793,12 +793,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 27 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 49 } } }, diff --git a/ets2panda/test/parser/ets/BitopsBitwiseAnd-expected.txt b/ets2panda/test/parser/ets/BitopsBitwiseAnd-expected.txt index b7f077ed40726f59e9e5d73ebdef996d6a64967c..d9d3f5b4cc96b7c69151f5322ff837966c350543 100644 --- a/ets2panda/test/parser/ets/BitopsBitwiseAnd-expected.txt +++ b/ets2panda/test/parser/ets/BitopsBitwiseAnd-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 37 } } }, diff --git a/ets2panda/test/parser/ets/BitopsNSieveBits-expected.txt b/ets2panda/test/parser/ets/BitopsNSieveBits-expected.txt index a9f4084f952173fceea4fab0ae77bbbce48d02fe..6e174ce74bed36e52d83d3388896a99a5954eadf 100644 --- a/ets2panda/test/parser/ets/BitopsNSieveBits-expected.txt +++ b/ets2panda/test/parser/ets/BitopsNSieveBits-expected.txt @@ -2192,12 +2192,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 42, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 42, + "column": 14 } } }, @@ -2255,12 +2255,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 43, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 43, + "column": 18 } } }, @@ -2333,12 +2333,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 44, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 44, + "column": 50 } } }, diff --git a/ets2panda/test/parser/ets/ControlFlowRecursive-expected.txt b/ets2panda/test/parser/ets/ControlFlowRecursive-expected.txt index d3f54dd3e82aa4f0c91c453e5ca33e53cd1cb6b1..5a053da53e353202d757f71054ec7a9d8c74bf2a 100644 --- a/ets2panda/test/parser/ets/ControlFlowRecursive-expected.txt +++ b/ets2panda/test/parser/ets/ControlFlowRecursive-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 30 } } }, @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 40 } } }, diff --git a/ets2panda/test/parser/ets/Dollar_dollar_1-expected.txt b/ets2panda/test/parser/ets/Dollar_dollar_1-expected.txt index d15e91cc98bfe094ee321a6a12461a4dac52fe31..b50e9e486748a14f8ad68761bfe6093b6b1ee9e0 100644 --- a/ets2panda/test/parser/ets/Dollar_dollar_1-expected.txt +++ b/ets2panda/test/parser/ets/Dollar_dollar_1-expected.txt @@ -121,23 +121,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } } @@ -244,12 +244,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } } diff --git a/ets2panda/test/parser/ets/Dollar_dollar_2-expected.txt b/ets2panda/test/parser/ets/Dollar_dollar_2-expected.txt index acae80b8e2e9cdc1cfe19d213215e491496b78a0..43188a188ab441342e467771d57b657272a91d01 100644 --- a/ets2panda/test/parser/ets/Dollar_dollar_2-expected.txt +++ b/ets2panda/test/parser/ets/Dollar_dollar_2-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 29 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 23 } } }, @@ -230,12 +230,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 36 } } }, diff --git a/ets2panda/test/parser/ets/Dollar_dollar_3-expected.txt b/ets2panda/test/parser/ets/Dollar_dollar_3-expected.txt index b0087ada5fdff4b2fad21b31af6acac4765737c7..f981e5c3544c73106fa0e317c75001073cc238bc 100644 --- a/ets2panda/test/parser/ets/Dollar_dollar_3-expected.txt +++ b/ets2panda/test/parser/ets/Dollar_dollar_3-expected.txt @@ -284,23 +284,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 4 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 4 } } }, @@ -356,23 +356,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } } @@ -505,12 +505,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 4 } } }, @@ -571,12 +571,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } } diff --git a/ets2panda/test/parser/ets/Dollar_dollar_4-expected.txt b/ets2panda/test/parser/ets/Dollar_dollar_4-expected.txt index ca830b055948632c62e206b61655010901def400..f38a7fdcfff8746312205053549a22f3cd26c14e 100644 --- a/ets2panda/test/parser/ets/Dollar_dollar_4-expected.txt +++ b/ets2panda/test/parser/ets/Dollar_dollar_4-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } } @@ -214,12 +214,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } } diff --git a/ets2panda/test/parser/ets/FunctionType-expected.txt b/ets2panda/test/parser/ets/FunctionType-expected.txt index e7dd67b60f462ab48b7a3449156cf6fc7b1ee24a..051ecf2aa9ba66bce0629e4cfa1a0f047d63f03c 100644 --- a/ets2panda/test/parser/ets/FunctionType-expected.txt +++ b/ets2panda/test/parser/ets/FunctionType-expected.txt @@ -187,12 +187,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 32 } } }, @@ -564,12 +564,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 32 } } }, @@ -669,12 +669,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } }, diff --git a/ets2panda/test/parser/ets/MathCordic-expected.txt b/ets2panda/test/parser/ets/MathCordic-expected.txt index dd28c3583b68da9afc6a45575b1a8540a3064f04..56e1b883227409c26f070ad2413545b234710af2 100644 --- a/ets2panda/test/parser/ets/MathCordic-expected.txt +++ b/ets2panda/test/parser/ets/MathCordic-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 53 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 51 } } }, @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 59 } } }, @@ -1179,12 +1179,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 391 } } }, @@ -4633,12 +4633,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 68, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 68, + "column": 12 } } }, diff --git a/ets2panda/test/parser/ets/MathPartialSums-expected.txt b/ets2panda/test/parser/ets/MathPartialSums-expected.txt index efb9d801cafd6b1dd0b5da554a83b48f3557e936..23eb4fa4753baadc7c0603ec692e79ba95aacab8 100644 --- a/ets2panda/test/parser/ets/MathPartialSums-expected.txt +++ b/ets2panda/test/parser/ets/MathPartialSums-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 33 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 34 } } }, @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 55 } } }, @@ -265,12 +265,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 25 } } }, diff --git a/ets2panda/test/parser/ets/MathSpectralNorm-expected.txt b/ets2panda/test/parser/ets/MathSpectralNorm-expected.txt index 5a90ca960749ceae2867464814f7717b5827b9ab..2c9560bd208fa1b6efacdbb852355181094ec775 100644 --- a/ets2panda/test/parser/ets/MathSpectralNorm-expected.txt +++ b/ets2panda/test/parser/ets/MathSpectralNorm-expected.txt @@ -4998,12 +4998,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 76, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 76, + "column": 14 } } }, @@ -5061,12 +5061,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 77, + "column": 3 }, "end": { - "line": 1, - "column": 1 + "line": 77, + "column": 15 } } }, @@ -5124,12 +5124,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 78, + "column": 27 }, "end": { - "line": 1, - "column": 1 + "line": 78, + "column": 63 } } }, diff --git a/ets2panda/test/parser/ets/Morph3d-expected.txt b/ets2panda/test/parser/ets/Morph3d-expected.txt index 9d8cc669825ef4b65f85256fda25a6d6e7afccec..e5929d51a22301e09c8b302a1d222082630f165a 100644 --- a/ets2panda/test/parser/ets/Morph3d-expected.txt +++ b/ets2panda/test/parser/ets/Morph3d-expected.txt @@ -148,12 +148,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 27 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 43 } } }, @@ -211,12 +211,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 27 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 38 } } }, @@ -273,12 +273,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 22 } } }, diff --git a/ets2panda/test/parser/ets/StringBase64-expected.txt b/ets2panda/test/parser/ets/StringBase64-expected.txt index 8957ad62c158195c72c9b01a6a3dacb15219a6b3..8ea38a24270626dc74d6c58efc5f568b80e96644 100644 --- a/ets2panda/test/parser/ets/StringBase64-expected.txt +++ b/ets2panda/test/parser/ets/StringBase64-expected.txt @@ -132,12 +132,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 119 } } }, @@ -195,12 +195,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 44 } } }, @@ -3009,12 +3009,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 548 } } }, @@ -9357,12 +9357,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 70, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 70, + "column": 20 } } }, @@ -9420,12 +9420,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 71, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 71, + "column": 21 } } }, diff --git a/ets2panda/test/parser/ets/access_modifier_3-expected.txt b/ets2panda/test/parser/ets/access_modifier_3-expected.txt index a4b4adad2ca3510f091eb4e29cce685bd5631716..6e1441dd51416b58b74ffe14ab1af4e942c94038 100644 --- a/ets2panda/test/parser/ets/access_modifier_3-expected.txt +++ b/ets2panda/test/parser/ets/access_modifier_3-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 25 } } }, diff --git a/ets2panda/test/parser/ets/anonymous_class-expected.txt b/ets2panda/test/parser/ets/anonymous_class-expected.txt index 44d1aafb1a57c1994c14fafc673e6148e55c5e8f..efcfb803c883d651bd6c892aa919b7f136df6cfa 100644 --- a/ets2panda/test/parser/ets/anonymous_class-expected.txt +++ b/ets2panda/test/parser/ets/anonymous_class-expected.txt @@ -196,12 +196,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 25 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 38 } } }, @@ -414,12 +414,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 7 } } }, diff --git a/ets2panda/test/parser/ets/array-expected.txt b/ets2panda/test/parser/ets/array-expected.txt index b41cb428aa336649bb62adcb20ad8594249697ae..94a5bd22f3afa1dc49d04edd32d2342628ce3c27 100644 --- a/ets2panda/test/parser/ets/array-expected.txt +++ b/ets2panda/test/parser/ets/array-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 23 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 24 } } }, @@ -248,23 +248,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 34 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 35 } } } @@ -368,12 +368,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, @@ -458,12 +458,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, diff --git a/ets2panda/test/parser/ets/arrayHoldingNullValue-expected.txt b/ets2panda/test/parser/ets/arrayHoldingNullValue-expected.txt index dabdff4623bcbe79ae17ebc00332ac88bf5b23b4..d9ff0c65bccdf4ff3e8f29a7deff02413dc370e6 100644 --- a/ets2panda/test/parser/ets/arrayHoldingNullValue-expected.txt +++ b/ets2panda/test/parser/ets/arrayHoldingNullValue-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 27 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 28 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 31 } } }, @@ -218,23 +218,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 30 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 31 } } } @@ -338,12 +338,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, @@ -400,12 +400,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, @@ -490,12 +490,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 18 } } }, diff --git a/ets2panda/test/parser/ets/array_type-expected.txt b/ets2panda/test/parser/ets/array_type-expected.txt index 58aa59e69cd4a99c9897683ef53036bab75393b3..d86b75cade346005dd3d2f529055dca1674a0e0b 100644 --- a/ets2panda/test/parser/ets/array_type-expected.txt +++ b/ets2panda/test/parser/ets/array_type-expected.txt @@ -215,12 +215,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 24 } } }, @@ -303,12 +303,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 32 } } }, diff --git a/ets2panda/test/parser/ets/assign-expected.txt b/ets2panda/test/parser/ets/assign-expected.txt index de7bfd7e216b62820733bfca1b4b51248a6e86de..89ce3dbfcaa36a1abdb33489da5ff8c2b95fcd1b 100644 --- a/ets2panda/test/parser/ets/assign-expected.txt +++ b/ets2panda/test/parser/ets/assign-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } } @@ -214,12 +214,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, @@ -264,12 +264,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 } } }, diff --git a/ets2panda/test/parser/ets/assign-func-expected.txt b/ets2panda/test/parser/ets/assign-func-expected.txt index a391d586b28b76439b85bbdf61ac2ae21cb0bf06..9acaaa71d7e17739606f0832fb279a402f803b44 100644 --- a/ets2panda/test/parser/ets/assign-func-expected.txt +++ b/ets2panda/test/parser/ets/assign-func-expected.txt @@ -368,12 +368,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 34 } } } diff --git a/ets2panda/test/parser/ets/assignments-expected.txt b/ets2panda/test/parser/ets/assignments-expected.txt index d5dbf6fbb6d7e7398860de6d5cd44a95ad36aea5..a23e936e229dd27f1da9aa2ba4bb7df8679d7bef 100644 --- a/ets2panda/test/parser/ets/assignments-expected.txt +++ b/ets2panda/test/parser/ets/assignments-expected.txt @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } }, @@ -251,12 +251,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } }, diff --git a/ets2panda/test/parser/ets/async_function-expected.txt b/ets2panda/test/parser/ets/async_function-expected.txt index f9b41ad62976230f90159731e78beb366c4d2b08..5ad52c7a2102a52b95198532b56e5b1029e9a5ba 100644 --- a/ets2panda/test/parser/ets/async_function-expected.txt +++ b/ets2panda/test/parser/ets/async_function-expected.txt @@ -999,12 +999,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 96 } } } diff --git a/ets2panda/test/parser/ets/async_lambda_bad-expected.txt b/ets2panda/test/parser/ets/async_lambda_bad-expected.txt index 6928920e681cd9cff7853c4026ae65af7b547fdd..348a522a40c5f421097da5e12cfbec6c86be5e96 100644 --- a/ets2panda/test/parser/ets/async_lambda_bad-expected.txt +++ b/ets2panda/test/parser/ets/async_lambda_bad-expected.txt @@ -256,12 +256,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 55 } } } diff --git a/ets2panda/test/parser/ets/async_with_lambda-expected.txt b/ets2panda/test/parser/ets/async_with_lambda-expected.txt index 2007b8a7be58dbdd60a7102bfe8470e58ad5a622..657afa171455554c64b5d2a5cf2dd6abbcda280e 100644 --- a/ets2panda/test/parser/ets/async_with_lambda-expected.txt +++ b/ets2panda/test/parser/ets/async_with_lambda-expected.txt @@ -156,12 +156,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, diff --git a/ets2panda/test/parser/ets/await_keyword-expected.txt b/ets2panda/test/parser/ets/await_keyword-expected.txt index 9adc24bf5003ce6ca65d8a6dcb9b75b06f74f263..2159d4df660a84e8b58988960fd248006cbbf539 100644 --- a/ets2panda/test/parser/ets/await_keyword-expected.txt +++ b/ets2panda/test/parser/ets/await_keyword-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 38, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 43 } } }, "loc": { "start": { - "line": 1, + "line": 38, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 44 } } }, @@ -176,23 +176,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 39, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 33 } } }, "loc": { "start": { - "line": 1, + "line": 39, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 33 } } } @@ -1308,12 +1308,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 2 } } }, @@ -2158,12 +2158,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 33, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 36, + "column": 2 } } }, @@ -2291,12 +2291,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 38, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 31 } } }, @@ -2368,12 +2368,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 39, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 18 } } } diff --git a/ets2panda/test/parser/ets/binary_op-expected.txt b/ets2panda/test/parser/ets/binary_op-expected.txt index 4be4d2ea48517d38274b99172e9921e0e2c1134b..f491c8074d578921dbadc41b6583978df7d70555 100644 --- a/ets2panda/test/parser/ets/binary_op-expected.txt +++ b/ets2panda/test/parser/ets/binary_op-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 } } }, @@ -218,23 +218,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, @@ -274,23 +274,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } }, @@ -371,23 +371,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, @@ -427,23 +427,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 29 } } }, "loc": { "start": { - "line": 1, + "line": 22, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 30 } } }, @@ -513,23 +513,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 18 } } }, "loc": { "start": { - "line": 1, + "line": 25, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 19 } } }, @@ -628,23 +628,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 24 } } }, "loc": { "start": { - "line": 1, + "line": 26, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 25 } } }, @@ -714,23 +714,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 19 } } }, "loc": { "start": { - "line": 1, + "line": 29, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 20 } } }, @@ -800,23 +800,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 19 } } }, "loc": { "start": { - "line": 1, + "line": 30, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 20 } } }, @@ -944,23 +944,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 33 } } }, "loc": { "start": { - "line": 1, + "line": 31, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 34 } } }, @@ -1088,23 +1088,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 32, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 32, + "column": 33 } } }, "loc": { "start": { - "line": 1, + "line": 32, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 32, + "column": 34 } } }, @@ -1232,23 +1232,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 33, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 33, + "column": 33 } } }, "loc": { "start": { - "line": 1, + "line": 33, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 33, + "column": 34 } } }, @@ -1376,23 +1376,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 34, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 34, + "column": 33 } } }, "loc": { "start": { - "line": 1, + "line": 34, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 34, + "column": 34 } } }, @@ -1462,23 +1462,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 37, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 37, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 37, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 37, + "column": 17 } } }, @@ -1548,23 +1548,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 38, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 38, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 17 } } }, @@ -1634,23 +1634,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 39, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 39, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 17 } } }, @@ -1836,23 +1836,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 40, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 40, + "column": 32 } } }, "loc": { "start": { - "line": 1, + "line": 40, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 40, + "column": 33 } } }, @@ -1922,23 +1922,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 43, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 43, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 43, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 43, + "column": 18 } } }, @@ -2008,23 +2008,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 44, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 44, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 44, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 44, + "column": 18 } } }, @@ -2094,23 +2094,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 45, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 45, + "column": 20 } } }, "loc": { "start": { - "line": 1, + "line": 45, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 45, + "column": 21 } } }, @@ -2180,23 +2180,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 46, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 46, + "column": 20 } } }, "loc": { "start": { - "line": 1, + "line": 46, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 46, + "column": 21 } } }, @@ -2266,23 +2266,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 49, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 49, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 49, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 49, + "column": 17 } } }, @@ -2352,23 +2352,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 50, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 50, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 50, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 50, + "column": 17 } } }, @@ -2438,23 +2438,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 51, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 51, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 51, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 51, + "column": 18 } } }, @@ -2524,23 +2524,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 52, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 52, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 52, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 52, + "column": 18 } } }, @@ -2610,23 +2610,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 53, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 53, + "column": 31 } } }, "loc": { "start": { - "line": 1, + "line": 53, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 53, + "column": 32 } } }, @@ -2696,23 +2696,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 56, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 56, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 56, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 56, + "column": 18 } } }, @@ -2782,23 +2782,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 57, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 57, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 57, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 57, + "column": 18 } } }, @@ -2868,23 +2868,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 58, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 58, + "column": 18 } } }, "loc": { "start": { - "line": 1, + "line": 58, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 58, + "column": 19 } } }, @@ -3012,23 +3012,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 59, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 59, + "column": 28 } } }, "loc": { "start": { - "line": 1, + "line": 59, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 59, + "column": 29 } } }, @@ -3098,23 +3098,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 62, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 62, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 62, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 62, + "column": 17 } } }, @@ -3184,23 +3184,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 63, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 63, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 63, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 63, + "column": 17 } } }, @@ -3328,23 +3328,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 64, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 64, + "column": 24 } } }, "loc": { "start": { - "line": 1, + "line": 64, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 64, + "column": 25 } } }, @@ -3414,23 +3414,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 67, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 67, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 67, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 67, + "column": 17 } } }, @@ -3500,23 +3500,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 68, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 68, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 68, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 68, + "column": 17 } } }, @@ -3586,23 +3586,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 69, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 69, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 69, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 69, + "column": 17 } } }, @@ -3788,23 +3788,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 70, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 70, + "column": 32 } } }, "loc": { "start": { - "line": 1, + "line": 70, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 70, + "column": 33 } } }, @@ -3932,23 +3932,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 73, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 73, + "column": 26 } } }, "loc": { "start": { - "line": 1, + "line": 73, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 73, + "column": 27 } } }, @@ -4076,23 +4076,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 74, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 74, + "column": 28 } } }, "loc": { "start": { - "line": 1, + "line": 74, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 74, + "column": 29 } } }, @@ -4423,23 +4423,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 75, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 75, + "column": 62 } } }, "loc": { "start": { - "line": 1, + "line": 75, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 75, + "column": 63 } } }, @@ -4770,23 +4770,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 76, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 76, + "column": 63 } } }, "loc": { "start": { - "line": 1, + "line": 76, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 76, + "column": 64 } } }, @@ -4943,23 +4943,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 77, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 77, + "column": 34 } } }, "loc": { "start": { - "line": 1, + "line": 77, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 77, + "column": 35 } } } @@ -5051,12 +5051,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -5101,12 +5101,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 10 } } }, @@ -5151,12 +5151,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, @@ -5201,12 +5201,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } }, @@ -5292,12 +5292,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, @@ -5369,12 +5369,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 17 } } }, @@ -5449,12 +5449,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 18 } } }, @@ -5558,12 +5558,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 24 } } }, @@ -5638,12 +5638,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 19 } } }, @@ -5718,12 +5718,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 19 } } }, @@ -5856,12 +5856,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 33 } } }, @@ -5994,12 +5994,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 32, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 32, + "column": 33 } } }, @@ -6132,12 +6132,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 33, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 33, + "column": 33 } } }, @@ -6270,12 +6270,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 34, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 34, + "column": 33 } } }, @@ -6350,12 +6350,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 37, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 37, + "column": 16 } } }, @@ -6430,12 +6430,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 38, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 16 } } }, @@ -6510,12 +6510,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 39, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 16 } } }, @@ -6706,12 +6706,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 40, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 40, + "column": 32 } } }, @@ -6786,12 +6786,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 43, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 43, + "column": 17 } } }, @@ -6866,12 +6866,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 44, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 44, + "column": 17 } } }, @@ -6946,12 +6946,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 45, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 45, + "column": 20 } } }, @@ -7026,12 +7026,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 46, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 46, + "column": 20 } } }, @@ -7106,12 +7106,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 49, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 49, + "column": 16 } } }, @@ -7186,12 +7186,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 50, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 50, + "column": 16 } } }, @@ -7266,12 +7266,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 51, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 51, + "column": 17 } } }, @@ -7346,12 +7346,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 52, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 52, + "column": 17 } } }, @@ -7426,12 +7426,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 53, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 53, + "column": 31 } } }, @@ -7506,12 +7506,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 56, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 56, + "column": 17 } } }, @@ -7586,12 +7586,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 57, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 57, + "column": 17 } } }, @@ -7666,12 +7666,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 58, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 58, + "column": 18 } } }, @@ -7804,12 +7804,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 59, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 59, + "column": 28 } } }, @@ -7884,12 +7884,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 62, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 62, + "column": 16 } } }, @@ -7964,12 +7964,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 63, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 63, + "column": 16 } } }, @@ -8102,12 +8102,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 64, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 64, + "column": 24 } } }, @@ -8182,12 +8182,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 67, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 67, + "column": 16 } } }, @@ -8262,12 +8262,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 68, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 68, + "column": 16 } } }, @@ -8342,12 +8342,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 69, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 69, + "column": 16 } } }, @@ -8538,12 +8538,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 70, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 70, + "column": 32 } } }, @@ -8676,12 +8676,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 73, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 73, + "column": 26 } } }, @@ -8814,12 +8814,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 74, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 74, + "column": 28 } } }, @@ -9155,12 +9155,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 75, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 75, + "column": 62 } } }, @@ -9496,12 +9496,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 76, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 76, + "column": 63 } } }, @@ -9663,12 +9663,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 77, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 77, + "column": 34 } } } diff --git a/ets2panda/test/parser/ets/binary_operations-expected.txt b/ets2panda/test/parser/ets/binary_operations-expected.txt index 2b38694179b7aba9963c400a90cb5aec4081599d..7503903f1d4b105f07a41b3ea71fca47c0b8e0cb 100644 --- a/ets2panda/test/parser/ets/binary_operations-expected.txt +++ b/ets2panda/test/parser/ets/binary_operations-expected.txt @@ -244,12 +244,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 31 } } }, @@ -391,12 +391,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 39 } } }, @@ -482,12 +482,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 31 } } }, @@ -601,12 +601,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 35 } } }, @@ -692,12 +692,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 31 } } }, @@ -839,12 +839,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 39 } } }, @@ -930,12 +930,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 39 } } }, @@ -1077,12 +1077,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 54 } } }, @@ -1168,12 +1168,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 37 } } }, @@ -1343,12 +1343,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 60 } } }, @@ -1434,12 +1434,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 31 } } }, @@ -1525,12 +1525,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 32 } } }, @@ -1616,12 +1616,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 33 } } }, @@ -1707,12 +1707,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 32, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 32, + "column": 31 } } }, @@ -1798,12 +1798,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 33, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 33, + "column": 31 } } }, @@ -1889,12 +1889,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 34, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 34, + "column": 31 } } }, @@ -1980,12 +1980,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 35, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 35, + "column": 33 } } }, @@ -2071,12 +2071,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 36, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 36, + "column": 34 } } }, @@ -2162,12 +2162,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 37, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 37, + "column": 34 } } }, @@ -2253,12 +2253,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 38, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 38, + "column": 33 } } }, @@ -2344,12 +2344,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 39, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 39, + "column": 34 } } }, @@ -2435,12 +2435,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 40, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 40, + "column": 34 } } }, @@ -2582,12 +2582,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 41, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 41, + "column": 46 } } }, @@ -2729,12 +2729,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 42, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 42, + "column": 46 } } }, diff --git a/ets2panda/test/parser/ets/boolean-expected.txt b/ets2panda/test/parser/ets/boolean-expected.txt index ef4e2d8e363389611b650ec6382d36d83b554c8d..ddbbcc7ffe442204fe38b00816e034e1440fa5c6 100644 --- a/ets2panda/test/parser/ets/boolean-expected.txt +++ b/ets2panda/test/parser/ets/boolean-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 23 } } } @@ -213,12 +213,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, @@ -263,12 +263,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 16 } } } diff --git a/ets2panda/test/parser/ets/break-expected.txt b/ets2panda/test/parser/ets/break-expected.txt index 6f3b8210bd49cfc6bbb0e59c8d254cee4ff8b322..c165861131c3dca33733e7b1a729bb99e726b1c6 100644 --- a/ets2panda/test/parser/ets/break-expected.txt +++ b/ets2panda/test/parser/ets/break-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 26 } } } @@ -269,12 +269,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, diff --git a/ets2panda/test/parser/ets/cast_expressions5-expected.txt b/ets2panda/test/parser/ets/cast_expressions5-expected.txt index d791b13df928e116652ece4c009b538d4462c392..d8a3a2b217d8f3854979e80bd5d1110a4dd80f79 100644 --- a/ets2panda/test/parser/ets/cast_expressions5-expected.txt +++ b/ets2panda/test/parser/ets/cast_expressions5-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 17 } } }, @@ -705,23 +705,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 26 } } } @@ -812,12 +812,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 21 } } }, diff --git a/ets2panda/test/parser/ets/class_init-expected.txt b/ets2panda/test/parser/ets/class_init-expected.txt index 985153831a02029cbcd5675e03ff5c08eced33db..ddee21102b0dd0ba05782339fc70cefafd44bfcf 100644 --- a/ets2panda/test/parser/ets/class_init-expected.txt +++ b/ets2panda/test/parser/ets/class_init-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 17 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, diff --git a/ets2panda/test/parser/ets/class_instance-expected.txt b/ets2panda/test/parser/ets/class_instance-expected.txt index a6bdefd2f1df70c3c4fb72e391964ef91e012ec5..a4e953fd73edf315b9fb8640d579eb82ca42af9e 100644 --- a/ets2panda/test/parser/ets/class_instance-expected.txt +++ b/ets2panda/test/parser/ets/class_instance-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 } } }, @@ -244,23 +244,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 21 } } }, @@ -344,23 +344,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 23 } } }, @@ -488,23 +488,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 29 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 30 } } } @@ -596,12 +596,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, @@ -646,12 +646,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -722,12 +722,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } }, @@ -816,12 +816,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 22 } } }, @@ -954,12 +954,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 29 } } } diff --git a/ets2panda/test/parser/ets/class_instance_creation-expected.txt b/ets2panda/test/parser/ets/class_instance_creation-expected.txt index b9cfb97c79990632e342474c80a00858871b54f4..5b17fb7414cddee4d27b172030303bf9817c700e 100644 --- a/ets2panda/test/parser/ets/class_instance_creation-expected.txt +++ b/ets2panda/test/parser/ets/class_instance_creation-expected.txt @@ -721,12 +721,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 76 } } }, @@ -868,12 +868,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 77 } } }, @@ -1029,12 +1029,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 85 } } } diff --git a/ets2panda/test/parser/ets/class_instance_initializer-expected.txt b/ets2panda/test/parser/ets/class_instance_initializer-expected.txt index 4e1f9163543a795969ead5a52efeb9060873cd6c..f43d49e1c488306b3e7675a201dbe2f34e1cc96f 100644 --- a/ets2panda/test/parser/ets/class_instance_initializer-expected.txt +++ b/ets2panda/test/parser/ets/class_instance_initializer-expected.txt @@ -216,12 +216,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, @@ -279,12 +279,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } }, @@ -1705,12 +1705,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 44, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 44, + "column": 16 } } }, @@ -1768,12 +1768,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 45, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 45, + "column": 16 } } }, diff --git a/ets2panda/test/parser/ets/class_static_initializer-expected.txt b/ets2panda/test/parser/ets/class_static_initializer-expected.txt index 48f5bda364a58ff9fdaafe7739c644d25c130ca7..7a091612afe48d9247b68b4af9175904e01ddfce 100644 --- a/ets2panda/test/parser/ets/class_static_initializer-expected.txt +++ b/ets2panda/test/parser/ets/class_static_initializer-expected.txt @@ -216,12 +216,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 23 } } }, @@ -696,12 +696,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 23 } } }, diff --git a/ets2panda/test/parser/ets/const-expected.txt b/ets2panda/test/parser/ets/const-expected.txt index 15ceee614718d599536797de13e0a3f30f06aa1d..1747669044fc29618c620316a97b5d2989dc97a4 100644 --- a/ets2panda/test/parser/ets/const-expected.txt +++ b/ets2panda/test/parser/ets/const-expected.txt @@ -157,12 +157,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 } } }, @@ -248,12 +248,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } } diff --git a/ets2panda/test/parser/ets/constructor_with_return_1-expected.txt b/ets2panda/test/parser/ets/constructor_with_return_1-expected.txt index a8d99f387378ac1cf09f2f8e96d22c633561c261..09cc3fe47d3a9ba508b87908e9378bfb79c9cd15 100644 --- a/ets2panda/test/parser/ets/constructor_with_return_1-expected.txt +++ b/ets2panda/test/parser/ets/constructor_with_return_1-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 16 } } }, diff --git a/ets2panda/test/parser/ets/constructor_with_return_2-expected.txt b/ets2panda/test/parser/ets/constructor_with_return_2-expected.txt index c12b546800e52d6f095b88dc9fc76f24fbad6a9b..39d854bcec258aa9336e357b7cb580f4613d8e39 100644 --- a/ets2panda/test/parser/ets/constructor_with_return_2-expected.txt +++ b/ets2panda/test/parser/ets/constructor_with_return_2-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 16 } } }, diff --git a/ets2panda/test/parser/ets/constructors-expected.txt b/ets2panda/test/parser/ets/constructors-expected.txt index 762124e0a30691c56f463095e4166e5b8face1b8..3bbc3e2cd13139bb48d0059a568b70dd98077b33 100644 --- a/ets2panda/test/parser/ets/constructors-expected.txt +++ b/ets2panda/test/parser/ets/constructors-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, @@ -111,12 +111,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 } } }, @@ -799,12 +799,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 19 } } }, diff --git a/ets2panda/test/parser/ets/continue-expected.txt b/ets2panda/test/parser/ets/continue-expected.txt index 278cbe5e954a88df3aa0ef780ff90a3ea92c636b..cd8cfe6fabf65c4e7e0b788ab216c52b559ed281 100644 --- a/ets2panda/test/parser/ets/continue-expected.txt +++ b/ets2panda/test/parser/ets/continue-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 26 } } } @@ -269,12 +269,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, diff --git a/ets2panda/test/parser/ets/decl_infer-expected.txt b/ets2panda/test/parser/ets/decl_infer-expected.txt index 6cf890abe7d7568f8768b3639687257d3c3a0188..0455f4f8b2e9110156d6a2d656885ede6c5def4d 100644 --- a/ets2panda/test/parser/ets/decl_infer-expected.txt +++ b/ets2panda/test/parser/ets/decl_infer-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 14 } } }, @@ -218,23 +218,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 15 } } }, @@ -274,23 +274,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, @@ -330,23 +330,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } } @@ -438,12 +438,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -488,12 +488,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 } } }, @@ -538,12 +538,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, @@ -588,12 +588,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, @@ -638,12 +638,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 } } }, @@ -688,12 +688,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 13 } } }, @@ -738,12 +738,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 15 } } }, @@ -788,12 +788,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 16 } } }, @@ -838,12 +838,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 16 } } }, @@ -888,12 +888,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 17 } } } diff --git a/ets2panda/test/parser/ets/declare_class-expected.txt b/ets2panda/test/parser/ets/declare_class-expected.txt index 373bf55cae62e02efecbe743687a1c915e608d92..4e26b0f34509b4b43ddfcbd42916bb3d78572795 100644 --- a/ets2panda/test/parser/ets/declare_class-expected.txt +++ b/ets2panda/test/parser/ets/declare_class-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 22 } } }, diff --git a/ets2panda/test/parser/ets/declare_class_bad_2-expected.txt b/ets2panda/test/parser/ets/declare_class_bad_2-expected.txt index cdaf88a64574c4fd3fc9400d6848c420f763cb3a..8fc27406b67b17ec075baded8262001d885f9cda 100644 --- a/ets2panda/test/parser/ets/declare_class_bad_2-expected.txt +++ b/ets2panda/test/parser/ets/declare_class_bad_2-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 8 } } }, diff --git a/ets2panda/test/parser/ets/declare_class_bad_4-expected.txt b/ets2panda/test/parser/ets/declare_class_bad_4-expected.txt index 752e4a97cdf2482ba45ea5ca5df3b5f02ed4c940..beb867b7c5edc03ddd55dd39c38464986da7c261 100644 --- a/ets2panda/test/parser/ets/declare_class_bad_4-expected.txt +++ b/ets2panda/test/parser/ets/declare_class_bad_4-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 } } }, diff --git a/ets2panda/test/parser/ets/dynamic_import_tests/modules/module-expected.txt b/ets2panda/test/parser/ets/dynamic_import_tests/modules/module-expected.txt index 89bafa7dc78e11846fd1089dc1620841e5665318..63103e5c36e00436f54f6fe15496bc78c7c39ce4 100644 --- a/ets2panda/test/parser/ets/dynamic_import_tests/modules/module-expected.txt +++ b/ets2panda/test/parser/ets/dynamic_import_tests/modules/module-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 16 } } }, @@ -139,12 +139,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 22 } } }, diff --git a/ets2panda/test/parser/ets/empty_statement-expected.txt b/ets2panda/test/parser/ets/empty_statement-expected.txt index df7d09a3cd5d122eae7645c6e1315ec3e5d0a984..2e225881a50cdbead8412272e1fcb37864c37007 100644 --- a/ets2panda/test/parser/ets/empty_statement-expected.txt +++ b/ets2panda/test/parser/ets/empty_statement-expected.txt @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } }, diff --git a/ets2panda/test/parser/ets/enum-expected.txt b/ets2panda/test/parser/ets/enum-expected.txt index 33faf5b2498f1fdc6c1fca6a04ba0484d27174d2..edcd158548ed00f63dd34d455018a1c3ffbcb6d7 100644 --- a/ets2panda/test/parser/ets/enum-expected.txt +++ b/ets2panda/test/parser/ets/enum-expected.txt @@ -247,12 +247,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 10 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 19 } } }, diff --git a/ets2panda/test/parser/ets/exports-expected.txt b/ets2panda/test/parser/ets/exports-expected.txt index f0f84b4b21fd14ee348758a2c3d296b7725a2398..aab03ca6223b18134f4b881ca75b3b54274a573f 100644 --- a/ets2panda/test/parser/ets/exports-expected.txt +++ b/ets2panda/test/parser/ets/exports-expected.txt @@ -327,23 +327,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 18 } } }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 8 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 19 } } } @@ -435,12 +435,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 18 } } }, @@ -485,12 +485,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 20 } } }, diff --git a/ets2panda/test/parser/ets/extension_function_tests/extension_function_access_private_field-expected.txt b/ets2panda/test/parser/ets/extension_function_tests/extension_function_access_private_field-expected.txt index 9d29b2e8db9cb4bbdf0049eb8b5fa6ae35022fc7..81d573a8a844b6d159166b8c43b53155759fdf7a 100644 --- a/ets2panda/test/parser/ets/extension_function_tests/extension_function_access_private_field-expected.txt +++ b/ets2panda/test/parser/ets/extension_function_tests/extension_function_access_private_field-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 24 } } }, diff --git a/ets2panda/test/parser/ets/field_decl-expected.txt b/ets2panda/test/parser/ets/field_decl-expected.txt index 13d0f0143d25fd65fe785bd4ddd82697f0ac54e3..25bfd9129a170d6fae7fa85d26d9c532dc07f18c 100644 --- a/ets2panda/test/parser/ets/field_decl-expected.txt +++ b/ets2panda/test/parser/ets/field_decl-expected.txt @@ -202,12 +202,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } }, @@ -251,12 +251,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 15 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 23 } } }, @@ -314,12 +314,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 15 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 30 } } }, @@ -377,12 +377,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 30 } } }, @@ -426,12 +426,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 14 } } }, @@ -475,12 +475,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 20 } } }, @@ -538,12 +538,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 38 } } }, @@ -601,12 +601,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 28 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 48 } } }, @@ -664,12 +664,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 22 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 34 } } }, diff --git a/ets2panda/test/parser/ets/for_of-expected.txt b/ets2panda/test/parser/ets/for_of-expected.txt index 481464b7259e994d486816a998733452133af19c..d3446be05acb4a707042ce62be9e66b71e03153c 100644 --- a/ets2panda/test/parser/ets/for_of-expected.txt +++ b/ets2panda/test/parser/ets/for_of-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } } @@ -269,12 +269,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 15 } } }, diff --git a/ets2panda/test/parser/ets/for_of_02-expected.txt b/ets2panda/test/parser/ets/for_of_02-expected.txt index 7a44ae114a3c8ff1e0a1ddf081d9d10e615731de..f7ae611379b140d2abf221271420444eec740cd0 100644 --- a/ets2panda/test/parser/ets/for_of_02-expected.txt +++ b/ets2panda/test/parser/ets/for_of_02-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 26 } } } @@ -269,12 +269,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, diff --git a/ets2panda/test/parser/ets/function-expected.txt b/ets2panda/test/parser/ets/function-expected.txt index a5f03e6e932f58902a2622205dd5e2eda1c36623..f1b6103f28447ef581b227b2b2e7eb24c5667e1a 100644 --- a/ets2panda/test/parser/ets/function-expected.txt +++ b/ets2panda/test/parser/ets/function-expected.txt @@ -1467,12 +1467,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 34, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 36, + "column": 2 } } } diff --git a/ets2panda/test/parser/ets/functionTypeThrows-expected.txt b/ets2panda/test/parser/ets/functionTypeThrows-expected.txt index 9f504266b843b1daeaff8568c320056754be55b6..2c3510eb6070b6e709fbb43b7891a215c1cc35ee 100644 --- a/ets2panda/test/parser/ets/functionTypeThrows-expected.txt +++ b/ets2panda/test/parser/ets/functionTypeThrows-expected.txt @@ -254,12 +254,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 32 } } } diff --git a/ets2panda/test/parser/ets/function_implicit_return_type2-expected.txt b/ets2panda/test/parser/ets/function_implicit_return_type2-expected.txt index e765b5e9e3e22a4c40d8e7145ad6bfd46973fb87..86dadbaca552b0b22c7f1cd3bcc89d9bc24254e7 100644 --- a/ets2panda/test/parser/ets/function_implicit_return_type2-expected.txt +++ b/ets2panda/test/parser/ets/function_implicit_return_type2-expected.txt @@ -272,12 +272,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 44 } } } diff --git a/ets2panda/test/parser/ets/function_implicit_return_type3-expected.txt b/ets2panda/test/parser/ets/function_implicit_return_type3-expected.txt index 86c0bf3a67b14a00dad67ec7b52878c2d2541808..41e4545d599f50668ebfd4a924992a225a4b2899 100644 --- a/ets2panda/test/parser/ets/function_implicit_return_type3-expected.txt +++ b/ets2panda/test/parser/ets/function_implicit_return_type3-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 32 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 33 } } } @@ -421,12 +421,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 32 } } } diff --git a/ets2panda/test/parser/ets/generics_1-expected.txt b/ets2panda/test/parser/ets/generics_1-expected.txt index ef863b3f6522e330abc880b86838697f2ceadfb1..d8e381e5d79357471ad7d40e3f3153c46c732594 100644 --- a/ets2panda/test/parser/ets/generics_1-expected.txt +++ b/ets2panda/test/parser/ets/generics_1-expected.txt @@ -133,12 +133,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -446,12 +446,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 } } }, @@ -646,12 +646,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 17 } } }, diff --git a/ets2panda/test/parser/ets/getter_native-expected.txt b/ets2panda/test/parser/ets/getter_native-expected.txt index 51137c86a61adabd0385189fa1bcc65993b3e95c..707c2e0c1e51639dbff40384c94e9d624469bdc8 100644 --- a/ets2panda/test/parser/ets/getter_native-expected.txt +++ b/ets2panda/test/parser/ets/getter_native-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 24 } } }, diff --git a/ets2panda/test/parser/ets/getter_setter_access_modifiers-expected.txt b/ets2panda/test/parser/ets/getter_setter_access_modifiers-expected.txt index 2ee593916541e3b04478b472877c837761d8d1ad..3412eacfea5a68acaf1a45299365245c543af3f4 100644 --- a/ets2panda/test/parser/ets/getter_setter_access_modifiers-expected.txt +++ b/ets2panda/test/parser/ets/getter_setter_access_modifiers-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, @@ -111,12 +111,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 24 } } }, @@ -769,12 +769,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 22 } } }, @@ -818,12 +818,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 24 } } }, diff --git a/ets2panda/test/parser/ets/getter_setter_access_modifiers_2-expected.txt b/ets2panda/test/parser/ets/getter_setter_access_modifiers_2-expected.txt index f4338c189264a1da8aab028e2b93d0e9fb727c55..ed873fe6929caabb985252186532009293bcd939 100644 --- a/ets2panda/test/parser/ets/getter_setter_access_modifiers_2-expected.txt +++ b/ets2panda/test/parser/ets/getter_setter_access_modifiers_2-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, @@ -111,12 +111,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 24 } } }, @@ -765,12 +765,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 23 } } }, @@ -814,12 +814,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 24 } } }, diff --git a/ets2panda/test/parser/ets/global_const_vars3-expected.txt b/ets2panda/test/parser/ets/global_const_vars3-expected.txt index e04656ffbcb0632b906f3c1e08779d294f3ff7e0..e2c12eaa49798fdd8480024812da446e5f294a71 100644 --- a/ets2panda/test/parser/ets/global_const_vars3-expected.txt +++ b/ets2panda/test/parser/ets/global_const_vars3-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 32 } } }, @@ -646,12 +646,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 17 } } }, @@ -778,12 +778,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } } diff --git a/ets2panda/test/parser/ets/global_const_vars4-expected.txt b/ets2panda/test/parser/ets/global_const_vars4-expected.txt index 256ab597dba491525248d5785704f8f19a9478d5..8d67d403e87a8e200ea9088362ca8a568d1e9889 100644 --- a/ets2panda/test/parser/ets/global_const_vars4-expected.txt +++ b/ets2panda/test/parser/ets/global_const_vars4-expected.txt @@ -145,12 +145,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 45 } } }, @@ -889,4 +889,4 @@ } } } -TypeError: Cannot assign to a constant variable date [global_const_vars4.ets:1:1] +TypeError: Cannot assign to a constant variable date [global_const_vars4.ets:17:21] diff --git a/ets2panda/test/parser/ets/identifier-expected.txt b/ets2panda/test/parser/ets/identifier-expected.txt index ffe91080804c1082ba423295668914b2efd6a291..79101bcf96800d89de1a50e9199225cedaac2967 100644 --- a/ets2panda/test/parser/ets/identifier-expected.txt +++ b/ets2panda/test/parser/ets/identifier-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 27 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 31 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 32 } } }, @@ -218,23 +218,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 27 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 28 } } } @@ -325,12 +325,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, @@ -374,12 +374,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 27 } } }, @@ -423,12 +423,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 23 } } } diff --git a/ets2panda/test/parser/ets/import_tests/diamond/test2-expected.txt b/ets2panda/test/parser/ets/import_tests/diamond/test2-expected.txt index beebde9f92c0b04f55b1d6501e1b1b159a9530f5..020e5e183aa1dbcfcab384d8c6d778ab10b19a39 100644 --- a/ets2panda/test/parser/ets/import_tests/diamond/test2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/diamond/test2-expected.txt @@ -179,23 +179,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 } } }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 8 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 22 } } } @@ -288,12 +288,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 } } } diff --git a/ets2panda/test/parser/ets/import_tests/diamond/test3-expected.txt b/ets2panda/test/parser/ets/import_tests/diamond/test3-expected.txt index 64d88326d9155dcd267df70c0dd0c750b559273d..41d64f40ed99bea9ccd0c10a920cb18aa1ab0606 100644 --- a/ets2panda/test/parser/ets/import_tests/diamond/test3-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/diamond/test3-expected.txt @@ -179,23 +179,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 } } }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 8 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 22 } } } @@ -288,12 +288,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 } } } diff --git a/ets2panda/test/parser/ets/import_tests/diamond/test4-expected.txt b/ets2panda/test/parser/ets/import_tests/diamond/test4-expected.txt index 953043cdc28dc0c38dc0313fc693867501509c1f..49fc3015d82ec7acb23970b392f82ebe012f81e4 100644 --- a/ets2panda/test/parser/ets/import_tests/diamond/test4-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/diamond/test4-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 19 } } }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 8 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 20 } } } @@ -214,12 +214,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 19 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_alias/export-expected.txt b/ets2panda/test/parser/ets/import_tests/import_alias/export-expected.txt index 7b824f2ff048cb9d101d5e9e35c121531704cc74..6f65df047697c0e17df741ac22d048b7e86750ad 100644 --- a/ets2panda/test/parser/ets/import_tests/import_alias/export-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_alias/export-expected.txt @@ -568,23 +568,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 28, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 15 } } }, @@ -624,23 +624,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 21 } } }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 8 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 22 } } } @@ -1002,12 +1002,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 14 } } }, @@ -1052,12 +1052,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 21 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_all-expected.txt b/ets2panda/test/parser/ets/import_tests/import_all-expected.txt index c8d0f42b5e41cd6e56583df841617ad486a60803..a05f2eaec9c5335ddc4a9a6d7c354587f81b8448 100755 --- a/ets2panda/test/parser/ets/import_tests/import_all-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_all-expected.txt @@ -252,23 +252,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 47 } } }, @@ -340,23 +340,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } }, @@ -427,23 +427,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 48 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 49 } } } @@ -567,12 +567,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } }, @@ -649,12 +649,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 45 } } }, @@ -730,12 +730,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 48 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_all_alias_1-expected.txt b/ets2panda/test/parser/ets/import_tests/import_all_alias_1-expected.txt index aa4820bf60d0775cc2d8c378fd129d5f1f140729..e105d8c13c3fde8e3d43cebdb57dc782431d5609 100644 --- a/ets2panda/test/parser/ets/import_tests/import_all_alias_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_all_alias_1-expected.txt @@ -255,23 +255,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 56 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 57 } } }, @@ -403,23 +403,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 55 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 56 } } } @@ -603,12 +603,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 56 } } }, @@ -745,12 +745,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 55 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_all_alias_2-expected.txt b/ets2panda/test/parser/ets/import_tests/import_all_alias_2-expected.txt index 996057b92504c02391e37b37e25c0d7abe60ca4c..18b018cd704c49b55d3b2850048acc8fb99099d5 100755 --- a/ets2panda/test/parser/ets/import_tests/import_all_alias_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_all_alias_2-expected.txt @@ -195,23 +195,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 47 } } } @@ -335,12 +335,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_name_1-expected.txt b/ets2panda/test/parser/ets/import_tests/import_name_1-expected.txt index eb9dd09cbc92d5d265f6fd02ab8564ab9d122067..77c11005f850e46bb01176d0824fede31f297e9c 100755 --- a/ets2panda/test/parser/ets/import_tests/import_name_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_name_1-expected.txt @@ -296,23 +296,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 47 } } }, @@ -384,23 +384,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } } @@ -524,12 +524,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 46 } } }, @@ -606,12 +606,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_name_2-expected.txt b/ets2panda/test/parser/ets/import_tests/import_name_2-expected.txt index 32d4a693e6a9bf9f3661d40355e607305f69b4d4..4ce97a3c9bc8f6c6ea014f36e35c67458b7b276e 100755 --- a/ets2panda/test/parser/ets/import_tests/import_name_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_name_2-expected.txt @@ -253,23 +253,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } } @@ -393,12 +393,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 17 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_name_alias_1-expected.txt b/ets2panda/test/parser/ets/import_tests/import_name_alias_1-expected.txt index e2ec55d6b007e5439c8eed0298118ea3cda05fc5..8192941368ea24f6f7720624dde7df81d27bece2 100755 --- a/ets2panda/test/parser/ets/import_tests/import_name_alias_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_name_alias_1-expected.txt @@ -296,23 +296,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 47 } } }, @@ -384,23 +384,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } } @@ -524,12 +524,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 46 } } }, @@ -606,12 +606,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_name_alias_2-expected.txt b/ets2panda/test/parser/ets/import_tests/import_name_alias_2-expected.txt index 55cc9b92604e9d3ae8135c786f80dc1078b33be1..6c17455873bca42a862bb6654b85a19a7df8d4dc 100755 --- a/ets2panda/test/parser/ets/import_tests/import_name_alias_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_name_alias_2-expected.txt @@ -253,23 +253,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } } @@ -393,12 +393,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 17 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_relative_path-expected.txt b/ets2panda/test/parser/ets/import_tests/import_relative_path-expected.txt index 8d440877dc15a8db81d0ba3b32511450728b6e4c..c99810cb09868251e1b25b32ac77b981cfe998d0 100755 --- a/ets2panda/test/parser/ets/import_tests/import_relative_path-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_relative_path-expected.txt @@ -195,23 +195,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 47 } } }, @@ -283,23 +283,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } } @@ -423,12 +423,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 46 } } }, @@ -505,12 +505,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_1-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_1-expected.txt index 8214b5801d6d26b4eb8db16df8f561db06ca4a34..7ceeda97255e793639dafa3e9ea26440a915fc1a 100755 --- a/ets2panda/test/parser/ets/import_tests/import_several_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_1-expected.txt @@ -354,23 +354,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 47 } } }, @@ -442,23 +442,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 46 } } } @@ -582,12 +582,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } }, @@ -664,12 +664,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_2-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_2-expected.txt index 359cefafad21243794d99dc7c48165b343dcaa8b..a1118839c3ec9252ace25799812f2ba32ca32d5e 100755 --- a/ets2panda/test/parser/ets/import_tests/import_several_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_2-expected.txt @@ -252,23 +252,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 19 } } } @@ -391,12 +391,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_3-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_3-expected.txt index d3ab1b4c34ed9851d9438ab8e2ae3f111832bef5..bb89ff35a9cc410bace3f4991833478b5450fbf3 100755 --- a/ets2panda/test/parser/ets/import_tests/import_several_3-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_3-expected.txt @@ -267,23 +267,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 47 } } }, @@ -355,23 +355,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } } @@ -495,12 +495,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } }, @@ -577,12 +577,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_4-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_4-expected.txt index 89ec61fe08d5433199b5a25bafeb05ba2565ccd3..614c31accbe1145a796a297de4be41908887f17d 100644 --- a/ets2panda/test/parser/ets/import_tests/import_several_4-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_4-expected.txt @@ -297,23 +297,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 51 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 52 } } }, @@ -445,23 +445,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 55 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 56 } } } @@ -615,12 +615,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 51 } } }, @@ -757,12 +757,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 55 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_5-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_5-expected.txt index 95e2b9ca99e899d603e9c8bb410372d23921b9e6..3d619efbbe134e3b0c9ea4606b046b17bddc6a98 100755 --- a/ets2panda/test/parser/ets/import_tests/import_several_5-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_5-expected.txt @@ -267,23 +267,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 47 } } }, @@ -355,23 +355,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } } @@ -495,12 +495,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 46 } } }, @@ -577,12 +577,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_6-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_6-expected.txt index 6502defab4343385e930f0a5417495e20aa01f75..08763cfb560d323b79d9c3dced590c61c5054767 100644 --- a/ets2panda/test/parser/ets/import_tests/import_several_6-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_6-expected.txt @@ -297,23 +297,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 51 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 52 } } }, @@ -445,23 +445,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 55 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 56 } } } @@ -615,12 +615,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 51 } } }, @@ -757,12 +757,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 55 } } } diff --git a/ets2panda/test/parser/ets/import_tests/import_several_7-expected.txt b/ets2panda/test/parser/ets/import_tests/import_several_7-expected.txt index a092b0c023ce35de044ad529cf2cfa8816d0cf06..a522257b8f57f2d4b3ac7d8ad4e250a471f6dde5 100755 --- a/ets2panda/test/parser/ets/import_tests/import_several_7-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/import_several_7-expected.txt @@ -339,23 +339,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 47 } } }, @@ -427,23 +427,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 45 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 46 } } } @@ -567,12 +567,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 46 } } }, @@ -649,12 +649,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 45 } } } diff --git a/ets2panda/test/parser/ets/import_tests/modules/struct_default_module-expected.txt b/ets2panda/test/parser/ets/import_tests/modules/struct_default_module-expected.txt index 2afbc6d7abbcb9fc2e9cce7dc85ae0d92fd1305f..8e84f0f521ad0a24ddda14fe4fa34ab86a8b4a08 100644 --- a/ets2panda/test/parser/ets/import_tests/modules/struct_default_module-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/modules/struct_default_module-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, diff --git a/ets2panda/test/parser/ets/import_tests/modules/struct_module-expected.txt b/ets2panda/test/parser/ets/import_tests/modules/struct_module-expected.txt index 888bdee534c5fc99a46cacf3ecfab842c1093c88..1401356c1015f9bb7a7ded17a7013cb066157bff 100644 --- a/ets2panda/test/parser/ets/import_tests/modules/struct_module-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/modules/struct_module-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, diff --git a/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_1-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_1-expected.txt index 044b63affb8e6505e69a4a438392ae7ed5fb6998..85f26116667833d6e3b93976544a522ecad636d2 100755 --- a/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_1-expected.txt @@ -188,12 +188,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 37 } } } diff --git a/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_2-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_2-expected.txt index 3b6b6fbb30311934bfb0841b4759cccc7128d033..925e41d76aaf4ba07a500af1f679f963d288e3df 100755 --- a/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/different-header/subpackage_module_2-expected.txt @@ -188,12 +188,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 37 } } } diff --git a/ets2panda/test/parser/ets/import_tests/packages/package_module_1-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/package_module_1-expected.txt index 4706c5778946b15742e6e6265449d1d10d2d368a..e22b6128f4292dfc54edbf937aa6c598a3f78184 100755 --- a/ets2panda/test/parser/ets/import_tests/packages/package_module_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/package_module_1-expected.txt @@ -132,12 +132,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 38 } } }, diff --git a/ets2panda/test/parser/ets/import_tests/packages/package_module_2-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/package_module_2-expected.txt index 11c8c5ed4a5c89d416f201d5b5dabdc3cbf9f5cb..e11f163db86c2353dc6efe6bef5022613ebac601 100755 --- a/ets2panda/test/parser/ets/import_tests/packages/package_module_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/package_module_2-expected.txt @@ -132,12 +132,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 33 } } } diff --git a/ets2panda/test/parser/ets/import_tests/packages/subpackage-1/package_module_1-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/subpackage-1/package_module_1-expected.txt index 068e9cc8aafeea67998740f6741201c923ac741f..6db77e6e7f0a7f582a5b7b2a500d876badb9c8da 100644 --- a/ets2panda/test/parser/ets/import_tests/packages/subpackage-1/package_module_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/subpackage-1/package_module_1-expected.txt @@ -147,12 +147,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 } } } diff --git a/ets2panda/test/parser/ets/import_tests/packages/subpackage-2/package_module_1-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/subpackage-2/package_module_1-expected.txt index 1c44fc097c9600200e81cb3d45ccca5bef5984a5..fd7dc9f6ab8cf66f6e59e5db3eef3a87c8896c8f 100644 --- a/ets2panda/test/parser/ets/import_tests/packages/subpackage-2/package_module_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/subpackage-2/package_module_1-expected.txt @@ -147,12 +147,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 } } } diff --git a/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_1-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_1-expected.txt index ab9f2deb442f8b6e9a4559d662de8e6234c269f1..889698997e73fb93fdd0aed624c83923c26bd76b 100755 --- a/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_1-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_1-expected.txt @@ -188,12 +188,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 37 } } } diff --git a/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_2-expected.txt b/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_2-expected.txt index ab9f2deb442f8b6e9a4559d662de8e6234c269f1..889698997e73fb93fdd0aed624c83923c26bd76b 100755 --- a/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/packages/var-duplication/subpackage_module_2-expected.txt @@ -188,12 +188,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 37 } } } diff --git a/ets2panda/test/parser/ets/import_tests/relative_import/Line-expected.txt b/ets2panda/test/parser/ets/import_tests/relative_import/Line-expected.txt index 54408f63cd3436bf11c146f687f7761f6fd2e93c..e4fbb33d05932a8e7ff8ebe0a6d6dcdc89c496c4 100644 --- a/ets2panda/test/parser/ets/import_tests/relative_import/Line-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/relative_import/Line-expected.txt @@ -162,12 +162,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, @@ -239,12 +239,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } }, diff --git a/ets2panda/test/parser/ets/import_tests/relative_import/Point-expected.txt b/ets2panda/test/parser/ets/import_tests/relative_import/Point-expected.txt index 522f0a8f0b79d01871a1b23072aa79c8e04e6856..db8f03c2be7f5600f3ca8df48f3a191819b8a5af 100644 --- a/ets2panda/test/parser/ets/import_tests/relative_import/Point-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/relative_import/Point-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 14 } } }, @@ -111,12 +111,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, diff --git a/ets2panda/test/parser/ets/import_tests/relative_import/alias2-expected.txt b/ets2panda/test/parser/ets/import_tests/relative_import/alias2-expected.txt index 76e0d220b2c9091b2cd70a248f427665e7eedd47..78b1a6b2bbd6691406f23800e20c09cbf2293a27 100644 --- a/ets2panda/test/parser/ets/import_tests/relative_import/alias2-expected.txt +++ b/ets2panda/test/parser/ets/import_tests/relative_import/alias2-expected.txt @@ -337,23 +337,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 19 } } }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 8 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 20 } } } @@ -445,12 +445,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 19 } } }, diff --git a/ets2panda/test/parser/ets/index_expressions-expected.txt b/ets2panda/test/parser/ets/index_expressions-expected.txt index 5eafc0fe04534fc684551488be77f8af5f9c1936..da4f14491678ca06393920994b7ddf1ca0802ee6 100644 --- a/ets2panda/test/parser/ets/index_expressions-expected.txt +++ b/ets2panda/test/parser/ets/index_expressions-expected.txt @@ -132,23 +132,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 20 } } }, @@ -218,23 +218,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, @@ -305,23 +305,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, @@ -422,23 +422,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 17 } } } @@ -556,12 +556,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, @@ -636,12 +636,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 } } }, @@ -717,12 +717,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 } } }, @@ -828,12 +828,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } } diff --git a/ets2panda/test/parser/ets/internalParsing-expected.txt b/ets2panda/test/parser/ets/internalParsing-expected.txt index 63c475014317bf699b92bc5785f00b06f2be0fa4..a2fe1faccdd55da48ffec893504596803c38dc1f 100644 --- a/ets2panda/test/parser/ets/internalParsing-expected.txt +++ b/ets2panda/test/parser/ets/internalParsing-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, @@ -111,12 +111,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 19 } } }, diff --git a/ets2panda/test/parser/ets/internalProtectedParsing-expected.txt b/ets2panda/test/parser/ets/internalProtectedParsing-expected.txt index e225935409c974d2a3a9497bb55de6c9daa33956..9c8de543ac0094195f72e82a9368f8251bfb76a4 100644 --- a/ets2panda/test/parser/ets/internalProtectedParsing-expected.txt +++ b/ets2panda/test/parser/ets/internalProtectedParsing-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 29 } } }, @@ -111,12 +111,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 22 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 29 } } }, diff --git a/ets2panda/test/parser/ets/lambdaThrowsRethrows-expected.txt b/ets2panda/test/parser/ets/lambdaThrowsRethrows-expected.txt index cccfa91bfb237216be2a0a65e0c2d123f87459d7..bc9900bde930e18dea026ae0db5bf707db5b03da 100644 --- a/ets2panda/test/parser/ets/lambdaThrowsRethrows-expected.txt +++ b/ets2panda/test/parser/ets/lambdaThrowsRethrows-expected.txt @@ -286,12 +286,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 54 } } }, @@ -745,12 +745,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 133 } } } diff --git a/ets2panda/test/parser/ets/launch_with_call_expression-expected.txt b/ets2panda/test/parser/ets/launch_with_call_expression-expected.txt index 2eb0ed8184ae5ddd698b42934f76de172a83b26e..d5c78505507622de816eb29934b2c123c3b49b33 100644 --- a/ets2panda/test/parser/ets/launch_with_call_expression-expected.txt +++ b/ets2panda/test/parser/ets/launch_with_call_expression-expected.txt @@ -396,23 +396,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 25 } } } @@ -563,12 +563,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 25 } } } diff --git a/ets2panda/test/parser/ets/literals-expected.txt b/ets2panda/test/parser/ets/literals-expected.txt index 102b4b5cf5793da386c5ffa5eb222a2a180740af..019093d519550c2c3fce3b09662c62afae81ba86 100644 --- a/ets2panda/test/parser/ets/literals-expected.txt +++ b/ets2panda/test/parser/ets/literals-expected.txt @@ -157,12 +157,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, @@ -207,12 +207,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } }, @@ -257,12 +257,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 23 } } }, @@ -307,12 +307,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 21 } } }, @@ -357,12 +357,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 24 } } }, @@ -407,12 +407,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 21 } } }, @@ -457,12 +457,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 21 } } }, @@ -522,12 +522,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 22 } } }, @@ -572,12 +572,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 19 } } }, @@ -622,12 +622,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 24 } } }, @@ -672,12 +672,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 19 } } }, @@ -722,12 +722,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 20 } } }, @@ -772,12 +772,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 30, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 30, + "column": 19 } } }, @@ -822,12 +822,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 31, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 31, + "column": 17 } } }, @@ -915,12 +915,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 32, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 32, + "column": 22 } } }, @@ -1008,12 +1008,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 33, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 33, + "column": 28 } } }, @@ -1101,12 +1101,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 34, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 34, + "column": 28 } } } diff --git a/ets2panda/test/parser/ets/null-expected.txt b/ets2panda/test/parser/ets/null-expected.txt index fe48855d5646fa0642363eda4a33acae5fac7f6d..f069f5a6a679ab99caee7be78a77b7c0c31c644c 100644 --- a/ets2panda/test/parser/ets/null-expected.txt +++ b/ets2panda/test/parser/ets/null-expected.txt @@ -243,23 +243,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 26 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 27 } } }, @@ -340,23 +340,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 25 } } } @@ -475,12 +475,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 14 } } }, @@ -552,12 +552,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, diff --git a/ets2panda/test/parser/ets/null_invalid-expected.txt b/ets2panda/test/parser/ets/null_invalid-expected.txt index 63b294b65cabc536d959139b79a669dbbacbc9b5..1c9ab91eeeac7352aace79b9b760748ca182065d 100644 --- a/ets2panda/test/parser/ets/null_invalid-expected.txt +++ b/ets2panda/test/parser/ets/null_invalid-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 19 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 20 } } } @@ -215,12 +215,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, @@ -292,12 +292,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 17 } } } diff --git a/ets2panda/test/parser/ets/null_valid-expected.txt b/ets2panda/test/parser/ets/null_valid-expected.txt index 78a7b9c1a8d0f1bae13a38b1bc0e8bd8dd1f5f82..1891cfc564194d2f8b9d7038adff79c3ca03b7e2 100644 --- a/ets2panda/test/parser/ets/null_valid-expected.txt +++ b/ets2panda/test/parser/ets/null_valid-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 27 } } } @@ -215,12 +215,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, @@ -292,12 +292,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 17 } } } diff --git a/ets2panda/test/parser/ets/nullableType-expected.txt b/ets2panda/test/parser/ets/nullableType-expected.txt index 4ffaa76dd684359644472e7adf7c6e4ac0783152..ed0d54068514e413f44c031d2e948014ed8deeff 100644 --- a/ets2panda/test/parser/ets/nullableType-expected.txt +++ b/ets2panda/test/parser/ets/nullableType-expected.txt @@ -958,12 +958,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 132, + "column": 11 }, "end": { - "line": 1, - "column": 1 + "line": 132, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/object-expected.txt b/ets2panda/test/parser/ets/object-expected.txt index d44e5d101d1718d1c02c7d60091edbff13e49162..9f1511caa9e1a0346b5142108441c96124fe7ba3 100644 --- a/ets2panda/test/parser/ets/object-expected.txt +++ b/ets2panda/test/parser/ets/object-expected.txt @@ -184,12 +184,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } } diff --git a/ets2panda/test/parser/ets/optional-chaining-array-expected.txt b/ets2panda/test/parser/ets/optional-chaining-array-expected.txt index 756f1572dc51df08b3c8d4ddef31e8ceea094106..bf7e6b46de5daf47cc82e78ab51fb9b83eaf8580 100644 --- a/ets2panda/test/parser/ets/optional-chaining-array-expected.txt +++ b/ets2panda/test/parser/ets/optional-chaining-array-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 27 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 28 } } }, @@ -263,23 +263,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 33 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 34 } } }, @@ -377,23 +377,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 38 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 39 } } } @@ -525,12 +525,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 17 } } }, @@ -633,12 +633,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 33 } } }, @@ -723,12 +723,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 20 } } }, @@ -831,12 +831,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 38 } } } diff --git a/ets2panda/test/parser/ets/optional_chaining_invalid_property-expected.txt b/ets2panda/test/parser/ets/optional_chaining_invalid_property-expected.txt index 597585d0b1eefecbc5a5bba5ee268a9e46484900..2c046490ecfedd22b633e419f3eb37b98677be33 100644 --- a/ets2panda/test/parser/ets/optional_chaining_invalid_property-expected.txt +++ b/ets2panda/test/parser/ets/optional_chaining_invalid_property-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 18 } } }, @@ -167,12 +167,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, @@ -444,23 +444,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 22, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 2 } } }, @@ -531,23 +531,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 29 } } }, "loc": { "start": { - "line": 1, + "line": 26, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 30 } } } @@ -666,12 +666,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 15 } } }, @@ -747,12 +747,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 29 } } } diff --git a/ets2panda/test/parser/ets/optional_chaining_nested_property-expected.txt b/ets2panda/test/parser/ets/optional_chaining_nested_property-expected.txt index 8aa877a567ea517f331b9f5f14301cb0d055753e..47d2b4e1241a24507e64380127f6f1c2680bc3de 100644 --- a/ets2panda/test/parser/ets/optional_chaining_nested_property-expected.txt +++ b/ets2panda/test/parser/ets/optional_chaining_nested_property-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 21 } } }, @@ -167,12 +167,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 18 } } }, @@ -244,12 +244,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } }, @@ -521,23 +521,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 23, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 2 } } }, @@ -653,23 +653,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 43 } } }, "loc": { "start": { - "line": 1, + "line": 27, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 44 } } } @@ -788,12 +788,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 15 } } }, @@ -914,12 +914,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 43 } } } diff --git a/ets2panda/test/parser/ets/optional_chaining_object_property-expected.txt b/ets2panda/test/parser/ets/optional_chaining_object_property-expected.txt index 3bba741952961de68772d69182e696fb700ab0f7..3e7ff288e94a231fe72888e0eb4ed591a370d76e 100644 --- a/ets2panda/test/parser/ets/optional_chaining_object_property-expected.txt +++ b/ets2panda/test/parser/ets/optional_chaining_object_property-expected.txt @@ -90,12 +90,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 18 } } }, @@ -167,12 +167,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, @@ -444,23 +444,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 2 } } }, "loc": { "start": { - "line": 1, + "line": 22, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 2 } } }, @@ -559,23 +559,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 32 } } }, "loc": { "start": { - "line": 1, + "line": 26, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 33 } } }, @@ -674,23 +674,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 35 } } }, "loc": { "start": { - "line": 1, + "line": 27, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 36 } } } @@ -809,12 +809,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 15 } } }, @@ -918,12 +918,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 32 } } }, @@ -967,12 +967,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 18 } } } diff --git a/ets2panda/test/parser/ets/parentheses_expression_value-expected.txt b/ets2panda/test/parser/ets/parentheses_expression_value-expected.txt index dd1396ae0e6b1529feb4b40fe86c5c4073141b20..32bc14b3a4b55db92bda2c320d9de403f2147a19 100644 --- a/ets2panda/test/parser/ets/parentheses_expression_value-expected.txt +++ b/ets2panda/test/parser/ets/parentheses_expression_value-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 } } }, @@ -218,23 +218,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 15 } } }, @@ -275,23 +275,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 12 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 } } } @@ -383,12 +383,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -433,12 +433,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } }, @@ -483,12 +483,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 14 } } }, @@ -534,12 +534,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 12 } } }, diff --git a/ets2panda/test/parser/ets/predefined_types-expected.txt b/ets2panda/test/parser/ets/predefined_types-expected.txt index d2ef41f276e8c6c7af60cd0ddf4c208c3b04c0c2..1917db3b8842b16629c2f9391abcdb0ffb8e33ac 100644 --- a/ets2panda/test/parser/ets/predefined_types-expected.txt +++ b/ets2panda/test/parser/ets/predefined_types-expected.txt @@ -156,12 +156,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 } } }, @@ -205,12 +205,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 } } }, @@ -254,12 +254,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } }, @@ -303,12 +303,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 12 } } }, @@ -352,12 +352,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 13 } } }, @@ -401,12 +401,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 14 } } }, @@ -450,12 +450,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 12 } } } diff --git a/ets2panda/test/parser/ets/property-access-field-1-expected.txt b/ets2panda/test/parser/ets/property-access-field-1-expected.txt index cd63a35ca3f673f3561a065d21271b4aa0349e17..786506feadd070852cd1dcb1c89045986fd7b231 100644 --- a/ets2panda/test/parser/ets/property-access-field-1-expected.txt +++ b/ets2panda/test/parser/ets/property-access-field-1-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/property-access-field-2-expected.txt b/ets2panda/test/parser/ets/property-access-field-2-expected.txt index daabca2798b09bf2243f3a8d466c3482b31dfaeb..c9cce528be18588d97328e5f21b5156a794771c2 100644 --- a/ets2panda/test/parser/ets/property-access-field-2-expected.txt +++ b/ets2panda/test/parser/ets/property-access-field-2-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 26 } } }, diff --git a/ets2panda/test/parser/ets/return-expected.txt b/ets2panda/test/parser/ets/return-expected.txt index 75e777bf826819d99683549fe677322b2d42d548..ee83fa8590954398b414c31cfa2e74c94becba16 100644 --- a/ets2panda/test/parser/ets/return-expected.txt +++ b/ets2panda/test/parser/ets/return-expected.txt @@ -149,23 +149,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 25 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 26 } } } @@ -269,12 +269,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, diff --git a/ets2panda/test/parser/ets/setter_native-expected.txt b/ets2panda/test/parser/ets/setter_native-expected.txt index ba515f59a5bd535ed5985860ccdc8ed4332e32d9..a36ac4231486e9f480afa0f14d6552268db17c58 100644 --- a/ets2panda/test/parser/ets/setter_native-expected.txt +++ b/ets2panda/test/parser/ets/setter_native-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 24 } } }, diff --git a/ets2panda/test/parser/ets/setter_with_non_void-expected.txt b/ets2panda/test/parser/ets/setter_with_non_void-expected.txt index e0dd8b95dfebfd005adbd9b4f422ca66e25d4849..d346044787d7970a6dd03d7d99a5a386758f3fea 100644 --- a/ets2panda/test/parser/ets/setter_with_non_void-expected.txt +++ b/ets2panda/test/parser/ets/setter_with_non_void-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 24 } } }, diff --git a/ets2panda/test/parser/ets/simple_types-expected.txt b/ets2panda/test/parser/ets/simple_types-expected.txt index 1f81b8c3616d84239c091cbf2251a74dc5758995..b75839eeb2747a4359414db7de8f4f03e8be5477 100644 --- a/ets2panda/test/parser/ets/simple_types-expected.txt +++ b/ets2panda/test/parser/ets/simple_types-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 18 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 19 } } }, @@ -177,23 +177,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, @@ -233,23 +233,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 24 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 25 } } }, @@ -304,23 +304,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 35 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 36 } } }, @@ -360,23 +360,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 23 } } }, @@ -416,23 +416,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 19 } } }, "loc": { "start": { - "line": 1, + "line": 22, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 20 } } }, @@ -472,23 +472,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 26, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 23 } } }, @@ -528,23 +528,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 23 } } }, "loc": { "start": { - "line": 1, + "line": 27, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 24 } } }, @@ -585,23 +585,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 29, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 17 } } } @@ -692,12 +692,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 12 } } }, @@ -741,12 +741,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 } } }, @@ -790,12 +790,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 11 } } }, @@ -839,12 +839,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 12 } } }, @@ -888,12 +888,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 15 } } }, @@ -937,12 +937,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 12 } } }, @@ -1014,12 +1014,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 13 } } }, @@ -1063,12 +1063,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 13 } } }, @@ -1112,12 +1112,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 14 } } }, @@ -1161,12 +1161,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 12 } } } diff --git a/ets2panda/test/parser/ets/string-expected.txt b/ets2panda/test/parser/ets/string-expected.txt index 03becdb639ee516e35bdc4e2a833e1a27651e45a..657641c2443d16f5e35b06a8d4469fe9ac19ce13 100644 --- a/ets2panda/test/parser/ets/string-expected.txt +++ b/ets2panda/test/parser/ets/string-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 24 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 25 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 24 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 25 } } } @@ -297,12 +297,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, @@ -374,12 +374,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 16 } } } diff --git a/ets2panda/test/parser/ets/struct_identifier-expected.txt b/ets2panda/test/parser/ets/struct_identifier-expected.txt index 3ea6f12b26f0e14b697ef21f26e5a313c595ecee..cfd8673216d5c3d28983eaf5b900a406a53159ba 100644 --- a/ets2panda/test/parser/ets/struct_identifier-expected.txt +++ b/ets2panda/test/parser/ets/struct_identifier-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 20 } } }, diff --git a/ets2panda/test/parser/ets/struct_init-expected.txt b/ets2panda/test/parser/ets/struct_init-expected.txt index ce12d14a1578e7edcf07c2f64b9e14ce4f19a3bb..68015c8f2f8b1ecdc26451d0caaf4268969ea4d6 100644 --- a/ets2panda/test/parser/ets/struct_init-expected.txt +++ b/ets2panda/test/parser/ets/struct_init-expected.txt @@ -62,12 +62,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, diff --git a/ets2panda/test/parser/ets/struct_static_initializer-expected.txt b/ets2panda/test/parser/ets/struct_static_initializer-expected.txt index 86b94856915fd61b4942aa15260c4ac61297dc54..1d09901886df78a5787cb5965ab0e3bbaaa96121 100644 --- a/ets2panda/test/parser/ets/struct_static_initializer-expected.txt +++ b/ets2panda/test/parser/ets/struct_static_initializer-expected.txt @@ -76,12 +76,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } }, @@ -556,12 +556,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 12 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 23 } } }, diff --git a/ets2panda/test/parser/ets/struct_templete-expected.txt b/ets2panda/test/parser/ets/struct_templete-expected.txt index 5223d017d73c2e73079646d51e675860ff86ae73..5060c2b73b24c7c1345fe7a4e9af9b9775e6b4f7 100644 --- a/ets2panda/test/parser/ets/struct_templete-expected.txt +++ b/ets2panda/test/parser/ets/struct_templete-expected.txt @@ -133,12 +133,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -446,12 +446,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 } } }, @@ -646,12 +646,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 17 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member-expected.txt index a1f6f441709f98012c7b76d278741ba479e6ace9..a0429f6a7db7e3a089173aa136253133094a590e 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member-expected.txt @@ -63,12 +63,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, @@ -250,12 +250,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_compare_char-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_compare_char-expected.txt index cffaacb12ff6d7553bb062aff8fd2cc1842620d3..04b54186be83e3fcdd5aeaf816dea2c58e7b2b34 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_compare_char-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_compare_char-expected.txt @@ -63,12 +63,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, @@ -250,12 +250,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_compare_char_2-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_compare_char_2-expected.txt index b4210967be804120b0e50db5e9eae783d581c525..0f99422e115d451281e74d7b5b26e20b74623338 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_compare_char_2-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_compare_char_2-expected.txt @@ -63,12 +63,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 30 } } }, @@ -250,12 +250,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_different_enum-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_different_enum-expected.txt index 0d057e60f5737bd7675c77aa38ce115571497256..f34d7e3f9246eb67d65876ae8c128e8bd56ab57c 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_different_enum-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_different_enum-expected.txt @@ -408,12 +408,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 29 } } }, @@ -626,12 +626,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 29 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_different_enum_2-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_different_enum_2-expected.txt index da9f79eae86b676bd051435fc935ed71952c2c34..3ef004f3ec9a6b0181d78255d6c875c3b60de6b3 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_different_enum_2-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_different_enum_2-expected.txt @@ -408,12 +408,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 29 } } }, @@ -626,12 +626,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 29 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_enum-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_enum-expected.txt index 9b68e099f815767b04466ea7a364597fa89ba5ac..cc9db9fc4a73b6404a9f3e753ccfc0c0c81514cb 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_enum-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_enum-expected.txt @@ -408,12 +408,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 29 } } }, @@ -626,12 +626,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 29 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_enum_duplicate-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_enum_duplicate-expected.txt index 4515834d1ca3ac63a4b520308a60725a192113e3..c37cacffebdfd380c90cdc1ad55f41fe2d790157 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_enum_duplicate-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_enum_duplicate-expected.txt @@ -408,12 +408,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 29 } } }, @@ -626,12 +626,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 29, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 29, + "column": 29 } } }, diff --git a/ets2panda/test/parser/ets/switch_readonly_member_number_duplicate-expected.txt b/ets2panda/test/parser/ets/switch_readonly_member_number_duplicate-expected.txt index 72fb18d07217ae10845664831d6e015c9bd02a1c..2ce1ff962ac981cf80603be3f45e0c24c4a9b352 100644 --- a/ets2panda/test/parser/ets/switch_readonly_member_number_duplicate-expected.txt +++ b/ets2panda/test/parser/ets/switch_readonly_member_number_duplicate-expected.txt @@ -63,12 +63,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 28 } } }, @@ -250,12 +250,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 21 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 30 } } }, diff --git a/ets2panda/test/parser/ets/ternary-expected.txt b/ets2panda/test/parser/ets/ternary-expected.txt index a870370edbf4d77582dec8627cc1b56832d9946b..b80d1cd97c9239f52f71459d19eda0c19fd35b4e 100644 --- a/ets2panda/test/parser/ets/ternary-expected.txt +++ b/ets2panda/test/parser/ets/ternary-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 11 } } }, @@ -291,23 +291,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 23 } } } @@ -399,12 +399,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, @@ -449,12 +449,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 10 } } }, @@ -572,12 +572,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 22 } } } diff --git a/ets2panda/test/parser/ets/test_jsvalue-expected.txt b/ets2panda/test/parser/ets/test_jsvalue-expected.txt index 9f9d588fe8353e2a9fe54d6c4cb3b400bb3895cd..f172336108f9f1c27fa523ff53efe64d4124ef69 100644 --- a/ets2panda/test/parser/ets/test_jsvalue-expected.txt +++ b/ets2panda/test/parser/ets/test_jsvalue-expected.txt @@ -184,12 +184,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } } diff --git a/ets2panda/test/parser/ets/test_jsvalue_get_double-expected.txt b/ets2panda/test/parser/ets/test_jsvalue_get_double-expected.txt index 435dd5eb18b46f600ac005bab5dd87f043ed49aa..59de21d316643ba4412ad6bb533b38326006b41f 100644 --- a/ets2panda/test/parser/ets/test_jsvalue_get_double-expected.txt +++ b/ets2panda/test/parser/ets/test_jsvalue_get_double-expected.txt @@ -107,23 +107,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 22 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 23 } } } @@ -242,12 +242,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, @@ -291,12 +291,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } } diff --git a/ets2panda/test/parser/ets/test_jsvalue_get_property_1-expected.txt b/ets2panda/test/parser/ets/test_jsvalue_get_property_1-expected.txt index b046e7b05299218614ef4fb73a88031287ede417..dfd10c05a70cb678eac98f913ed6c2dde59eb601 100644 --- a/ets2panda/test/parser/ets/test_jsvalue_get_property_1-expected.txt +++ b/ets2panda/test/parser/ets/test_jsvalue_get_property_1-expected.txt @@ -137,23 +137,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 32 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 33 } } } @@ -272,12 +272,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, @@ -349,12 +349,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 20 } } } diff --git a/ets2panda/test/parser/ets/test_jsvalue_get_property_2-expected.txt b/ets2panda/test/parser/ets/test_jsvalue_get_property_2-expected.txt index fc03e2ef4a53b0e8fe9cc63697cac8b210ebc259..b19aae63841f98e1262b375be17e6061f97d1eb2 100644 --- a/ets2panda/test/parser/ets/test_jsvalue_get_property_2-expected.txt +++ b/ets2panda/test/parser/ets/test_jsvalue_get_property_2-expected.txt @@ -167,23 +167,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 46 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 47 } } } @@ -302,12 +302,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, @@ -379,12 +379,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 20 } } } diff --git a/ets2panda/test/parser/ets/test_type_alias9-expected.txt b/ets2panda/test/parser/ets/test_type_alias9-expected.txt index 5c564550d19d44a0774bc63c5045f33b63eb2009..20df64b662c0a1a355500af56dffb173b65c20bf 100644 --- a/ets2panda/test/parser/ets/test_type_alias9-expected.txt +++ b/ets2panda/test/parser/ets/test_type_alias9-expected.txt @@ -214,23 +214,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 16 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 17 } } }, @@ -385,23 +385,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 51 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 52 } } } @@ -520,12 +520,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 } } }, @@ -597,12 +597,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 16 } } } diff --git a/ets2panda/test/parser/ets/throwsRethrowsAsVariables-expected.txt b/ets2panda/test/parser/ets/throwsRethrowsAsVariables-expected.txt index 58e965b05166f8b1e019b1bc05d24a37052ebdae..203a0147ad78122484ca1943d0a1535679d7cac4 100644 --- a/ets2panda/test/parser/ets/throwsRethrowsAsVariables-expected.txt +++ b/ets2panda/test/parser/ets/throwsRethrowsAsVariables-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 16 } } }, @@ -162,23 +162,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 17 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 18 } } } @@ -270,12 +270,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 15 } } }, @@ -320,12 +320,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 17 } } }, diff --git a/ets2panda/test/parser/ets/trailing_lambda_tests/trailing_lambda_mismatch_lambda_signature-expected.txt b/ets2panda/test/parser/ets/trailing_lambda_tests/trailing_lambda_mismatch_lambda_signature-expected.txt index 8520e0bd7d5ae0e815a0c66772d6f8a36063336a..fba13eb71c47ee15f33656c8ef2708ad9bd50150 100644 --- a/ets2panda/test/parser/ets/trailing_lambda_tests/trailing_lambda_mismatch_lambda_signature-expected.txt +++ b/ets2panda/test/parser/ets/trailing_lambda_tests/trailing_lambda_mismatch_lambda_signature-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } } @@ -214,12 +214,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, diff --git a/ets2panda/test/parser/ets/type_cast-expected.txt b/ets2panda/test/parser/ets/type_cast-expected.txt index f8965d9172a6034c67f5d6c0ef7d00f076bfad4b..cde9ff443ea1cbeafa4ca9a3593142d8d0c4df84 100644 --- a/ets2panda/test/parser/ets/type_cast-expected.txt +++ b/ets2panda/test/parser/ets/type_cast-expected.txt @@ -216,12 +216,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 25 } } }, @@ -279,12 +279,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 28 } } }, @@ -397,12 +397,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 29 } } }, @@ -460,12 +460,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 15 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 29 } } }, @@ -578,12 +578,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 15 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 31 } } }, @@ -696,12 +696,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 22 } } }, diff --git a/ets2panda/test/parser/ets/type_variance1-expected.txt b/ets2panda/test/parser/ets/type_variance1-expected.txt index 7006bc04a7b9cdc5fa1155d72fb7a50009e0a24a..526d6a2a596d5a2f79c9d894f7dd105a53196202 100644 --- a/ets2panda/test/parser/ets/type_variance1-expected.txt +++ b/ets2panda/test/parser/ets/type_variance1-expected.txt @@ -3245,12 +3245,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 52 } } }, diff --git a/ets2panda/test/parser/ets/unary_op-expected.txt b/ets2panda/test/parser/ets/unary_op-expected.txt index cd8baaf5044840ba2b685491b90ccb156169ad0e..9a9d965671f43a0614d6fbf981349d914768d60c 100644 --- a/ets2panda/test/parser/ets/unary_op-expected.txt +++ b/ets2panda/test/parser/ets/unary_op-expected.txt @@ -106,23 +106,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, "loc": { "start": { - "line": 1, + "line": 16, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 11 } } }, @@ -178,23 +178,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 } } }, "loc": { "start": { - "line": 1, + "line": 17, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 13 } } }, @@ -250,23 +250,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } }, "loc": { "start": { - "line": 1, + "line": 18, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 13 } } }, @@ -321,23 +321,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 19, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 12 } } }, @@ -393,23 +393,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 20, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 12 } } }, @@ -465,23 +465,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 21, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 12 } } }, @@ -521,23 +521,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 13 } } }, "loc": { "start": { - "line": 1, + "line": 22, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 14 } } }, @@ -593,23 +593,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 23, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 12 } } }, @@ -665,23 +665,23 @@ }, "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 11 } } }, "loc": { "start": { - "line": 1, + "line": 25, "column": 1 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 12 } } } @@ -773,12 +773,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 16, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 16, + "column": 10 } } }, @@ -839,12 +839,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 17, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 17, + "column": 12 } } }, @@ -905,12 +905,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 18, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 18, + "column": 12 } } }, @@ -970,12 +970,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 11 } } }, @@ -1036,12 +1036,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 11 } } }, @@ -1102,12 +1102,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 11 } } }, @@ -1152,12 +1152,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 13 } } }, @@ -1218,12 +1218,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 11 } } }, @@ -1268,12 +1268,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 7 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 15 } } }, @@ -1334,12 +1334,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 5 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 11 } } } diff --git a/ets2panda/test/parser/ets/unary_operations-expected.txt b/ets2panda/test/parser/ets/unary_operations-expected.txt index 685a1b84e0bcc96305addc11dc566510c0a54ada..4dcbbcdf600992a032c1eb9ecee891a2932e7571 100644 --- a/ets2panda/test/parser/ets/unary_operations-expected.txt +++ b/ets2panda/test/parser/ets/unary_operations-expected.txt @@ -216,12 +216,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 19, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 19, + "column": 23 } } }, @@ -323,12 +323,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 20, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 20, + "column": 33 } } }, @@ -430,12 +430,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 21, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 21, + "column": 33 } } }, @@ -537,12 +537,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 22, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 22, + "column": 34 } } }, @@ -644,12 +644,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 23, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 23, + "column": 34 } } }, @@ -751,12 +751,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 24, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 24, + "column": 33 } } }, @@ -814,12 +814,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 25, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 25, + "column": 31 } } }, @@ -921,12 +921,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 26, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 26, + "column": 37 } } }, @@ -1028,12 +1028,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 27, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 27, + "column": 34 } } }, @@ -1135,12 +1135,12 @@ "decorators": [], "loc": { "start": { - "line": 1, - "column": 1 + "line": 28, + "column": 13 }, "end": { - "line": 1, - "column": 1 + "line": 28, + "column": 34 } } },