diff --git a/compiler/ast/src/functions/function.rs b/compiler/ast/src/functions/function.rs index 63128083be..0aae9a2d49 100644 --- a/compiler/ast/src/functions/function.rs +++ b/compiler/ast/src/functions/function.rs @@ -28,8 +28,6 @@ pub struct Function { pub identifier: Identifier, /// The function's parameters. pub input: Vec, - /// The function returns a constant value. - pub const_: bool, /// The function return type, if explicitly specified, or `()` if not. pub output: Type, /// Any mapping to the core library. diff --git a/compiler/ast/src/passes/reconstructing_director.rs b/compiler/ast/src/passes/reconstructing_director.rs index 2bbc241852..d77551b5c5 100644 --- a/compiler/ast/src/passes/reconstructing_director.rs +++ b/compiler/ast/src/passes/reconstructing_director.rs @@ -303,6 +303,6 @@ impl ReconstructingDirector { let block = self.reduce_block(&function.block)?; self.reducer - .reduce_function(function, identifier, inputs, function.const_, output, block) + .reduce_function(function, identifier, inputs, output, block) } } diff --git a/compiler/ast/src/passes/reconstructing_reducer.rs b/compiler/ast/src/passes/reconstructing_reducer.rs index da86741d62..1290f03788 100644 --- a/compiler/ast/src/passes/reconstructing_reducer.rs +++ b/compiler/ast/src/passes/reconstructing_reducer.rs @@ -296,14 +296,12 @@ pub trait ReconstructingReducer { function: &Function, identifier: Identifier, input: Vec, - const_: bool, output: Type, block: Block, ) -> Result { Ok(Function { identifier, input, - const_, output, block, core_mapping: function.core_mapping.clone(), diff --git a/compiler/parser/src/parser/file.rs b/compiler/parser/src/parser/file.rs index a5d0638558..5a3afd2e7e 100644 --- a/compiler/parser/src/parser/file.rs +++ b/compiler/parser/src/parser/file.rs @@ -106,9 +106,6 @@ impl ParserContext<'_> { /// Returns an [`(Identifier, Function)`] AST node if the next tokens represent a function name /// and function definition. pub fn parse_function_declaration(&mut self) -> Result<(Identifier, Function)> { - // Parse optional const modifier. - let const_ = self.eat(&Token::Const); - // Parse `function IDENT`. let start = self.expect(&Token::Function)?; let name = self.expect_ident()?; @@ -128,7 +125,6 @@ impl ParserContext<'_> { Function { identifier: name, input: inputs, - const_, output, span: start + block.span.clone(), block, diff --git a/tests/expectations/compiler/compiler/address/branch.leo.out b/tests/expectations/compiler/compiler/address/branch.leo.out deleted file mode 100644 index a26e91259b..0000000000 --- a/tests/expectations/compiler/compiler/address/branch.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: bbe973798ab14152165455260924a0de60131d31da32d2e223228954365dc609 - initial_ast: ddf5a3cdb4d2796c15e7c590647ef497e9c1e9dd876d35053b7d20e0327201f2 - symbol_table: 9d42b1d8f167826635e5169bc3a50c14f722fba8e5ce2480fbde3b8cf2e75237 diff --git a/tests/expectations/compiler/compiler/address/equal.leo.out b/tests/expectations/compiler/compiler/address/equal.leo.out deleted file mode 100644 index fb1e98426a..0000000000 --- a/tests/expectations/compiler/compiler/address/equal.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 98da6a76f2370e9311042851dde02ebaa4e64528d9461a5e722858f394d25f93 - - initial_input_ast: 85307a4f16278d38b746d321756e41c3cf48bbb2dc5bad2f0e9a7b8c4dd2541e - initial_ast: 89da88a9e5d4a82174424afbca4a45949a62f142b3a527dc3b6a88c222517227 - symbol_table: 7ec407fabcae0eeef889009b8ba99beac3d18b2d79cc49e7760261d80bd59728 diff --git a/tests/expectations/compiler/compiler/address/ternary.leo.out b/tests/expectations/compiler/compiler/address/ternary.leo.out deleted file mode 100644 index 84ebf31831..0000000000 --- a/tests/expectations/compiler/compiler/address/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 98da6a76f2370e9311042851dde02ebaa4e64528d9461a5e722858f394d25f93 - - initial_input_ast: 85307a4f16278d38b746d321756e41c3cf48bbb2dc5bad2f0e9a7b8c4dd2541e - initial_ast: cec8d55d8faab0dce20c07e9940c3477b694511cdf2059fc44531120d055c9d4 - symbol_table: 5a12f141aef86a7a00b86650e23cfd9af657d6f418df7b1ee9eab06714305d31 diff --git a/tests/expectations/compiler/compiler/boolean/and.leo.out b/tests/expectations/compiler/compiler/boolean/and.leo.out deleted file mode 100644 index d33a6e250d..0000000000 --- a/tests/expectations/compiler/compiler/boolean/and.leo.out +++ /dev/null @@ -1,11 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 51b03881ad0ef3af7d105c163071fb69fb38048bea44c4bc380fd17367ce94e0 - - initial_input_ast: 59b58754cc7667404c6bba5d90a9e53b7f9f36b6d7c9783e5b88d12728127e66 - - initial_input_ast: 55ff7a9a3f210ea871c438a89f07da6c54ca1b8129e7344593017d22305297b4 - - initial_input_ast: c89564770d1984e4e8c0c17c6c50b66b4a5d4ade85899562f506afc22e50496d - initial_ast: 603affb858de195474d9dc4f5896b019649fbd6f9fb28eb94c5ff41f9bcf67e2 - symbol_table: f36863240edb9fb5fb852c212a9ae1db491ee8243d0469fc155592964595e7d0 diff --git a/tests/expectations/compiler/compiler/boolean/conditional.leo.out b/tests/expectations/compiler/compiler/boolean/conditional.leo.out deleted file mode 100644 index 045dbf609d..0000000000 --- a/tests/expectations/compiler/compiler/boolean/conditional.leo.out +++ /dev/null @@ -1,11 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 51b03881ad0ef3af7d105c163071fb69fb38048bea44c4bc380fd17367ce94e0 - - initial_input_ast: 59b58754cc7667404c6bba5d90a9e53b7f9f36b6d7c9783e5b88d12728127e66 - - initial_input_ast: 55ff7a9a3f210ea871c438a89f07da6c54ca1b8129e7344593017d22305297b4 - - initial_input_ast: c89564770d1984e4e8c0c17c6c50b66b4a5d4ade85899562f506afc22e50496d - initial_ast: f577369ef75a92dd680338305c55f95a94ffb0b5ea8e6d090d4e7682666da163 - symbol_table: 4fd4e476609947028fbffe357ffb9d962e96c30a9abe3677d75675ae37b12587 diff --git a/tests/expectations/compiler/compiler/boolean/equal.leo.out b/tests/expectations/compiler/compiler/boolean/equal.leo.out deleted file mode 100644 index 6d86ce2b39..0000000000 --- a/tests/expectations/compiler/compiler/boolean/equal.leo.out +++ /dev/null @@ -1,11 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 51b03881ad0ef3af7d105c163071fb69fb38048bea44c4bc380fd17367ce94e0 - - initial_input_ast: 59b58754cc7667404c6bba5d90a9e53b7f9f36b6d7c9783e5b88d12728127e66 - - initial_input_ast: 55ff7a9a3f210ea871c438a89f07da6c54ca1b8129e7344593017d22305297b4 - - initial_input_ast: c89564770d1984e4e8c0c17c6c50b66b4a5d4ade85899562f506afc22e50496d - initial_ast: c366a1ca90cc0d6bd3bafb7e83313549d028b101d1759d30d587aeca574f36c6 - symbol_table: c8dd46774e298ef70fc87f89ecb8b5f23f63b1f2401f337fc97ad83b54e85871 diff --git a/tests/expectations/compiler/compiler/boolean/not_equal.leo.out b/tests/expectations/compiler/compiler/boolean/not_equal.leo.out deleted file mode 100644 index 0ed3957a36..0000000000 --- a/tests/expectations/compiler/compiler/boolean/not_equal.leo.out +++ /dev/null @@ -1,11 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 51b03881ad0ef3af7d105c163071fb69fb38048bea44c4bc380fd17367ce94e0 - - initial_input_ast: 59b58754cc7667404c6bba5d90a9e53b7f9f36b6d7c9783e5b88d12728127e66 - - initial_input_ast: 55ff7a9a3f210ea871c438a89f07da6c54ca1b8129e7344593017d22305297b4 - - initial_input_ast: c89564770d1984e4e8c0c17c6c50b66b4a5d4ade85899562f506afc22e50496d - initial_ast: 760e9080bf2690928551e6f4f2466824c75f81464043faa37580ac9d9e07ce2a - symbol_table: 8ed9a73e996562abfe75837cfbf2103a4d9213291298206f4f63a7dac808cbc1 diff --git a/tests/expectations/compiler/compiler/boolean/or.leo.out b/tests/expectations/compiler/compiler/boolean/or.leo.out deleted file mode 100644 index 95c4d03cf9..0000000000 --- a/tests/expectations/compiler/compiler/boolean/or.leo.out +++ /dev/null @@ -1,11 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 51b03881ad0ef3af7d105c163071fb69fb38048bea44c4bc380fd17367ce94e0 - - initial_input_ast: 59b58754cc7667404c6bba5d90a9e53b7f9f36b6d7c9783e5b88d12728127e66 - - initial_input_ast: 55ff7a9a3f210ea871c438a89f07da6c54ca1b8129e7344593017d22305297b4 - - initial_input_ast: c89564770d1984e4e8c0c17c6c50b66b4a5d4ade85899562f506afc22e50496d - initial_ast: 0ed2a39bfdc56279524de062f31305fb67a8e073e29e159414bd82c17585369a - symbol_table: 91630eda77eaf1e355744e663ceba26a0c3f860d3f69e8e46b03f5464d16950f diff --git a/tests/expectations/compiler/compiler/char/invalid_char.leo.out b/tests/expectations/compiler/compiler/char/invalid_char.leo.out deleted file mode 100644 index 1f6e688849..0000000000 --- a/tests/expectations/compiler/compiler/char/invalid_char.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370026]: Expected a closed char but found `'`." diff --git a/tests/expectations/compiler/compiler/char/neq.leo.out b/tests/expectations/compiler/compiler/char/neq.leo.out deleted file mode 100644 index ff7a412802..0000000000 --- a/tests/expectations/compiler/compiler/char/neq.leo.out +++ /dev/null @@ -1,22 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cd2c41435af95147ff1dcd94031e443b93b15ac7b4f65331ef734759006f3c03 - - initial_input_ast: 5e4fd7cfc681e863ed393f7746308d7b962e2b5f9dcd21aa09a26526ce2ea8e3 - - initial_input_ast: 8fcda0e92250e9897bdb8cfb9b1e3046f94f6f6206ecb958d9758e64e5615889 - - initial_input_ast: 41fef97affd26b29428302f519a5e7a7d61158923e6576618c42607f0c16ff4f - - initial_input_ast: 30c56d9a2e096215900942f18b63cf5a96fb9c0b7cf4fea11dafeeabb02a5233 - - initial_input_ast: 076d0f1b70534c15108ea0dc9e74860030d6701ce1ce38b4a3a41e5ba9fe0121 - - initial_input_ast: d3bff6374e68b63bf35fe089bbff0abb31958571b99b9e0251d82895fdc27edd - - initial_input_ast: 9455652735eb74bd67423f9ed2c7d76b1b27e47f62b5331843f8f4975a03cc9a - - initial_input_ast: 3f69c5fdd03605808dfb6ae116cdf860525b494d5d7cac39b667931c282e8c3e - - initial_input_ast: bdc202a836d17bcb974e33b5b938148c0c9b57fd8b779e813c26d8feac915547 - - initial_input_ast: 6e12715d32233251ea63ae7457c7c1d20e82995cf3df02a1adb943ee358a2643 - - initial_input_ast: 6383f20ea72b337521956a9d86608fc1861f8a5e709bb29e88f2022e893d4e59 - - initial_input_ast: e4ba1106bf3425f620578111bd3c63c0178dbc087ab4c90e873c5b9cc790f6bc - - initial_input_ast: 4c7f9b03dd308ff3981127c4c12adcb883fd8b3ce1dbd744cd935750961fc1c4 - - initial_input_ast: 2a5e92af845c8a56375cbc6123e92aa87cf4523e059c02dfcde326970d88f5c2 - initial_ast: 96f468f0e322334f4df9ca1d34402e66718676fd4e3d06c6996f08a4719f1e2a - symbol_table: cf3569155d9961e6cab441ea9a60f5c92d2b18e6cd2ecaa64b1529d1774d3585 diff --git a/tests/expectations/compiler/compiler/char/out.leo.out b/tests/expectations/compiler/compiler/char/out.leo.out deleted file mode 100644 index 9fa63112b6..0000000000 --- a/tests/expectations/compiler/compiler/char/out.leo.out +++ /dev/null @@ -1,22 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cd2c41435af95147ff1dcd94031e443b93b15ac7b4f65331ef734759006f3c03 - - initial_input_ast: 5e4fd7cfc681e863ed393f7746308d7b962e2b5f9dcd21aa09a26526ce2ea8e3 - - initial_input_ast: 8fcda0e92250e9897bdb8cfb9b1e3046f94f6f6206ecb958d9758e64e5615889 - - initial_input_ast: 41fef97affd26b29428302f519a5e7a7d61158923e6576618c42607f0c16ff4f - - initial_input_ast: 30c56d9a2e096215900942f18b63cf5a96fb9c0b7cf4fea11dafeeabb02a5233 - - initial_input_ast: 076d0f1b70534c15108ea0dc9e74860030d6701ce1ce38b4a3a41e5ba9fe0121 - - initial_input_ast: d3bff6374e68b63bf35fe089bbff0abb31958571b99b9e0251d82895fdc27edd - - initial_input_ast: 9455652735eb74bd67423f9ed2c7d76b1b27e47f62b5331843f8f4975a03cc9a - - initial_input_ast: 3f69c5fdd03605808dfb6ae116cdf860525b494d5d7cac39b667931c282e8c3e - - initial_input_ast: bdc202a836d17bcb974e33b5b938148c0c9b57fd8b779e813c26d8feac915547 - - initial_input_ast: 6e12715d32233251ea63ae7457c7c1d20e82995cf3df02a1adb943ee358a2643 - - initial_input_ast: 6383f20ea72b337521956a9d86608fc1861f8a5e709bb29e88f2022e893d4e59 - - initial_input_ast: e4ba1106bf3425f620578111bd3c63c0178dbc087ab4c90e873c5b9cc790f6bc - - initial_input_ast: 4c7f9b03dd308ff3981127c4c12adcb883fd8b3ce1dbd744cd935750961fc1c4 - - initial_input_ast: 2a5e92af845c8a56375cbc6123e92aa87cf4523e059c02dfcde326970d88f5c2 - initial_ast: b9e8d9b129d27ec2f91d1b4fd811fe6f3e109ecb60af55dea77e8e1832443ac3 - symbol_table: 1cad55eef598e4d05af7c5f88119636a2e6d23d81213bbaad908d66a32906780 diff --git a/tests/expectations/compiler/compiler/console/assert.leo.out b/tests/expectations/compiler/compiler/console/assert.leo.out deleted file mode 100644 index 5b8aa7e44c..0000000000 --- a/tests/expectations/compiler/compiler/console/assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 204a90b23ba88927aabdc72aed02effa556d73742caf7d370527f79f0b30f621 - initial_ast: 99f1b1c681fe493ac676f44985edbae014d9306038e8e32e08efe0f88f5d588f - symbol_table: f8c971e501487f7a368a50fd1941c3fb70684b041478fe615a91f088796e301b diff --git a/tests/expectations/compiler/compiler/console/conditional_assert.leo.out b/tests/expectations/compiler/compiler/console/conditional_assert.leo.out deleted file mode 100644 index eb99fa39fc..0000000000 --- a/tests/expectations/compiler/compiler/console/conditional_assert.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 204a90b23ba88927aabdc72aed02effa556d73742caf7d370527f79f0b30f621 - - initial_input_ast: cbc36a842b21e80aee167b65bd1a59861d59a43e27915b785410f032ae19a570 - initial_ast: 65952133a9c8ae9cdac6ef184e46bc4dacf711243480b40bbfaae81b9f9d9c07 - symbol_table: f4e056be00b25dfd854a5be8197aeb205436bb0ee11cfe06701531ea086e038c diff --git a/tests/expectations/compiler/compiler/console/error.leo.out b/tests/expectations/compiler/compiler/console/error.leo.out deleted file mode 100644 index a3bed15f99..0000000000 --- a/tests/expectations/compiler/compiler/console/error.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 38e6b369397fcf11fa921808be61baf33a705d4509bc15a46ec69e1a0aaa5031 - initial_ast: 418ad64ad15c2579603ef4dac51d9fd4ae9573d0c5f4b5f00e6529076b56924b - symbol_table: d46f6eb98259f34d32a60788aa178efa34166bcc6ba1058e2ff5f8327a129b9c diff --git a/tests/expectations/compiler/compiler/console/log.leo.out b/tests/expectations/compiler/compiler/console/log.leo.out deleted file mode 100644 index 7df74bec7d..0000000000 --- a/tests/expectations/compiler/compiler/console/log.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 38e6b369397fcf11fa921808be61baf33a705d4509bc15a46ec69e1a0aaa5031 - initial_ast: bdee199da499e7bde2a901151c1ff12c16dade415128d678eb752ee5825ebe57 - symbol_table: 559484bc163178bf54b169f5dd573167771566aa993055b6a28f0c1a759339bc diff --git a/tests/expectations/compiler/compiler/console/log_conditional.leo.out b/tests/expectations/compiler/compiler/console/log_conditional.leo.out deleted file mode 100644 index 371ef8e927..0000000000 --- a/tests/expectations/compiler/compiler/console/log_conditional.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b9ca1f9e4746ba9f99375205e309b977a522109054d058039197767b39fa6833 - - initial_input_ast: 398a847f3f6c8826a10942c856b67d9acf37a51bf4ec9109be549b24b2dfff94 - initial_ast: 6c9e14fff56659827d68946ebd96577c5efae2b8b8dba3a12b73f4f9847eea9e - symbol_table: 560afbb790df70bfc770d5c2f966428a37baf94a5c0f5312ad445456d33a2cd9 diff --git a/tests/expectations/compiler/compiler/console/log_fail.leo.out b/tests/expectations/compiler/compiler/console/log_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/console/log_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/console/log_input.leo.out b/tests/expectations/compiler/compiler/console/log_input.leo.out deleted file mode 100644 index d8d56140e2..0000000000 --- a/tests/expectations/compiler/compiler/console/log_input.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 38e6b369397fcf11fa921808be61baf33a705d4509bc15a46ec69e1a0aaa5031 - initial_ast: 0c4d40a4f5409b6b1d7e4d2f620873148445b231317fd2dad898991374f68c7d - symbol_table: 720c2aafae77c261ed1640d4080f9a73657638baa30e54a5e10e2323b6f6eca0 diff --git a/tests/expectations/compiler/compiler/console/log_parameter.leo.out b/tests/expectations/compiler/compiler/console/log_parameter.leo.out deleted file mode 100644 index 82f62c8ebb..0000000000 --- a/tests/expectations/compiler/compiler/console/log_parameter.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 38e6b369397fcf11fa921808be61baf33a705d4509bc15a46ec69e1a0aaa5031 - initial_ast: 20bb81a14e5c144a812f70d1b81dd5a5f16acc3e7d44aac2df43ad003308c7d9 - symbol_table: e5159343ab03573032873783b28058a482dd401d534a0d3af03790a5286ba470 diff --git a/tests/expectations/compiler/compiler/console/log_parameter_many.leo.out b/tests/expectations/compiler/compiler/console/log_parameter_many.leo.out deleted file mode 100644 index 081cc31697..0000000000 --- a/tests/expectations/compiler/compiler/console/log_parameter_many.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 38e6b369397fcf11fa921808be61baf33a705d4509bc15a46ec69e1a0aaa5031 - initial_ast: 63bcef4c2f9221a32a041d4ce1aa645a795d47dbd7590830fa58202ea36785f8 - symbol_table: 757bb967973b87466c01be1a9dc78d30701964e0d234e0e65d1bbcbd3072370f diff --git a/tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.leo.out b/tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/console/log_parameter_unkown_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/definition/out_of_order.leo.out b/tests/expectations/compiler/compiler/definition/out_of_order.leo.out deleted file mode 100644 index a79a33cba0..0000000000 --- a/tests/expectations/compiler/compiler/definition/out_of_order.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 5ef5995607c9487bbba88bd6e2806f19ca1ef11bf6bb7507f75f6a5f32d39fb6 - symbol_table: 66779461e33acc9c5c732509637db91bd72aff3e9dae6aee0c137d0537446878 diff --git a/tests/expectations/compiler/compiler/field/add.leo.out b/tests/expectations/compiler/compiler/field/add.leo.out deleted file mode 100644 index 52dc5c8f2d..0000000000 --- a/tests/expectations/compiler/compiler/field/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: c0f200537ad3f17f2dc9f703cd995c7644356a2eff79aa6d49bf799028e12c87 - symbol_table: d666098c1c0d7c670730cfa6548d47fa89d9a1dd33642f8021b0622f9abc0e5e diff --git a/tests/expectations/compiler/compiler/field/div.leo.out b/tests/expectations/compiler/compiler/field/div.leo.out deleted file mode 100644 index 1b23950399..0000000000 --- a/tests/expectations/compiler/compiler/field/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: 385b93965a80f1b5eadb12bf1d49f5fbaeebfefe3d24c735d94ef4f30730bdaf - symbol_table: 38cbfecf35fb5189618a9767d3245d02e133d59ce2a0fc0f3aba37a8fa14fe8e diff --git a/tests/expectations/compiler/compiler/field/eq.leo.out b/tests/expectations/compiler/compiler/field/eq.leo.out deleted file mode 100644 index f65339f806..0000000000 --- a/tests/expectations/compiler/compiler/field/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: 63b88151e636d767e04285b45861e6f08c9a96bbaea5f65f8d68b21ee9d332c8 - symbol_table: 0879cd6e4cc609ecdbdfc87ff0f08b4f3ae54367e0a1c02116304eb1411d2c23 diff --git a/tests/expectations/compiler/compiler/field/field.leo.out b/tests/expectations/compiler/compiler/field/field.leo.out deleted file mode 100644 index 372f16ba0d..0000000000 --- a/tests/expectations/compiler/compiler/field/field.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: 7807bb74715d079409f6cb1b57e0e8a2d265df94a00c6a941f9302d2bf3a183b - symbol_table: 879c99134415a9bae5a26b0d2dccfab01b9374218b810853c86bcf36a76d979c diff --git a/tests/expectations/compiler/compiler/field/mul.leo.out b/tests/expectations/compiler/compiler/field/mul.leo.out deleted file mode 100644 index f0bbe86d04..0000000000 --- a/tests/expectations/compiler/compiler/field/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: 7daee749c08af61d98febaa31f6b0b372dd5e4edd8ac7782ade6e78072e54ad4 - symbol_table: 47782aad84b54a835bead341b6113b471712ddd6d19005040d16c5d199a0920a diff --git a/tests/expectations/compiler/compiler/field/negate.leo.out b/tests/expectations/compiler/compiler/field/negate.leo.out deleted file mode 100644 index af217ada1f..0000000000 --- a/tests/expectations/compiler/compiler/field/negate.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: a379c937898e9a3ab56fee13ac2e5bb137f96dcc7faf121c0c8f5daec726a510 - symbol_table: e20aa1c0f5d1b64b310c0e6d6bb306713f8696f092d080eab4031eacc0dcb798 diff --git a/tests/expectations/compiler/compiler/field/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/field/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/field/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/field/pow_signed.leo.out b/tests/expectations/compiler/compiler/field/pow_signed.leo.out deleted file mode 100644 index c1a0ccf2f5..0000000000 --- a/tests/expectations/compiler/compiler/field/pow_signed.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: 54e7ff665e23816752eb03e1e93ab90f8348464bac12636baa1d84938e6faccf - symbol_table: c04c06d2f689387637bac27fff30cdaa87ec9b49fc03e1fe56b1e04029b6f925 diff --git a/tests/expectations/compiler/compiler/field/pow_unsigned.leo.out b/tests/expectations/compiler/compiler/field/pow_unsigned.leo.out deleted file mode 100644 index 4e38d23139..0000000000 --- a/tests/expectations/compiler/compiler/field/pow_unsigned.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a50bcc0c4416f93de77861848ac00cd1b40e17f4c023ab3faea0fc0c332f148 - initial_ast: f5cde73247b7a36bb9021c8c5d60def92773fd994eec0f1ee76738a7a54a8ca0 - symbol_table: 5527b2434b61b94d365ba1e8bd1c2173b9feef5aa21c99440920259fb7df2052 diff --git a/tests/expectations/compiler/compiler/function/conditional_return.leo.out b/tests/expectations/compiler/compiler/function/conditional_return.leo.out deleted file mode 100644 index 163bd65c07..0000000000 --- a/tests/expectations/compiler/compiler/function/conditional_return.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 26679d48a4f878012c9f9cacccf9d2d1ef568126030a21abf74a5a4d8e5116d4 - initial_ast: 9e6a274bbf78b10fc2fe402fb5b75fec31690d4661259dec5695ee38520a9d6f - symbol_table: 577abb859b2f33b9e81c5e94c82b559601f44025143fa7a6757561b47e78efa5 diff --git a/tests/expectations/compiler/compiler/function/duplicate_definition_fail.leo.out b/tests/expectations/compiler/compiler/function/duplicate_definition_fail.leo.out deleted file mode 100644 index 3a6791e0f2..0000000000 --- a/tests/expectations/compiler/compiler/function/duplicate_definition_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EAST0372014]: function `main` shadowed\n --> compiler-test:3:1\n |\n 3 | function main(y: bool) -> bool {\n 4 | ...\n 5 | ...\n 6 | }\n | ^\nError [EAST0372014]: function `main` shadowed\n --> compiler-test:3:1\n |\n 3 | function main(y: bool) -> bool {\n 4 | ...\n 5 | ...\n 6 | }\n | ^" diff --git a/tests/expectations/compiler/compiler/function/duplicate_parameter_fail.leo.out b/tests/expectations/compiler/compiler/function/duplicate_parameter_fail.leo.out deleted file mode 100644 index 65d6ec0b7b..0000000000 --- a/tests/expectations/compiler/compiler/function/duplicate_parameter_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EAST0372015]: variable `a` shadowed\n --> compiler-test:3:15\n |\n 3 | function main(a: u32, a: u32) -> u32 {\n | ^\nError [EAST0372015]: variable `a` shadowed\n --> compiler-test:3:15\n |\n 3 | function main(a: u32, a: u32) -> u32 {\n | ^" diff --git a/tests/expectations/compiler/compiler/function/iteration.leo.out b/tests/expectations/compiler/compiler/function/iteration.leo.out deleted file mode 100644 index 5016ba23df..0000000000 --- a/tests/expectations/compiler/compiler/function/iteration.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e518f4721bb7a7b6c63e380710a5a8cf4e489ccf66461bf9a68dc4b369e16445 - initial_ast: 09226f61bcbb3f65fab6d0609b39333bc31bdf51c3aec686894ffb502ca56b6a - symbol_table: 6754c028b1d3793f022a7da93be8510a6844da8a2e45f5dcaa9566252e418ee2 diff --git a/tests/expectations/compiler/compiler/function/iteration_repeated.leo.out b/tests/expectations/compiler/compiler/function/iteration_repeated.leo.out deleted file mode 100644 index b38fccc3f6..0000000000 --- a/tests/expectations/compiler/compiler/function/iteration_repeated.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e518f4721bb7a7b6c63e380710a5a8cf4e489ccf66461bf9a68dc4b369e16445 - initial_ast: 559dc5437784316568a2e63a662f50940bf7fda5ae78ce338f328ebf816a4087 - symbol_table: c45d23aa877641cbf1853709cc103d389f3e3105b5c873f8bb90c3a0c48bd2ff diff --git a/tests/expectations/compiler/compiler/function/repeated.leo.out b/tests/expectations/compiler/compiler/function/repeated.leo.out deleted file mode 100644 index 7830f4153a..0000000000 --- a/tests/expectations/compiler/compiler/function/repeated.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e518f4721bb7a7b6c63e380710a5a8cf4e489ccf66461bf9a68dc4b369e16445 - initial_ast: 127164b1571c0f14ac66be72c670be93c0f04973e06564cd0a382cb99bb32e11 - symbol_table: 7c82d098d4b483b968c5b928f68a4a6f040bf961bbf5192bf323ddabbe592da8 diff --git a/tests/expectations/compiler/compiler/function/return.leo.out b/tests/expectations/compiler/compiler/function/return.leo.out deleted file mode 100644 index 1ddb7973bb..0000000000 --- a/tests/expectations/compiler/compiler/function/return.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e518f4721bb7a7b6c63e380710a5a8cf4e489ccf66461bf9a68dc4b369e16445 - initial_ast: 3c9f874c442a8b41ff0e3f3f212d96690d2665022d7898045bec0b18495db1bc - symbol_table: 8bddbedba52c66dc7a86530a2df470eb3222992c10b75842431a82afc7e936d4 diff --git a/tests/expectations/compiler/compiler/function/scope_fail.leo.out b/tests/expectations/compiler/compiler/function/scope_fail.leo.out deleted file mode 100644 index cf561c6ce6..0000000000 --- a/tests/expectations/compiler/compiler/function/scope_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected : -- got '='\n --> compiler-test:9:20\n |\n 9 | const myGlobal = 42field;\n | ^" diff --git a/tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.leo.out b/tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.leo.out deleted file mode 100644 index 3276ba7de3..0000000000 --- a/tests/expectations/compiler/compiler/function/shadow_function_with_input_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EAST0372014]: function `hi` shadowed\n --> compiler-test:3:1\n |\n 3 | function hi() -> u8 {\n 4 | ...\n 5 | }\n | ^\nError [EAST0372014]: function `hi` shadowed\n --> compiler-test:3:1\n |\n 3 | function hi() -> u8 {\n 4 | ...\n 5 | }\n | ^" diff --git a/tests/expectations/compiler/compiler/function/shadow_parameter_fail.leo.out b/tests/expectations/compiler/compiler/function/shadow_parameter_fail.leo.out deleted file mode 100644 index ed9c2b60bd..0000000000 --- a/tests/expectations/compiler/compiler/function/shadow_parameter_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected : -- got '='\n --> compiler-test:4:14\n |\n 4 | const hi = 2u8;\n | ^" diff --git a/tests/expectations/compiler/compiler/function/undefined_fail.leo.out b/tests/expectations/compiler/compiler/function/undefined_fail.leo.out deleted file mode 100644 index 1d76cbecb4..0000000000 --- a/tests/expectations/compiler/compiler/function/undefined_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [ETYC0372003]: Unknown function `my_function`\n --> compiler-test:4:5\n |\n 4 | my_function();\n | ^^^^^^^^^^^\nError [ETYC0372003]: Unknown function `my_function`\n --> compiler-test:4:5\n |\n 4 | my_function();\n | ^^^^^^^^^^^" diff --git a/tests/expectations/compiler/compiler/group/add.leo.out b/tests/expectations/compiler/compiler/group/add.leo.out deleted file mode 100644 index 53cdfcaa2c..0000000000 --- a/tests/expectations/compiler/compiler/group/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ee823464d3be14662261697b47c73a67a47c47558987333869ea6e72d6e34ebf - initial_ast: 64c94034bd1ca4bc616b3be459139ef6d65ec92c90093e247c600c6bfd9d30be - symbol_table: b10964224747af7f8ba12f1b3c0dfa228842b3e08b9b82d785b71def31387144 diff --git a/tests/expectations/compiler/compiler/group/assert_eq.leo.out b/tests/expectations/compiler/compiler/group/assert_eq.leo.out deleted file mode 100644 index 231d0180cb..0000000000 --- a/tests/expectations/compiler/compiler/group/assert_eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ecd9a5086d5d85f1794e023ff6c06e68cc0b4ae67e3f9abc88cd1354ed8fdfad - initial_ast: a5bfe7c18f041f12f7adc2fb9726eacd225383207b4d3c355bfffe831769bfae - symbol_table: 584d3ba9f7908f1b2e0c918710e78d0a483c12aa3f4644edada2eac31ac689ca diff --git a/tests/expectations/compiler/compiler/group/both_sign_high.leo.out b/tests/expectations/compiler/compiler/group/both_sign_high.leo.out deleted file mode 100644 index 95eac33b77..0000000000 --- a/tests/expectations/compiler/compiler/group/both_sign_high.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: b14d302e43f9f5d759e3399df9c77d6d44b6297c0da78d7f66cde5f2ba252778 - symbol_table: 9a61702119ebc681917d7cb7e40ecafa00354849326bf1182635f27a28da35e9 diff --git a/tests/expectations/compiler/compiler/group/both_sign_inferred.leo.out b/tests/expectations/compiler/compiler/group/both_sign_inferred.leo.out deleted file mode 100644 index 8ee455d309..0000000000 --- a/tests/expectations/compiler/compiler/group/both_sign_inferred.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 4450d4bd84a116aa500e82a4768d23193ee97159b5449f0ca7736ea769323e39 - symbol_table: e4a96223c049893c904a90f24d069592b33fc137de0f4816cf92089e63663693 diff --git a/tests/expectations/compiler/compiler/group/both_sign_low.leo.out b/tests/expectations/compiler/compiler/group/both_sign_low.leo.out deleted file mode 100644 index 0f2e90db12..0000000000 --- a/tests/expectations/compiler/compiler/group/both_sign_low.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 5f5ec502724efe67bbe9d168cbea8a9771aedf8c4f7df65c08f6a12be8995af7 - symbol_table: 1817d91b99941ddc2590c6a2777ad8f7d4ba26a8b2a3baa3932f1a08eb540206 diff --git a/tests/expectations/compiler/compiler/group/eq.leo.out b/tests/expectations/compiler/compiler/group/eq.leo.out deleted file mode 100644 index 231d0180cb..0000000000 --- a/tests/expectations/compiler/compiler/group/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ecd9a5086d5d85f1794e023ff6c06e68cc0b4ae67e3f9abc88cd1354ed8fdfad - initial_ast: a5bfe7c18f041f12f7adc2fb9726eacd225383207b4d3c355bfffe831769bfae - symbol_table: 584d3ba9f7908f1b2e0c918710e78d0a483c12aa3f4644edada2eac31ac689ca diff --git a/tests/expectations/compiler/compiler/group/input.leo.out b/tests/expectations/compiler/compiler/group/input.leo.out deleted file mode 100644 index 25b07ca155..0000000000 --- a/tests/expectations/compiler/compiler/group/input.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 5cce2653606494bd949a7631bb7fe6ab255fbcb1618e5e099875e4f1e9c082aa - initial_ast: a5bfe7c18f041f12f7adc2fb9726eacd225383207b4d3c355bfffe831769bfae - symbol_table: 584d3ba9f7908f1b2e0c918710e78d0a483c12aa3f4644edada2eac31ac689ca diff --git a/tests/expectations/compiler/compiler/group/mult_by_group_fail.leo.out b/tests/expectations/compiler/compiler/group/mult_by_group_fail.leo.out deleted file mode 100644 index 569024160b..0000000000 --- a/tests/expectations/compiler/compiler/group/mult_by_group_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [ETYC0372007]: Expected one type from `i8,i16,i32,i64,i128,u8,u16,u32,u64,u128,`, but got `group`\n --> compiler-test:4:12\n |\n 4 | return (_, _)group * a;\n | ^^^^^^^^^^^^^^^\nError [ETYC0372007]: Expected one type from `i8,i16,i32,i64,i128,u8,u16,u32,u64,u128,`, but got `group`\n --> compiler-test:4:12\n |\n 4 | return (_, _)group * a;\n | ^^^^^^^^^^^^^^^" diff --git a/tests/expectations/compiler/compiler/group/mult_by_scalar.leo.out b/tests/expectations/compiler/compiler/group/mult_by_scalar.leo.out deleted file mode 100644 index 50eb57e79f..0000000000 --- a/tests/expectations/compiler/compiler/group/mult_by_scalar.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e765a6e8209951902a890e711b0ebb6b22dfd84149ae1a69bce43530008c17c3 - initial_ast: c1c65a71052cd2891e9eb519955d47ba33327d8a5c6aabdaa35f1dd312aa656b - symbol_table: 8e39b2bdad6276a42437b673faa0d1dd4f762a9778de1a1e2c8f8edbe5002be4 diff --git a/tests/expectations/compiler/compiler/group/negate.leo.out b/tests/expectations/compiler/compiler/group/negate.leo.out deleted file mode 100644 index 8b71dac270..0000000000 --- a/tests/expectations/compiler/compiler/group/negate.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ecd9a5086d5d85f1794e023ff6c06e68cc0b4ae67e3f9abc88cd1354ed8fdfad - initial_ast: 7382760a9540b1f7491ab97b3eda2e7687995d37c0e8368c4ff6464f7dda433e - symbol_table: efa845f46b76b7927005e6e7b8ba6353db6f3a783ec1a8b74993ccc97738eadc diff --git a/tests/expectations/compiler/compiler/group/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/group/no_space_between_literal.leo.out deleted file mode 100644 index 4a09044a4a..0000000000 --- a/tests/expectations/compiler/compiler/group/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370004]: Unexpected white space between terms (0,1) and group\n --> compiler-test:4:24\n |\n 4 | const g: group = (0,1) group;\n | ^" diff --git a/tests/expectations/compiler/compiler/group/one.leo.out b/tests/expectations/compiler/compiler/group/one.leo.out deleted file mode 100644 index 1451ff1c88..0000000000 --- a/tests/expectations/compiler/compiler/group/one.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 8c730537e1bc9efd6b7004201e49eb37a39931a7e579f7c0dbcfdcf59daac4ba - symbol_table: 1459210791fd0aae2827b2b7c3fd438e7a8315b290e23cbfe365b4214d5cd284 diff --git a/tests/expectations/compiler/compiler/group/point.leo.out b/tests/expectations/compiler/compiler/group/point.leo.out deleted file mode 100644 index da77e02dbc..0000000000 --- a/tests/expectations/compiler/compiler/group/point.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 8d228887cf0ac8a041bfc2d714a945b31974e632dde21636fffa86cfe6d3da84 - symbol_table: ac8c4425959cf548f2f0edc8aa637b1d827394f11fe2c10ecef366a803fe30a2 diff --git a/tests/expectations/compiler/compiler/group/point_input.leo.out b/tests/expectations/compiler/compiler/group/point_input.leo.out deleted file mode 100644 index 4933ddaceb..0000000000 --- a/tests/expectations/compiler/compiler/group/point_input.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e03c4a2ba40d2e844353081fc62efae967d074fb34a08bd30c99dff1387bd3fd - initial_ast: 3e5e6c4e27849e4d2b56f9145a94cda521fdbee41ff24e15dd41f47b9f9cf8db - symbol_table: 0db35c4a8548b1c37607ad3a7d67be41b7949f6219107f4d5ef8442a75dd2a7a diff --git a/tests/expectations/compiler/compiler/group/positive_and_negative.leo.out b/tests/expectations/compiler/compiler/group/positive_and_negative.leo.out deleted file mode 100644 index b48f91fc0d..0000000000 --- a/tests/expectations/compiler/compiler/group/positive_and_negative.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 6c150c7f1faa1259c42139186ca5715c96d3c9914e89a426e1d833e91df705d1 - symbol_table: 877713c611c84057862de19fa49429efb7c57a29ed3ef686b59c1ab3696c4117 diff --git a/tests/expectations/compiler/compiler/group/sub.leo.out b/tests/expectations/compiler/compiler/group/sub.leo.out deleted file mode 100644 index cd95267be1..0000000000 --- a/tests/expectations/compiler/compiler/group/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ee823464d3be14662261697b47c73a67a47c47558987333869ea6e72d6e34ebf - initial_ast: 7f7134f02b190880606fe76adeb58295b48174dc3fda20551b08e452aa859388 - symbol_table: 8d7179908ac5272f4892b2e374ad5c5401332d4d12d7d0505ba1e51a98ef0d6d diff --git a/tests/expectations/compiler/compiler/group/ternary.leo.out b/tests/expectations/compiler/compiler/group/ternary.leo.out deleted file mode 100644 index 8d7bfe585a..0000000000 --- a/tests/expectations/compiler/compiler/group/ternary.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e03c4a2ba40d2e844353081fc62efae967d074fb34a08bd30c99dff1387bd3fd - initial_ast: 408ea050f4db2d1429d0522efe4f3a7713f52097c26dd9feacd725af866a13bf - symbol_table: 5e96e4138e5643222224de143ab32b6716c4dbaf965318b48eaf9e4ba63f8586 diff --git a/tests/expectations/compiler/compiler/group/x_sign_high.leo.out b/tests/expectations/compiler/compiler/group/x_sign_high.leo.out deleted file mode 100644 index 2bf27526a0..0000000000 --- a/tests/expectations/compiler/compiler/group/x_sign_high.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: d862fe6e0c7824b043d51579e3d928d85dbfb3ceb127cff804cf35ab46a0d27f - symbol_table: 2d0db26fa84f8daad71afd4420718043de1c97757ae4fe4fa78e9874891d1d80 diff --git a/tests/expectations/compiler/compiler/group/x_sign_inferred.leo.out b/tests/expectations/compiler/compiler/group/x_sign_inferred.leo.out deleted file mode 100644 index 37c45db3dd..0000000000 --- a/tests/expectations/compiler/compiler/group/x_sign_inferred.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: d9131042766bcda201691ff910702675d9a70a9e8501abe6de2fca13e22dddf9 - symbol_table: c20979f64468655131a488980c1de31384fd7ff35561ed569c3db6f2d0bc19cc diff --git a/tests/expectations/compiler/compiler/group/x_sign_low.leo.out b/tests/expectations/compiler/compiler/group/x_sign_low.leo.out deleted file mode 100644 index 794d042cbc..0000000000 --- a/tests/expectations/compiler/compiler/group/x_sign_low.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 6e20ff0d1d9ff333eb7f56da5a239c09864f5e90d5282e734e9faa2c7ccbc76c - symbol_table: f450d14b0bb862b0bec4a5f8d41eb92f7cf951dee469505fb20dbfa25972eb7b diff --git a/tests/expectations/compiler/compiler/group/y_sign_high.leo.out b/tests/expectations/compiler/compiler/group/y_sign_high.leo.out deleted file mode 100644 index d12a2b8577..0000000000 --- a/tests/expectations/compiler/compiler/group/y_sign_high.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: de1fa4a91757146bd6c659b1507abad6e4b66f5cee22c8e8523a6cdd1212d6ee - symbol_table: 52760622da95d189f6e707df97fc6bba4216fa59022a4ae79d840b9c05fdf5b1 diff --git a/tests/expectations/compiler/compiler/group/y_sign_inferred.leo.out b/tests/expectations/compiler/compiler/group/y_sign_inferred.leo.out deleted file mode 100644 index 0ce2614aea..0000000000 --- a/tests/expectations/compiler/compiler/group/y_sign_inferred.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: d3c56fc45ce1638a11aa840a68f67acbcd6d453fd6ef58ed820c82b852806beb - symbol_table: d3bf69e78619e63bc1c56c1efe49712b226f5d477e1c42491d0b31e24d5a98a7 diff --git a/tests/expectations/compiler/compiler/group/y_sign_low.leo.out b/tests/expectations/compiler/compiler/group/y_sign_low.leo.out deleted file mode 100644 index 8169d59831..0000000000 --- a/tests/expectations/compiler/compiler/group/y_sign_low.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: 6f55711d5640711c72ee76879ba01f9a116e3a42125a6fa88fa8985587cfceb0 - symbol_table: 026430e928e2236167d6587cb1885784f30bbc916f75d3a0f42fa7a3f2c6978b diff --git a/tests/expectations/compiler/compiler/group/zero.leo.out b/tests/expectations/compiler/compiler/group/zero.leo.out deleted file mode 100644 index 632eefac2d..0000000000 --- a/tests/expectations/compiler/compiler/group/zero.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: no input - initial_ast: cbdc33ff0e2346a4b205b0fcd945c8948bbc574418a9136760e23f11be47df7e - symbol_table: b181fa2d3c50419dbdaadbe2e91aa4a3e17baa614b0635f9ce6fa7367ead48eb diff --git a/tests/expectations/compiler/compiler/input_files/program_input/main.leo.out b/tests/expectations/compiler/compiler/input_files/program_input/main.leo.out deleted file mode 100644 index 3246ab30b2..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input/main.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: dcc83a9319d9784c4bed7596d95f4bb19e2f5db1122e17bfa37e3458ed69c4fd - initial_ast: 06f1b743bd89e797249d51660f05d3b53d8c3e5a55c00c414795059fdd194ca1 - symbol_table: 00f652a7b8e969478d433c749951ee63b97343691ff9ade7e1e9288757814ef6 diff --git a/tests/expectations/compiler/compiler/input_files/program_input/main_field.leo.out b/tests/expectations/compiler/compiler/input_files/program_input/main_field.leo.out deleted file mode 100644 index 4c9de4ca03..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input/main_field.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0c1be8e106149f3dbe5d151e6372f7d6acf3d0986643537ed9610c2f89eb9ed4 - initial_ast: ffdacfde92b14a8fc1e7c53d51cf47345ba944ceac0340520122f64e80c0ab1e - symbol_table: a3dad989c81fa120b3092919ca6bd0cc90221424459f5691b7f172e5564ba1ae diff --git a/tests/expectations/compiler/compiler/input_files/program_input/main_group.leo.out b/tests/expectations/compiler/compiler/input_files/program_input/main_group.leo.out deleted file mode 100644 index 8bf543027c..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input/main_group.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 723e9ab87822d7d8d793ca1611eabcebc684097a64f37a4cd246ff9e506a4865 - initial_ast: 5932c467cdf3a483848183af054e2ec2d256b1d8b6e01f9ac4209b400863c137 - symbol_table: 3b68eff86b45e4f940b0a1031e19a64178b0bf802acb59f3b743e664f3010876 diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main.leo.out deleted file mode 100644 index f90be45bc0..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input_constants/main.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ce38ef1ec7bdaaf35b68d011803255589ed870002583000a76f137d7682bc3d6 - initial_ast: 806f13e7c1584039d0f1aae5c8b4f8ed432d35770ec576610d6249afb88141bb - symbol_table: 031a91bf50d051b6ffb92f6853fa4bece1f5f8f0aa145a28abed6bd1d4cf7bdd diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.leo.out deleted file mode 100644 index ecf43145f8..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_field.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3273de56f5b29e324e4f4ef3cc7c0c8d468962214728d611aeb4b788fd73aefb - initial_ast: f64a7585251a99b5a711175263bf8bd39fa959a7f1488f9aa3a8ba40a5dc9247 - symbol_table: ec750d5d5f4a1e5b31a63e0bc8e12944eef200f2d71efcdb0fd85811ac6e2d31 diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.leo.out deleted file mode 100644 index 8caf9875fa..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_group.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: eebcd00b27aba004420d4f00da025325da9ff86d29162e54401fa55b5758ae39 - initial_ast: 8b077463b76328b9a910bf0eaab51a74e7b69e1cddbcedc9226a5358f13b9bf0 - symbol_table: 14140f05d5fb8a85352940a67860fd36ed597f93ac882fdb76ef3d1ed89b5031 diff --git a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.leo.out b/tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.leo.out deleted file mode 100644 index 4774f6459d..0000000000 --- a/tests/expectations/compiler/compiler/input_files/program_input_constants/main_multiple.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 81306ba48e4ea08106311612bfd5c1bce79242ca08695fda8584780329266063 - initial_ast: 3c27f9f5dddfc4a5a036c33fd9bbbff4594bcdb188cff720d0e8ae7f171f6acf - symbol_table: 9674d1e094af108a21c9a8f2e9c5b911f76504d728866f9b57b6e38318c52741 diff --git a/tests/expectations/compiler/compiler/integers/i128/add.leo.out b/tests/expectations/compiler/compiler/integers/i128/add.leo.out deleted file mode 100644 index a60be45cfc..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0eb1ad9d13a2a11ba96f8ae311f1f91922abd5316ec123f92be78864c33464b4 - initial_ast: 4ba3f688a429a73f874a1c391a591e7155a4722ff99c339d0814eb903b3265db - symbol_table: 26e29ab43161625435a7de57fba18feffa2ca86b908d3720a652c8fabc1a6adf diff --git a/tests/expectations/compiler/compiler/integers/i128/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i128/console_assert.leo.out deleted file mode 100644 index b2d458b0f3..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - initial_ast: 48e5e86ca0706ef02b3889899d4a0f4b8f33f95a4b93a1eef6f86c1e0a7699d7 - symbol_table: 6f25f2987af24695b2fb70fb856a108c3d185a98289e796f5af4cb60c0de946a diff --git a/tests/expectations/compiler/compiler/integers/i128/div.leo.out b/tests/expectations/compiler/compiler/integers/i128/div.leo.out deleted file mode 100644 index 86061fb0e6..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a8d3b28b557b2c19b8bb0083c015f5f217971e856d0a5c2462e956bf55b68126 - initial_ast: 22d811ec372bfcfa643f49485200451dc5fe2b928483cb9801cd10461100e3b1 - symbol_table: 13298cf22dc30ccc0e18f787e657068fd0531e71e9b29155541503bf7209801b diff --git a/tests/expectations/compiler/compiler/integers/i128/eq.leo.out b/tests/expectations/compiler/compiler/integers/i128/eq.leo.out deleted file mode 100644 index fc0c6132ba..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - initial_ast: da2b5ade996589a255e02d69a67f76814bb7ac0b0e685bf7e9776ceb4e0b9a7c - symbol_table: e354ff29052ba6cf646dc2a940fb2489c740245554aa81f4a9b71c314f431618 diff --git a/tests/expectations/compiler/compiler/integers/i128/ge.leo.out b/tests/expectations/compiler/compiler/integers/i128/ge.leo.out deleted file mode 100644 index e0ffd756ff..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - - initial_input_ast: 9dd6bd7a655947faefb64c288a9e9411b81148989543a4766fbad39a957dc8eb - initial_ast: 8eba6b11f24d8570a20e459d8aab9622ea6a5ba7af9a694c2987a3b7fd9ebbbe - symbol_table: a0b9f85aee4a145dd4f5a8f6488b4d50a627e317601a523b63b13cc969325401 diff --git a/tests/expectations/compiler/compiler/integers/i128/gt.leo.out b/tests/expectations/compiler/compiler/integers/i128/gt.leo.out deleted file mode 100644 index 5f925d5890..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - - initial_input_ast: cc80ffa5e25d4c0dcaf6154575b54f85ff5c2f86f50830a966e51bdd8f2274d0 - initial_ast: b8f337da7484c626ac9f36d2b2ef1b6d64a4c71c83fea6371fa8074580397f73 - symbol_table: 96ff00c92d164363ceb1fee06485b451062e76798f4381afa4141d60b2e88c96 diff --git a/tests/expectations/compiler/compiler/integers/i128/le.leo.out b/tests/expectations/compiler/compiler/integers/i128/le.leo.out deleted file mode 100644 index 9f38592d2e..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - - initial_input_ast: 2bc5e353d29b75113a1b8976eddb617e0476110a0396b0dfc2dd48481803017c - initial_ast: 565fed6c7ba818dd47e2623c8a1abb63d28ecb1a5038c076879fdf43dc908166 - symbol_table: 4beca34f91e3bb4fbb997a1851b3fefb933c47d1e24f6a2e6258d4075c01918a diff --git a/tests/expectations/compiler/compiler/integers/i128/lt.leo.out b/tests/expectations/compiler/compiler/integers/i128/lt.leo.out deleted file mode 100644 index 67f2a77a2a..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - - initial_input_ast: 5c8741c117817e7996c0add338f5d29437be59d7b7e3f7a68a2e575871c57824 - initial_ast: 7cb86efce158b9f000dc417a73bb2030617e38bc813f413bc36386fab0520406 - symbol_table: ad21c0cb65fd2f4f2360ed81da1bf608b83a0865801d2b569035eb1e36a7676a diff --git a/tests/expectations/compiler/compiler/integers/i128/max.leo.out b/tests/expectations/compiler/compiler/integers/i128/max.leo.out deleted file mode 100644 index 87ebd2305d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 4d6fa010bac61cc40182ea755147c7f2aae2f8fc06329d2235318a6203d301c2 - symbol_table: b9f23cb88072c4321465b95ec69bba96f8fb225616244266e05a9e6eeb99da5b diff --git a/tests/expectations/compiler/compiler/integers/i128/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i128/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i128/min.leo.out b/tests/expectations/compiler/compiler/integers/i128/min.leo.out deleted file mode 100644 index 73b929baa6..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: a6ef77091458c48187ba317d13ed659ca96c156f4cd6cc27b122474c8bb25c51 - symbol_table: 6b54f07ea0046f948e794781960eb3df9271e7e2d10be3e278e2b02d4d810da7 diff --git a/tests/expectations/compiler/compiler/integers/i128/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i128/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i128/mul.leo.out b/tests/expectations/compiler/compiler/integers/i128/mul.leo.out deleted file mode 100644 index a919ee34dd..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a0f0026c304d73c93060f61ad3a55094eb1fafaf8663a0e1972275be45d759e6 - initial_ast: 58d78b11cee52cae54a5684cccaf0569c9788f8c2af0e51d18bae25004246a58 - symbol_table: c0c0cbcbbb0b8aa5351b8c74dec4bc556103902ca0f1ebcee2067768c553fd83 diff --git a/tests/expectations/compiler/compiler/integers/i128/ne.leo.out b/tests/expectations/compiler/compiler/integers/i128/ne.leo.out deleted file mode 100644 index b2f82425db..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2b35d182059f5f8aea05705b54c7446011ee78919bbda9f163927613f924f100 - - initial_input_ast: b75ce6366bf607ddeebbfb8a7d491528a89ed4f3d5c4e57fb1480cfec43930e5 - initial_ast: 5d8779407cc50f3e981e519370b2c0a3a73037572c8e35fc19b4dd421eee3d44 - symbol_table: ee72f930a06f9409bfa70e2c08cb9453f255bd8ecf13470383dd7592fada8a93 diff --git a/tests/expectations/compiler/compiler/integers/i128/negate.leo.out b/tests/expectations/compiler/compiler/integers/i128/negate.leo.out deleted file mode 100644 index 83218f530b..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/negate.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 5204f7264d13dc737097c1b0a1c707e19767854e922ba5571e902d23eb6847f4 - - initial_input_ast: 6c496394ee585ef0d7dc4bb8e1ef5a05656999502f8f466747e4044c439c3aed - initial_ast: 26273053686377beb2d82077eadc49db45ca8b5bc24df8b9515182b998421cb9 - symbol_table: dbad7f718a950b554310d0eec61a2a595d5232be21ff783f0c8bd647d6275dcb diff --git a/tests/expectations/compiler/compiler/integers/i128/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i128/negate_min.leo.out deleted file mode 100644 index 4dfa79f1d8..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/negate_min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: f25f8ff443e8db19544f294dec594f2121e975a27aa500e794d12e38f8e65413 - symbol_table: 49a0f7957853abe54b078bb95a1091e5262b58ecc5ff8b8e546ff1fe82547e1f diff --git a/tests/expectations/compiler/compiler/integers/i128/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i128/negate_zero.leo.out deleted file mode 100644 index 34863d24ed..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/negate_zero.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 4c16f86c1939e7a0fe20fc836c26de5f4d781129068eb3607f7880599c57859e - symbol_table: 7e7d4d32ae1e112e3ca3a14420225132520abf3f8dc327879b7f8f23f85a8b0d diff --git a/tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i128/sub.leo.out b/tests/expectations/compiler/compiler/integers/i128/sub.leo.out deleted file mode 100644 index dea48d655f..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a3dbcd20f9c1d5bce5a3667831f3cf05667a4b0253bdda31d99d47951ad98259 - initial_ast: 656588e753eb72edb9e3bde30e16df4fd81fc101eb8ccf9bfe572d5166e9b056 - symbol_table: e071ae07079f92ae418d648b75b982c8294698178699e138c3abfe2341d5b3fc diff --git a/tests/expectations/compiler/compiler/integers/i128/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i128/ternary.leo.out deleted file mode 100644 index 534d08d985..0000000000 --- a/tests/expectations/compiler/compiler/integers/i128/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 40139f0e5c57dd40f292eb3eb9857b869d131d69050280f412c8bacf3c2be0a5 - - initial_input_ast: 83772cf3d3bec2e16e513bf37ebc6df2558ecefe79f9b00232cba49bfee7a866 - initial_ast: 72562efc786e0ae93d8905b049d9e91540998bd4022393c58f90e6bb3b8d7346 - symbol_table: 940d5266f13724648ceb54c883bd73b737d83b14d2925fed8b0fcdaa6d77294b diff --git a/tests/expectations/compiler/compiler/integers/i16/add.leo.out b/tests/expectations/compiler/compiler/integers/i16/add.leo.out deleted file mode 100644 index c81a349f41..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 52a0e922c0ada1f3302f3d4d7feb758ff3937a8615a2fd23325cffcb0c50cf45 - initial_ast: 9ebcf93a3a1c925cbda80ad0a4f715a975500a8a08698ef25e8c980bc5c074fc - symbol_table: c0f4ce3ef2a4953e653c50d9adbccfc069c2047c6adda1830646d92934d66726 diff --git a/tests/expectations/compiler/compiler/integers/i16/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i16/console_assert.leo.out deleted file mode 100644 index 5777e9b6c1..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - initial_ast: f8796fe09d11eab12fb3fd4de7daff8179e542873a689874fcc85f61fe6f52eb - symbol_table: 4ba20f16852ff2fe7616b71c2d07aeadaed53777e2f304ded7c449948fe2f853 diff --git a/tests/expectations/compiler/compiler/integers/i16/div.leo.out b/tests/expectations/compiler/compiler/integers/i16/div.leo.out deleted file mode 100644 index 9d5859bc71..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: d60a59011ffd9b722482df1f60fecf4035905e7991faf3509dc956204e26dbdb - initial_ast: 69e960fb1923255efda2ba99dc07c01cd2e8d38cbf63363f7112f9c4e9efc768 - symbol_table: 0e193ca48f95a41e91fe8b791ba0bcee677e3fb5edf1af8659aaa4f16607c122 diff --git a/tests/expectations/compiler/compiler/integers/i16/eq.leo.out b/tests/expectations/compiler/compiler/integers/i16/eq.leo.out deleted file mode 100644 index d196fe3aaa..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - initial_ast: a6cb462814fae8bb80601fdc772c4ba3831c35b069b235e01f1ad8fe857d879d - symbol_table: 8f43f463b85046218c11afbd5aa39021ba131f2b7474f2f9e1743e5b4b617d49 diff --git a/tests/expectations/compiler/compiler/integers/i16/ge.leo.out b/tests/expectations/compiler/compiler/integers/i16/ge.leo.out deleted file mode 100644 index fda625bc14..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - - initial_input_ast: 0ed5ac4e8e800b411f402e7957dbdfa4f421798943462089d15eaabc08c9cbf9 - initial_ast: 5351c113c7e45be9e1ce080daaa2f8c8944d9cc551146e0da6bbfae5eb69ed01 - symbol_table: 23916724e149d291045330b89d96b60889a0fc778c31ae92c3a39b8ac7453285 diff --git a/tests/expectations/compiler/compiler/integers/i16/gt.leo.out b/tests/expectations/compiler/compiler/integers/i16/gt.leo.out deleted file mode 100644 index 1efdc4828c..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - - initial_input_ast: 60eab1c75b42a247473a1589e677e7270c77e15fc60b3a3081a267b27b550f9f - initial_ast: 31949f3b3950c34aadb02b7220d0b9ef6f088fc14bc9496ff1649d7dd3c44347 - symbol_table: 78d0d78e216325ced3f912e92935818dc7e24065690b5d9d560b7997ca29eacd diff --git a/tests/expectations/compiler/compiler/integers/i16/le.leo.out b/tests/expectations/compiler/compiler/integers/i16/le.leo.out deleted file mode 100644 index 4f225920de..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - - initial_input_ast: 61e14cdfb7cfc0eda6361c3dfe1c8b0435e69fe5dec14fd78d57631fb155ad3a - initial_ast: fcb3b9db14c713d885ec37a40aca86d034f1d12e85b22d103a20b7e181848e73 - symbol_table: bf2a96b0ab9d2587f3b5bd9b6a4b33d2839e61219f68828a79fb40788190ca1a diff --git a/tests/expectations/compiler/compiler/integers/i16/lt.leo.out b/tests/expectations/compiler/compiler/integers/i16/lt.leo.out deleted file mode 100644 index 42bd6818f2..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - - initial_input_ast: c56154a57fdc267eda5faf0b93fe3a124c52f9dbd9f1a46063018300138c474f - initial_ast: 0058f607e4e76d621419f0378ced319e9bb7228e0af27793bb44f433369c23c3 - symbol_table: 7b9a0a38448dc4a3bc8670c59d350d3ef11176a8965827ff5e7cac73afe4b7ad diff --git a/tests/expectations/compiler/compiler/integers/i16/max.leo.out b/tests/expectations/compiler/compiler/integers/i16/max.leo.out deleted file mode 100644 index 190957bd46..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 55dbbaccb9439eb1c53b6df0a9c02fb66a2b168ba4ec50df1f39f660551d8a06 - symbol_table: bff54d1345b964af7d0d8caa2e69b103810988c8acdd599f7843498255b52d69 diff --git a/tests/expectations/compiler/compiler/integers/i16/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i16/min.leo.out b/tests/expectations/compiler/compiler/integers/i16/min.leo.out deleted file mode 100644 index e35bc8a80f..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 7228343ff18271420a6aca3be6f76604abb0dcb795e88088d6c9dfcad6e6ed8e - symbol_table: 9f669ef27076d235af9438e4a4732be0d93854a67b7e3df0e3a99f62bc9db684 diff --git a/tests/expectations/compiler/compiler/integers/i16/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i16/mul.leo.out b/tests/expectations/compiler/compiler/integers/i16/mul.leo.out deleted file mode 100644 index 723c3faf0d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 80f618589bf50616df17ffbcc676f151b17416a702f14774d3441e457a4157b5 - initial_ast: 7a0a6c7ece2f9c1a51f97c6a71b8c60a527329c30a3957185c2bc53b2fc00001 - symbol_table: 6ef3c6f53b59ccfacd7d3590250bf4f383dead38eb6403e278dced621c9a924c diff --git a/tests/expectations/compiler/compiler/integers/i16/ne.leo.out b/tests/expectations/compiler/compiler/integers/i16/ne.leo.out deleted file mode 100644 index d340f6a6a7..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b12ba1759e7600fe50376c2dc04f2cc908cae643be6693583c167493b8b5064e - - initial_input_ast: 4ac2084a873258d0f5b18c4936ddd323509944d808e66efe91c44593d2c2bbe1 - initial_ast: 571a0fb0e0122a7ecb2f631c44fd426c4b165d3610d81481fb395a3391175897 - symbol_table: d06cab633083be51c77f53df2cfe0bce8137fcb17aac03346d885adc9c4b9be3 diff --git a/tests/expectations/compiler/compiler/integers/i16/negate.leo.out b/tests/expectations/compiler/compiler/integers/i16/negate.leo.out deleted file mode 100644 index ca98220d13..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/negate.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e3239b93c2572ba5c5e7cf2edaa4d8045bb11212607af1a441eb351677f49087 - - initial_input_ast: 9da893ef2702d495a685100ea83f84397cdcc3716f4e9fa23736bb57a750d861 - initial_ast: 06c7e204e308b875e2e027bf9a98e175aea8140a6af146562343fa19dd5b0f44 - symbol_table: b693277ecb38a66fd37fc9482e73a650bf448aa84e0f2d60baf85e504ececdba diff --git a/tests/expectations/compiler/compiler/integers/i16/negate_min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/negate_min_fail.leo.out deleted file mode 100644 index e3a3a1a3fe..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/negate_min_fail.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 87411a2334bb03e186ad8e58cb93ebc5e98dc19c49cc8d25505a0fe5a5a694a2 - symbol_table: cc902d05b8e7171b94fb0335b85ef2147427d0840e15360f6a88c4906ebceaa2 diff --git a/tests/expectations/compiler/compiler/integers/i16/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i16/negate_zero.leo.out deleted file mode 100644 index 2d0c88f28d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/negate_zero.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: c22b66f467aea291c79cbe61f03e8b0e7cec24bdd9f224efd76f8b0eec505bb3 - symbol_table: d4d0d37668745d3e6320eb7f08a3b4e32e276177c75600b3fe8742d6b42e308e diff --git a/tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i16/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i16/pow_fail.leo.out deleted file mode 100644 index e26b4183de..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/pow_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [ETYC0372009]: The second operand must be a unsigned int but got type `i16`\n --> compiler-test:4:17\n |\n 4 | return a ** b == c;\n | ^\nError [ETYC0372009]: The second operand must be a unsigned int but got type `i16`\n --> compiler-test:4:17\n |\n 4 | return a ** b == c;\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i16/sub.leo.out b/tests/expectations/compiler/compiler/integers/i16/sub.leo.out deleted file mode 100644 index a3478e1688..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a614a0d50bb1fdac14773ff4bc9e6e73cadf7577f704bd022d228f8012c5b82d - initial_ast: f384f22efa0623afef6b74e89df6e2e238aea9bc84a9d422c1ac7f8ff567fd38 - symbol_table: b04bbcf2084fb6c4abf70b9c36361dfac8cc78ac8f1004453b3020f7106b8378 diff --git a/tests/expectations/compiler/compiler/integers/i16/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i16/ternary.leo.out deleted file mode 100644 index 930e2f6d38..0000000000 --- a/tests/expectations/compiler/compiler/integers/i16/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b7e009a9242724e5b46c82c07ec09ceb37bd229e726aa7b10cf654222849047b - - initial_input_ast: c58e80ea1edcaef89fe15d96be15c8285fa4cdd94fe5a4d89e86037b95d81f2b - initial_ast: ee85a07334728c9f2a3c127b1968114215aca9c6c960aa7fb5df20864fb0a0d2 - symbol_table: b92b41fc1f57be0e19b7ae98c07f01811e2400472c7577bd2facabfe011b2418 diff --git a/tests/expectations/compiler/compiler/integers/i32/add.leo.out b/tests/expectations/compiler/compiler/integers/i32/add.leo.out deleted file mode 100644 index 513ea8a684..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 187821d38d4d6bee83ad16df121b4cd61453c250259cc88b5224cde2cb0f81bd - initial_ast: cf9129f53ff9903788b6c1dc51f1068af87f29e6ba40694f24648ef5c5e147b6 - symbol_table: ae5ef5cfb1044cbd8c7efa5be8935eb1742fc65c72b7f8aba9d9f7fb72f8556b diff --git a/tests/expectations/compiler/compiler/integers/i32/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i32/console_assert.leo.out deleted file mode 100644 index fe0e56cf73..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - initial_ast: af1f895a3ffd3c6b09bf785a7ba78085a828a7d267db27e39ceb0b5ebe6f1a98 - symbol_table: e7e8be510bca7adc0598527ef337c1938d3f5c8666448cafe2831594e553d39e diff --git a/tests/expectations/compiler/compiler/integers/i32/div.leo.out b/tests/expectations/compiler/compiler/integers/i32/div.leo.out deleted file mode 100644 index 42735778db..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 5c4c17182ebea3e67d0b4f30c4c5541f039ff6d44914806b5358ae789fde1576 - initial_ast: a163bed0fb5969ce86f5ee3f27097c710163519a79148e06354a7ae52f598687 - symbol_table: 088e7adb11ab06a554256c44b806f86c2c1f13273e00be2a80b8c8e797e51eb2 diff --git a/tests/expectations/compiler/compiler/integers/i32/eq.leo.out b/tests/expectations/compiler/compiler/integers/i32/eq.leo.out deleted file mode 100644 index 9ed1a1b40f..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - initial_ast: ba62f96d9796deebf5cb8c68abe3265e0a0352a6ba500b3197a43ebc19436606 - symbol_table: 7a2619dfcf2d5f5132253f84196ad0d3ab6ee0ab95df55062240dd92cca23e0b diff --git a/tests/expectations/compiler/compiler/integers/i32/ge.leo.out b/tests/expectations/compiler/compiler/integers/i32/ge.leo.out deleted file mode 100644 index 90f07e1838..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - - initial_input_ast: 6e2f4bca097cdfd636afe4221883da452290354178f85de45f1033dc3d99caf5 - initial_ast: 0917cf6662e2ab5b494a69c4141fc78a4c581fdbf5454bb50c176a09e06da902 - symbol_table: b599133b42cb178b6ecc71beee98b33229ba1bbb58282ace5b20faef31637bbb diff --git a/tests/expectations/compiler/compiler/integers/i32/gt.leo.out b/tests/expectations/compiler/compiler/integers/i32/gt.leo.out deleted file mode 100644 index be2d233ced..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - - initial_input_ast: c0ba73ee8b61ed89f99395a94f23a5aa3a84f9345a4c4020460303b540c33c6c - initial_ast: 2173bf8f6a793f208d79405952c3181a946b32cba0e9e83fb904b90f60c97c68 - symbol_table: 547e049dec4bad4d2e354d568151fc102474caffb82551bb5630c0b8906230c2 diff --git a/tests/expectations/compiler/compiler/integers/i32/le.leo.out b/tests/expectations/compiler/compiler/integers/i32/le.leo.out deleted file mode 100644 index 9a2e94358e..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - - initial_input_ast: f7bd61dab4f2768d6b2f631a06f5f33307a77755b1b640ebec2a187c3f9d0bb1 - initial_ast: b7a7ca7db84356eb19aa638e3b451da11b4a625b7d250e2de55126c07afadd5a - symbol_table: 2471d7a0f956f30747d5bd8c5d03e8a47c628ac64766d2f19caaf3dadd7f1c06 diff --git a/tests/expectations/compiler/compiler/integers/i32/lt.leo.out b/tests/expectations/compiler/compiler/integers/i32/lt.leo.out deleted file mode 100644 index 040c02024c..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - - initial_input_ast: cc79bd922f3afc54250b7e7a60628a58b17ba8e7db58091349f13b67297ea1f5 - initial_ast: 438315810d75e57e5fb24c9ff2526ccf6eeeefaf98216162aaf9d5ef7b845585 - symbol_table: 688fa40d541217369a9c952f52de9be090829cb3c6d08e98d6312fcdfbd90d63 diff --git a/tests/expectations/compiler/compiler/integers/i32/max.leo.out b/tests/expectations/compiler/compiler/integers/i32/max.leo.out deleted file mode 100644 index e323dbe988..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 325f4f22fdbc8d3f0b1cde27e60492870a4dfa137875e0a818d44d2ecd9dbbcb - symbol_table: e4eff856d1f884c746d9549c80e05a6d7ef3c23cab40a056f6be96cedcf093b5 diff --git a/tests/expectations/compiler/compiler/integers/i32/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i32/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i32/min.leo.out b/tests/expectations/compiler/compiler/integers/i32/min.leo.out deleted file mode 100644 index 0a93ba20c2..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 4475c8e73b8a4d016c8487f18c33a319fb4b641cabbd1cfcee179fd7917082ec - symbol_table: fe289642ca33db01ce62474ee358f4cff826e221724cc5b4d28f0e878d4f08e6 diff --git a/tests/expectations/compiler/compiler/integers/i32/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i32/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i32/mul.leo.out b/tests/expectations/compiler/compiler/integers/i32/mul.leo.out deleted file mode 100644 index c0ae7789de..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: c767df287dda6925591fbdb496ed122c17e2e0b963f0f2819a03493e8f57656e - initial_ast: ee8e95c8a34b19e8993ac970b94b56dab2c31b7e54dc92b27128000e7d05191d - symbol_table: 7c31808962cf3c6fa13611d89e6edc2a3b6c5d1fb7c1913a337f436412cc5a34 diff --git a/tests/expectations/compiler/compiler/integers/i32/ne.leo.out b/tests/expectations/compiler/compiler/integers/i32/ne.leo.out deleted file mode 100644 index 547cc494f0..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a139a8bae62ab18b9235331f7dde3acb349c1445e807293c71235fd149b12c7a - - initial_input_ast: 3eb74ab23e5409471a8cddbdef932be85f95ab0027ad95caff181f26ef3f8e9d - initial_ast: 36333a73320637e60e5992db8f2c6cbf15a6958927a44a8e8a4bd4d6a79aa583 - symbol_table: 86eb824aa5a8d1e3d8f4c4682aaabc503e02680c5c4ab6ab6500ff971ae21879 diff --git a/tests/expectations/compiler/compiler/integers/i32/negate.leo.out b/tests/expectations/compiler/compiler/integers/i32/negate.leo.out deleted file mode 100644 index ee7be59b02..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/negate.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 8016712e5cadc085ec477fe3261d863ed258f15bbcee3c229280a4434dc87bb6 - - initial_input_ast: 7d83894bd97920d10bbdcbba5a40cffdd1c2ec823cc2af89a3cdf48376c5c554 - initial_ast: 1d82fb1de0617c8539255e7ba530cf7583bd799384d76e715da5053f822e976b - symbol_table: ff59dc483d6da2f11e881ea60ccd3534ab7c1655e2e1e8c2ca99c1d670c77a19 diff --git a/tests/expectations/compiler/compiler/integers/i32/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i32/negate_min.leo.out deleted file mode 100644 index ac7d2ab92a..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/negate_min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: e85a47fcd2f126fda73b6adb5f4ecd52795a765aabf312b1374dbbb96b3e2bad - symbol_table: 4316835ec95347cdf02c020035e9cb3416318c71618d710108c716ae1554d139 diff --git a/tests/expectations/compiler/compiler/integers/i32/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i32/negate_zero.leo.out deleted file mode 100644 index 58619685d0..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/negate_zero.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: f3582c9a9f78e4d502e19f2310d875fe7f47c648be70889ae09de5cb3ffafd0e - symbol_table: f03df27663cd6b55538ab7319ad179ba7be6e962fdc193c79365a684ef004c16 diff --git a/tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i32/sub.leo.out b/tests/expectations/compiler/compiler/integers/i32/sub.leo.out deleted file mode 100644 index 0445eef18d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b0ba0dceefb39938d6365a1af8aff5b1ab305a264e70489cbf4ad244bb9642f7 - initial_ast: b7e347f0b12557644f817848aabddd9c8da188d6289955cf88844a21714517ea - symbol_table: 5b6a8a1708a2047863f813b4b029c22fd49de20abf5a16bb667954c4c5ee2a23 diff --git a/tests/expectations/compiler/compiler/integers/i32/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i32/ternary.leo.out deleted file mode 100644 index cd1fdba5b4..0000000000 --- a/tests/expectations/compiler/compiler/integers/i32/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 541a92e4449861bc8a77cd1e3e0641ec8581ea2156adbb71a8805eb76b981535 - - initial_input_ast: c0d707f8e705919c847736cd72c601642fc57cb205eab2b81bedf7cce768f18f - initial_ast: a6d197ae9afff916e45bf70d930c0d5ad740c19a434547da603a211d5e392c65 - symbol_table: d69acacea66b05b7cb30053a47a32453810be97b933908e014f68d8cb046ee6d diff --git a/tests/expectations/compiler/compiler/integers/i64/add.leo.out b/tests/expectations/compiler/compiler/integers/i64/add.leo.out deleted file mode 100644 index 1c291c6eae..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 4487891a65166322700df8b88e062dd55ba1ba1eab41086faeecb89866ce6353 - initial_ast: 4c8ecc77fb85464f37ed6510270912bab6d7f59d34c906a47eee5eba72e18b84 - symbol_table: d819410bf10134f81bb62eb4e11ff16ef2ee5d3aed52c328514db13cc79c9385 diff --git a/tests/expectations/compiler/compiler/integers/i64/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i64/console_assert.leo.out deleted file mode 100644 index e97fd3b4f3..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - initial_ast: 88f1001604765bde373b06ffb83c2d46bbc16548296178fc9ccb47eb49e0212b - symbol_table: fbeac8715fd60fea0f3ef8db7373e8ec195887ff4ba92bb7af7346181db2164d diff --git a/tests/expectations/compiler/compiler/integers/i64/div.leo.out b/tests/expectations/compiler/compiler/integers/i64/div.leo.out deleted file mode 100644 index 2234d56e68..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0a764dba657d55d3997cad318c763d1bc29b3bd68e720c29bdb329e31544cfa2 - initial_ast: 1ac553449dbba81518d78f57a0728f69efc8040ac83ee09516a99b52812d0ce5 - symbol_table: 00f270ed9ebe98ec0543be83c941aef7d465c6c79780eacac64a8b09120dd09b diff --git a/tests/expectations/compiler/compiler/integers/i64/eq.leo.out b/tests/expectations/compiler/compiler/integers/i64/eq.leo.out deleted file mode 100644 index 1759628fed..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - initial_ast: 9d96dab7f2cf21a2358200798a2689f722d388fe23c58bc00f13feefc05328e0 - symbol_table: fe562696dece608fab527d7894d61a1bbccbcdd2ddf7fcb5cc52a0d596fcaff3 diff --git a/tests/expectations/compiler/compiler/integers/i64/ge.leo.out b/tests/expectations/compiler/compiler/integers/i64/ge.leo.out deleted file mode 100644 index eaa286a861..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - - initial_input_ast: 6f2114abcc9ce0070e464adfbafdd625d2027563630b920462ae44cf648d10c3 - initial_ast: d051e63b0e248f8876e9d57ef905e0367a52fa9093bd2651ccbbf0312c7fafbc - symbol_table: ecc8f2f906379f321b5babf4982047f1a42f03456c2624eeeafe8d0a9198e3d5 diff --git a/tests/expectations/compiler/compiler/integers/i64/gt.leo.out b/tests/expectations/compiler/compiler/integers/i64/gt.leo.out deleted file mode 100644 index f295d49c75..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - - initial_input_ast: 77947a385da3cc07fb78bfd9d6d32f614be877f10e664addc4010f44dfd494fa - initial_ast: 3c6a6a8e102fd584ce5ec3e7bb33a944d13f7d2940b9f7dd62ccffd4497b1858 - symbol_table: e089bc1a3f005ed33b1f676a2ffff71fa6ec2f119f23e2537ca763bad3d56837 diff --git a/tests/expectations/compiler/compiler/integers/i64/le.leo.out b/tests/expectations/compiler/compiler/integers/i64/le.leo.out deleted file mode 100644 index 1eb41e3dd0..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - - initial_input_ast: 4d3d28e791b2bc01cc08f84e9c521c25de2cb9f1159c0810e18288ceade9384e - initial_ast: a2708a17884e05a752fcac58df044096170c53df416cb7b5bf4e8d5228d7396d - symbol_table: b186c6e3067b7544d334caa51380a5ddfcfb4d5a2efc6dc1acbe42282ef4cc60 diff --git a/tests/expectations/compiler/compiler/integers/i64/lt.leo.out b/tests/expectations/compiler/compiler/integers/i64/lt.leo.out deleted file mode 100644 index cc986d4785..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - - initial_input_ast: 67194a693cde1f31bb02a14e2ee4e5cc686b33d59d3b7449e9dc7bf74fbd0bf8 - initial_ast: 3fa8bf29f62927c016e625eccec688057f0390f8fe50072598774df9d9e60447 - symbol_table: 40cf3641e69402664d36e3da2fc574fb909d73cb15a7a253c678d61076da6d1d diff --git a/tests/expectations/compiler/compiler/integers/i64/max.leo.out b/tests/expectations/compiler/compiler/integers/i64/max.leo.out deleted file mode 100644 index 4f28cb8adb..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: d4867119d1bfa7f5f65b1046e5a14178ce9fccd4e46036f5f9760f1bbbaa3a2a - symbol_table: d7d7a90af5b30ced5d014e0f7539fe023299e3050aac61c26ebfbffd00997991 diff --git a/tests/expectations/compiler/compiler/integers/i64/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i64/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i64/min.leo.out b/tests/expectations/compiler/compiler/integers/i64/min.leo.out deleted file mode 100644 index b7a3a65d39..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: da6e4041a114d42150b9768cef5675545691f07f3949332a52a72156fa5bcd02 - symbol_table: ac8a22d4c2415f3853d5d7220433fab10c5f91eab939302666a2224601209d19 diff --git a/tests/expectations/compiler/compiler/integers/i64/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i64/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i64/mul.leo.out b/tests/expectations/compiler/compiler/integers/i64/mul.leo.out deleted file mode 100644 index 726161ed9d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: d53c1c3a0b1c6aad2bddba6e4b5194ed04f76992c93301b9a5fdf71d0c6e12fb - initial_ast: 58c1234be63fc6d2e2622d64fdecacac6b657a7f08f5668c39c6f33793cbf910 - symbol_table: e10e8f60976d59b92f39cb8402580330f13bf9d04cd7afdbf844c0c718897ecb diff --git a/tests/expectations/compiler/compiler/integers/i64/ne.leo.out b/tests/expectations/compiler/compiler/integers/i64/ne.leo.out deleted file mode 100644 index a0ef5792bd..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9ac72a16994c4f4145cf0eaa23f0d58de951926f8b9cb500bc33644cc242d288 - - initial_input_ast: a2ebbe7590f5035c9115e7e885e6cecd7c4f07d3567fbe34d464027f73e7ece2 - initial_ast: 952f7cee27658adbfb5ebc545740bfd721b2752bd9ce1f54a2d01b4d579fff2c - symbol_table: cf15aab8ab6a6a35f3a7ae1c3827b7a1dd32be924cb0ea6b7febc46b60d5b449 diff --git a/tests/expectations/compiler/compiler/integers/i64/negate.leo.out b/tests/expectations/compiler/compiler/integers/i64/negate.leo.out deleted file mode 100644 index 1a5f96faa2..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/negate.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: c2099c29aa512efefc2f4b24dfec851416921200642fdfc282c1c71b9d8e4fd3 - - initial_input_ast: 60c2c4f5a8213dffdf7b02b324ba11327d7dd89d22bdd8f73032e9eb8aa7da90 - initial_ast: 967ef98b19841f65c071e3a99b51e271eac151e6eb29dd005ac2bb4993e2eb5d - symbol_table: bc4883071e65ae85896379b2b51c6637ee6159ce84d85d38b6e44c90bb7f9b3d diff --git a/tests/expectations/compiler/compiler/integers/i64/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i64/negate_min.leo.out deleted file mode 100644 index b38aa6bf24..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/negate_min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: ea34d774b6c7baaf3c789cebc97f3b4ee6bfab3bc780344b58906d419709c435 - symbol_table: 927e4c4f2b53eb922fd507cb7faa00e94d47ccdbf16a2a0afe83b57e31873cb2 diff --git a/tests/expectations/compiler/compiler/integers/i64/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i64/negate_zero.leo.out deleted file mode 100644 index 4cf9ee24bb..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/negate_zero.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 1265a1500e63f4af0370db03e20cee843477f41200d0851f15ef5ad192c6a3c2 - symbol_table: a456668190df24a0290cdc207ed29668d614565d90d9380187e371ea7cffc2b2 diff --git a/tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i64/sub.leo.out b/tests/expectations/compiler/compiler/integers/i64/sub.leo.out deleted file mode 100644 index 3815930af1..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b58e6dd8d55347cdad90608837dfd6dee3d002202044f63844bfcfb764e4770d - initial_ast: 5276434ecb5659d594e5d0d70a79253788619f6d14588e3264ae8095e55d14b5 - symbol_table: fdaa2856fba7667905480b9477e3aa08c41c722ec9c51b5f75209420f502ae0d diff --git a/tests/expectations/compiler/compiler/integers/i64/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i64/ternary.leo.out deleted file mode 100644 index e29542826d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i64/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 482e1a5ff8edd8d08f8a4e686f4b9bdd46f6c09fd6a45a91d80817d2792379c4 - - initial_input_ast: 9f06a756fd85b99ad71c8815e6d2e0988933eb8ff5f58cd3b25c797a99ae68ec - initial_ast: 303c8f172bf1a89573e9c66daab696eae92c884d2fab440feb1b5592fb19873b - symbol_table: c4cb362b056cea8c44ef71fbd260c067c8025b66d9000f1bfd72a0a2caf34b8f diff --git a/tests/expectations/compiler/compiler/integers/i8/add.leo.out b/tests/expectations/compiler/compiler/integers/i8/add.leo.out deleted file mode 100644 index 41f367e3c3..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a4cac5c153aca7bfef6dabb6cbf703d96938699bebce6f063d39011de78a5bd4 - initial_ast: e5b43164c337c686cc881208115e1bbadd1926c5fb388cb0d0592dd26c40bbb3 - symbol_table: 0d30cbd5adc20ac5b03559dcd90334ac82572a3d5a195325d49ee681b4597089 diff --git a/tests/expectations/compiler/compiler/integers/i8/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/i8/console_assert.leo.out deleted file mode 100644 index 95ab30cb11..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - initial_ast: 7057b25d4c10f2cfb35c7c7897e1ce77eaf0ea00c5f13d5fe61be2db93f33e2d - symbol_table: 94888e7a3878be6164b483f223840d704e815d8f29e1d90d04130e0f363c21d0 diff --git a/tests/expectations/compiler/compiler/integers/i8/div.leo.out b/tests/expectations/compiler/compiler/integers/i8/div.leo.out deleted file mode 100644 index 8a293c6816..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 2bb926ee08666d2f770b02d22884fb353d718b57ffd34c156dd70431c16b713c - initial_ast: df29046329d8b12827f7885dfafee8a88abb17450a6fef94f5c192d582c170a9 - symbol_table: 856843c2915ab5599b921ca4c73e2be480e792d719ba89f86425195ece44a654 diff --git a/tests/expectations/compiler/compiler/integers/i8/eq.leo.out b/tests/expectations/compiler/compiler/integers/i8/eq.leo.out deleted file mode 100644 index 42cd293d71..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - initial_ast: cb0fef3c670b24effcfe01867ad5997394daf09593f2e90f721070dcd88dbd6a - symbol_table: 7814b27104ef5de9ad3357bc67b519cf5642a0960e054e7419d46786fa6b4f08 diff --git a/tests/expectations/compiler/compiler/integers/i8/ge.leo.out b/tests/expectations/compiler/compiler/integers/i8/ge.leo.out deleted file mode 100644 index ec01592b67..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - - initial_input_ast: 2d8fb2c6466da29059eb6cc1d233fc87acbe4159c7e9f42783ac1900d4652bab - initial_ast: 308b765395012cf54485fea5aaf0d0c30709e893283637674269b795ec950923 - symbol_table: 653d6411a2d15feb4fce54c8f2ca038d0a5cc0e09226aa59d0a991228a438ec7 diff --git a/tests/expectations/compiler/compiler/integers/i8/gt.leo.out b/tests/expectations/compiler/compiler/integers/i8/gt.leo.out deleted file mode 100644 index c21ede51b0..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - - initial_input_ast: 795ae933e75a19aa21efbe4f8deb0931a0ae5b62c8a730df05b676190de5a70a - initial_ast: 7c3a35f6d43020992906b2987c7bf36afc0f7294551609cf8bf4d08a084933d9 - symbol_table: 93a2e7caea996e9ab13b40a775adc500eba4f3a329b617cc2e0759179b783ab1 diff --git a/tests/expectations/compiler/compiler/integers/i8/le.leo.out b/tests/expectations/compiler/compiler/integers/i8/le.leo.out deleted file mode 100644 index 6f31b6eb8e..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - - initial_input_ast: 14894f63af1f3e81f95caf62f8ffae47096064cddd59e55a96b85c9436c6ecf3 - initial_ast: e7cf5556592135d0f297a2e0f00c975b7687698a336319b50957a1e6012ecf84 - symbol_table: be6d3bc2c850155455878c8f4faa8089372643e126a5241892437882cadbc7cc diff --git a/tests/expectations/compiler/compiler/integers/i8/lt.leo.out b/tests/expectations/compiler/compiler/integers/i8/lt.leo.out deleted file mode 100644 index 11b9da8b90..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - - initial_input_ast: ec93c97f4993d2553199eaa4494be32270e7e60428374cc3a78b3c467458a24c - initial_ast: be23f46d9d959cf0fcc74fc8bc3ef332f4e85b544982986b72a74ff3af9428b8 - symbol_table: 4728ccd7dbbdc653e78c0ccfce8ad81762caf0ba516da7b9603a2543f0b89498 diff --git a/tests/expectations/compiler/compiler/integers/i8/max.leo.out b/tests/expectations/compiler/compiler/integers/i8/max.leo.out deleted file mode 100644 index a36c41ff5d..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 85c93894bc0241a6d82bfeda8828d664c83bde70155e6a0eb21bfe01ca32602e - symbol_table: 66106e69fbd949ea2dbfd4416f5d1c9227684eff438d1625c93d6bb4f8573ce9 diff --git a/tests/expectations/compiler/compiler/integers/i8/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/i8/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i8/min.leo.out b/tests/expectations/compiler/compiler/integers/i8/min.leo.out deleted file mode 100644 index fa6b543372..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 8745ea25fc61ad3db822e2fb1a4ca4098ef12bf2cf4477f4e7962ddf9f011cba - symbol_table: 98cceb8df5e7a49587ca9cd0c728a7ae7d31f69b41541d3f2463315c75d825eb diff --git a/tests/expectations/compiler/compiler/integers/i8/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/i8/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i8/mul.leo.out b/tests/expectations/compiler/compiler/integers/i8/mul.leo.out deleted file mode 100644 index 399f06b526..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b22a779f02dd4aac1d2c90081aa815018712cc8e9208e9b56251456c1d0fc989 - initial_ast: 2658ce56907ebd80cea3db992eadc797eba68c41ec626dac01f32639bf4eb01b - symbol_table: a5a3bb7ed8ca56503ecd767a1ca1a997d5f5b3a06106dedfbe78d04700d70052 diff --git a/tests/expectations/compiler/compiler/integers/i8/ne.leo.out b/tests/expectations/compiler/compiler/integers/i8/ne.leo.out deleted file mode 100644 index b7bee1db9c..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 387087e4e03168d09782d693bd8b288dd097f978e8470bf2d0fae6a18b0a5dba - - initial_input_ast: 4a3a1f1b5a3ec22bcd0cc41eff2473442e5d1650661fc9aaf0f08dda58d062e2 - initial_ast: d4166d094d27116439254b21da8fd34134b28363484ab9496913e0b8c2b47b12 - symbol_table: 4fb6658a07bb0a63f1da45790682548f3a9eea88a6453f4dc12971d80766f89c diff --git a/tests/expectations/compiler/compiler/integers/i8/negate.leo.out b/tests/expectations/compiler/compiler/integers/i8/negate.leo.out deleted file mode 100644 index c9cb4f7db9..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/negate.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 48011eb662fd0ab14d0bb1c77ee319c30114fb378809c0a880751cba5f721cc4 - - initial_input_ast: a81bc9a08945b82a022ae53773d357f3d1f8786309c073cb17fb087562b042a4 - initial_ast: df5ed0b1077084a4c8706a71cf7441611b2fc0741b2657235c2e84dfd1a0e58a - symbol_table: 22bc9cc7565226e1ad3280c58cd06f4035bf064b80496bf97989bf6519f81937 diff --git a/tests/expectations/compiler/compiler/integers/i8/negate_min.leo.out b/tests/expectations/compiler/compiler/integers/i8/negate_min.leo.out deleted file mode 100644 index c1c3957b04..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/negate_min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 79499af29661bd059f4bbd1997f99eb96552b6842e21911d82da6fc5c2e36dd5 - symbol_table: 480e1058cba976845e762dbcc1568635f4940fb87dc8e89da28b568f16febfac diff --git a/tests/expectations/compiler/compiler/integers/i8/negate_zero.leo.out b/tests/expectations/compiler/compiler/integers/i8/negate_zero.leo.out deleted file mode 100644 index ee0f3dee26..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/negate_zero.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 64cd0f3474a735f1a39a6797cfd15bd212c7aef403a38531467778ada9d71351 - symbol_table: dbe838d51c4237ebc843ac704d38d151682d6df925b8c46e681c3dde92b33f07 diff --git a/tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i8/pow_fail.leo.out b/tests/expectations/compiler/compiler/integers/i8/pow_fail.leo.out deleted file mode 100644 index 2ebf9503b5..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/pow_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [ETYC0372009]: The second operand must be a unsigned int but got type `i8`\n --> compiler-test:4:17\n |\n 4 | return a ** b == c;\n | ^\nError [ETYC0372009]: The second operand must be a unsigned int but got type `i8`\n --> compiler-test:4:17\n |\n 4 | return a ** b == c;\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/i8/sub.leo.out b/tests/expectations/compiler/compiler/integers/i8/sub.leo.out deleted file mode 100644 index 0263fe20e2..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e493649c1e8d82f8080eb428d5006045e1cc91e91ccf16fa9a67f5f78b29f568 - initial_ast: e13464b8a4a1622f47fffd20c6f8c39c7812bd0831aba01178153b55d41ea199 - symbol_table: 49ac09363ff46f225d86ff3aa73dc48ee921cf2f4c096ce111832903da6a9e97 diff --git a/tests/expectations/compiler/compiler/integers/i8/ternary.leo.out b/tests/expectations/compiler/compiler/integers/i8/ternary.leo.out deleted file mode 100644 index 3b4f925719..0000000000 --- a/tests/expectations/compiler/compiler/integers/i8/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 626d0af88ad79f131c83f117a6a78faf8414bbf4fe80326c298934ba49565bc1 - - initial_input_ast: 3838e2a3b3a7d4e9c0ac478113dfc08b2cc43c8692615ded04677a956104b542 - initial_ast: b9416ca68224aa29194a091a73353bdb24efc097c1cf991dea7a3eab2de44139 - symbol_table: 64f5be13cd1e5bad65c85910f051acff84a21cc1483dc8d013a70d4f274fd419 diff --git a/tests/expectations/compiler/compiler/integers/u128/add.leo.out b/tests/expectations/compiler/compiler/integers/u128/add.leo.out deleted file mode 100644 index 510d654dcb..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: d3082b5edd6d814cd5eba97f5cfee8cd6ac7c859b0bd6345152d07ff71c77704 - initial_ast: e4e1d70546dfe483ecf16d57945e3febbd19da7fc3f64c2d158e8c70b887c0b2 - symbol_table: 94c3952749ff384b298cc1bddaae404acf571029e7f6489b4eef469f19f62238 diff --git a/tests/expectations/compiler/compiler/integers/u128/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u128/console_assert.leo.out deleted file mode 100644 index b3ded58ef8..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - initial_ast: ecbc8484a3548fc10ab2e25aae6bca7b24b5010b972a161fb385ec0d7fbaca41 - symbol_table: 505948f27498d87c22e63417f71cf1f3047085a4cdb257ef7aedf3c86b238ebe diff --git a/tests/expectations/compiler/compiler/integers/u128/div.leo.out b/tests/expectations/compiler/compiler/integers/u128/div.leo.out deleted file mode 100644 index 5229b0d3bf..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 55766cfb9cd3036356494aed386f6369a46eaa459e732b4b125adc71cc9487de - initial_ast: 6d70edf319a5036a4004d3c3c6e8b01608b7e882d91f335b7c0dec725185641a - symbol_table: 678f356035aea39bec07a37d127fab99dfb8f8aaa118bf1454f3fb40e2943c2c diff --git a/tests/expectations/compiler/compiler/integers/u128/eq.leo.out b/tests/expectations/compiler/compiler/integers/u128/eq.leo.out deleted file mode 100644 index 6b660eb67a..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - initial_ast: e47f3796c64fdda060e19aa678de8af0a2956d41b9c88efc95276749bdb40c74 - symbol_table: 59a92879cd9e8632b6ad1780ce4f687f9b9b0b142c38b31586578918c41690e7 diff --git a/tests/expectations/compiler/compiler/integers/u128/ge.leo.out b/tests/expectations/compiler/compiler/integers/u128/ge.leo.out deleted file mode 100644 index 390297e8c2..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - - initial_input_ast: 75784559839daa43fb68b6c0cb92764cbd5c8f1240b91c92d85a28f514020833 - initial_ast: 827e5cc46b0fdd4d217c046e57af283a631f03a257452b34b97aca1b87aa4a73 - symbol_table: d62e5ca69883dfd4f502dd4b8ab0436e677a9871322a3cc33c0d51f3138760be diff --git a/tests/expectations/compiler/compiler/integers/u128/gt.leo.out b/tests/expectations/compiler/compiler/integers/u128/gt.leo.out deleted file mode 100644 index 5a85dd9b5d..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - - initial_input_ast: 1d133b7dd2d597ec021f43ae433fa5ff220337500455acd2265714eee6381ad2 - initial_ast: df9cd79c49062dde86e08031f53043d93799404903d97f68e1148198f4988548 - symbol_table: 4b855a9a384880ddddc5d93d16ae4e34c5b85a506426f89f3c545314cd58d86f diff --git a/tests/expectations/compiler/compiler/integers/u128/le.leo.out b/tests/expectations/compiler/compiler/integers/u128/le.leo.out deleted file mode 100644 index 567b587d43..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - - initial_input_ast: 2065df069397c90cd8c969b938bdca0867d1df06a37f8a7d7a49af96ea38019d - initial_ast: dc5a1d60acec0e8a0bd8ac4da8dbf50314802ba4abc75b69e5a8036b880e1ea7 - symbol_table: 3d7f361f2ce4e99acbc47dfef2480dec0ce298a27a34769ddb8c1813b6581024 diff --git a/tests/expectations/compiler/compiler/integers/u128/lt.leo.out b/tests/expectations/compiler/compiler/integers/u128/lt.leo.out deleted file mode 100644 index 7ce785ddf9..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - - initial_input_ast: 0c9b9da62df2b51ef9ebb33821a7ec04e9652ce4e9c21c5153d48f5855af806e - initial_ast: 119abb498a0b5214fa88b20b83c621728b722325c311a4b9095ee292a70fb94e - symbol_table: 3209a6ec1b0ac01f379965c80861af6d65fae8dfa0f20a726dfaf89e0ccb1cf5 diff --git a/tests/expectations/compiler/compiler/integers/u128/max.leo.out b/tests/expectations/compiler/compiler/integers/u128/max.leo.out deleted file mode 100644 index 9861096b24..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 236d3017dfc1cf965041253c04fb854461b39448f3eae307be991d45c098d38f - symbol_table: 4edd22a9c1a03a2c2bd62bb1d7d907e8afe5cdae6dbe0f8ac4711fd69bb5407b diff --git a/tests/expectations/compiler/compiler/integers/u128/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u128/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u128/min.leo.out b/tests/expectations/compiler/compiler/integers/u128/min.leo.out deleted file mode 100644 index cc2fb09ed8..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 40d6ad0c2bd53551e19fd32809afd7392603641c6408c1bde1d53029b506d6c8 - symbol_table: bf6b5da28a9adbc7dfb1b3b5aef006a6c040bb8eb94e142262611a131fcbec5e diff --git a/tests/expectations/compiler/compiler/integers/u128/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u128/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u128/mul.leo.out b/tests/expectations/compiler/compiler/integers/u128/mul.leo.out deleted file mode 100644 index e66167645f..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ca8e32e5d6116b1dcb308c569c4584297586cd605efe92b41ccad1975151eff4 - initial_ast: 113f8c2b15904292632fa1b1595a5dd1988001bfaf0ba8a4b3a1d4cb9535fbc6 - symbol_table: dd0098712d873cf92c367f89af907dad778d2b2b2f2e251d0eda2237be727c6c diff --git a/tests/expectations/compiler/compiler/integers/u128/ne.leo.out b/tests/expectations/compiler/compiler/integers/u128/ne.leo.out deleted file mode 100644 index 76dc03a90a..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: b5c6120ae963f4518dfbcf01566c85e1414ed347b18ca65dcbc03ff3addfb8ea - - initial_input_ast: a31b59bfd025f5562ede8f5e6f01ba3724dc9340e1798beaded0aee94682956b - initial_ast: 92df27cfda59130731bad66eeb592251d7e664bb2fa86b1dd59dc8dd7623673b - symbol_table: b6d4ce61a5c1ee27261f3609a47c6b27daa5b5206e1bff4d50fa5d53c283aad4 diff --git a/tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u128/sub.leo.out b/tests/expectations/compiler/compiler/integers/u128/sub.leo.out deleted file mode 100644 index cbea579f94..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ca31f79f44f6f99c64ba44c0e727428d042eb9368e222e1cd182db88cca34d09 - initial_ast: 0321e2d1eba2f636836f78a2d0e729cc025e9f3ea67542574c804c4622845502 - symbol_table: f5fc54506951419ceced5b81e17531ffe879b8665f340165ce00ee93a6375b0f diff --git a/tests/expectations/compiler/compiler/integers/u128/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u128/ternary.leo.out deleted file mode 100644 index db08d4352f..0000000000 --- a/tests/expectations/compiler/compiler/integers/u128/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 8e68c80562642f5f107fb42876a1a0bed112f771860a69222d65bd374ec8c7d6 - - initial_input_ast: d4fbdc7ebdf3ab8e4f3e42172cb039bd4fec87dc2ed0218e756b59af6334e3dc - initial_ast: 49825c8bf4c5f1ab4c5032ff70563384b9eb08961e8b1ab87d9200e5256e188b - symbol_table: c9775810bca18ac5d6894681231f4bdf595c637c970dbc90a23d32c8407ccd5f diff --git a/tests/expectations/compiler/compiler/integers/u16/add.leo.out b/tests/expectations/compiler/compiler/integers/u16/add.leo.out deleted file mode 100644 index 9a02c23af6..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 6f6d6764c925433e3966deefe74381d0fdd560c52a5cc48713e3c4dfb1c6c3a1 - initial_ast: 20246e906b0724847c1f313e849ca183da6f2cb8f327ad52f6cad54eb612d9cb - symbol_table: b773a3747693ac625d3346f79cc3787d155e81da2eef74e8961fa5c0b6beda9c diff --git a/tests/expectations/compiler/compiler/integers/u16/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u16/console_assert.leo.out deleted file mode 100644 index 0ec9301f02..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - initial_ast: 129c0fd5a3df9124a00f91abc2ddcf228b5bd01b6ea2ac277a3cfc3e5c517021 - symbol_table: 31ea54152de57df0f234b406c8f78d84cc20dc9b998f4712ce4ac733f22b9a45 diff --git a/tests/expectations/compiler/compiler/integers/u16/div.leo.out b/tests/expectations/compiler/compiler/integers/u16/div.leo.out deleted file mode 100644 index ef4ddcff40..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 366c095f1dc13d5327fec0236867df3dd4efed80fefc990b402455be221ae3ae - initial_ast: c7f8663c2e35a240f8cd40af952012e44860be93cf691e97c2720cab99e29944 - symbol_table: 52e163bd2142999e83b8c807c5f05d8f6dcff305472c4a4ad16c82d78be9823a diff --git a/tests/expectations/compiler/compiler/integers/u16/eq.leo.out b/tests/expectations/compiler/compiler/integers/u16/eq.leo.out deleted file mode 100644 index 3a61e26f9e..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - initial_ast: 3bba994afe74ff41813d814792c6bea23ce00b52eaf9c24f999d2a97d6333a63 - symbol_table: 2f35e5aa4269f54adddaa53477d4bd09d1e4a5d81068e61f5b6b5db001f5e316 diff --git a/tests/expectations/compiler/compiler/integers/u16/ge.leo.out b/tests/expectations/compiler/compiler/integers/u16/ge.leo.out deleted file mode 100644 index 955e41d65f..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - - initial_input_ast: 3af712fb74fec6f2a6a3025f447b4097ac848a663b809869684dd4e7c67cee94 - initial_ast: bb07a170668679fe07c1a41c4c7edd601b55d9659bacbb41e55adef5d347fdeb - symbol_table: 19060c1c44e418ecc282948f304fd19959c49857d1cd93dcd2d9bf423e250f2f diff --git a/tests/expectations/compiler/compiler/integers/u16/gt.leo.out b/tests/expectations/compiler/compiler/integers/u16/gt.leo.out deleted file mode 100644 index d0c4528591..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - - initial_input_ast: c5aaeea8372b4a20f0224a169e17873ce833ff051f2822638e96e0e5fae152b7 - initial_ast: b973b26e654b6b561094b5d80fc17ffb8afe773a6f338a36eb19a91a74210e6b - symbol_table: e832ccf84a5e5dd9881b57a5c31de1d81ccd04e6d5c260db71d7f951ce57bc55 diff --git a/tests/expectations/compiler/compiler/integers/u16/le.leo.out b/tests/expectations/compiler/compiler/integers/u16/le.leo.out deleted file mode 100644 index 92570d25be..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - - initial_input_ast: 5e4ddfaff750bb3594818726ec94c8bfbef36dfecfbfc9b5e7ae9e08ff5b5739 - initial_ast: b285cc3429a247bb616cec8b1cef77f4f2da042898fa66f80952496b09b3f9db - symbol_table: 25b8f9d647642615b54428c2f0ce4e483459712ca7d82329a680b49e4ae7f22f diff --git a/tests/expectations/compiler/compiler/integers/u16/lt.leo.out b/tests/expectations/compiler/compiler/integers/u16/lt.leo.out deleted file mode 100644 index 2b4518828e..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - - initial_input_ast: 2042ed00f53e2028130ec5d2d04f4138cddae139face997cd49342b7dd79614f - initial_ast: 8010e3d578a0a42f4e1165e51e46041c6f9039aaa526c72165a72ed2cea4c577 - symbol_table: ef70c4f5b504ad5c38821e26a2d6be275e2de4148dfec29b73d3b1eaba5044b1 diff --git a/tests/expectations/compiler/compiler/integers/u16/max.leo.out b/tests/expectations/compiler/compiler/integers/u16/max.leo.out deleted file mode 100644 index 186179b7c1..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: b3f1ab730f6a8bec88ce1684856a373bc98d574ec875352fd72d5c102161df92 - symbol_table: 69f776332dcb4ed2daf222bb7796116d60df76d7bba3686891fa352fcfbe1fcc diff --git a/tests/expectations/compiler/compiler/integers/u16/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u16/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u16/min.leo.out b/tests/expectations/compiler/compiler/integers/u16/min.leo.out deleted file mode 100644 index 5aa562fa25..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 7ddde153ed675096ff4d17849c055eec4548abe098837fbbb2df25e3be9eed24 - symbol_table: 406df287bf9772b5916e8effb291efe4c4c7b182f25e9ffdc8d8a99abcd96d85 diff --git a/tests/expectations/compiler/compiler/integers/u16/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u16/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u16/mul.leo.out b/tests/expectations/compiler/compiler/integers/u16/mul.leo.out deleted file mode 100644 index 47a3839a9e..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 27db318ee991561d9cebe27f27dceeec5c9c8a63ab462313e344e3c1158aa758 - initial_ast: 1f76a40705982a61b4d014e7bc91b4da748c41a48fd0f66c388c88eb33eeebaa - symbol_table: f7142c34960bdd46528d63022dc60428b00ff0183d2c480ef72a8c8b61a13127 diff --git a/tests/expectations/compiler/compiler/integers/u16/ne.leo.out b/tests/expectations/compiler/compiler/integers/u16/ne.leo.out deleted file mode 100644 index b4dc1e2bfb..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: cb0e4f51087e3221ca9d60ad25194233446b1827dcbd3af17206be357599915b - - initial_input_ast: 5e74a501b8e15c71c521d8a3d838bfe91ce8f37fa9bdaf79342c755564ea086a - initial_ast: e655135bbc414f50662dc8964849795a14e3c1fbf110ed0d93f428256e20337f - symbol_table: 1d5a378efa184ef720922e0431978a779b5258838d7daaa4447d773de74b5726 diff --git a/tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u16/pow.leo.out b/tests/expectations/compiler/compiler/integers/u16/pow.leo.out deleted file mode 100644 index f1cca1cf70..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/pow.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3454670db4ae2ae2274a879a456ea7b2ff6b89d119686417577495d5bc7a2d1a - initial_ast: e50a17ea461e6bf067a2b2728f73104065b911e47766a959d444b4a5d50dcf9a - symbol_table: 615d122bb3c4eabb96bb46044fde38d0ea81d56fe4ea0db9adbcdb74fab95258 diff --git a/tests/expectations/compiler/compiler/integers/u16/sub.leo.out b/tests/expectations/compiler/compiler/integers/u16/sub.leo.out deleted file mode 100644 index a63eda1d25..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 1e4b846165f77f1b45c8340f097596100a0513f2e09fb7847143c693dc4ab378 - initial_ast: 2112ddaa6ca4f2b78137f7d5ae6834c00303bb61fd8c7f6a520f34fbd73ffcdd - symbol_table: bc40ab38ded0949abbd0d2b28ad41957043f09fadcd1522424674bc795fc4027 diff --git a/tests/expectations/compiler/compiler/integers/u16/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u16/ternary.leo.out deleted file mode 100644 index e31290cc1e..0000000000 --- a/tests/expectations/compiler/compiler/integers/u16/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: a6d199a58056771f9b6da733f16030fe0b68f0d974ed0dcd093bec41a98063d4 - - initial_input_ast: c91db248acde5649f26d3d94264f944c1988fbecd352c71419f0021adc3c46f3 - initial_ast: 0d16aad83164ce514af359ab754b7974565c97a1253d8a539e37380e7b1250c9 - symbol_table: df9448449a94c3bc09affc5870c1749d4826072037d1fbe156feab39438a7bec diff --git a/tests/expectations/compiler/compiler/integers/u32/add.leo.out b/tests/expectations/compiler/compiler/integers/u32/add.leo.out deleted file mode 100644 index ae4a8de3c4..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7900982a0b59b180658c9c973f14c0f43f64e6c26ccf3dc72ccabbe97e6f7c1c - initial_ast: 6f17e86164961b0f5dd63f426dfe5a1c7097b7042ce9c80d9cd3e2b3c7918ab2 - symbol_table: 25778e3ab23f629380da9c2cdb6f1e865643e9361fd650eabdf6768375fc0717 diff --git a/tests/expectations/compiler/compiler/integers/u32/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u32/console_assert.leo.out deleted file mode 100644 index 488c0346bd..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - initial_ast: 910eb749b9f449162c71e28c281111b11a0eddd0b51a5c3ac925217620257d56 - symbol_table: 8f03b54e860293c2c5fd9b3bb1199e1691e582712f7f5e5f462c1f7a2fb0d5d1 diff --git a/tests/expectations/compiler/compiler/integers/u32/div.leo.out b/tests/expectations/compiler/compiler/integers/u32/div.leo.out deleted file mode 100644 index 854a45beb6..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 1899a411753778ecc51ee4565405c95f5dc93e7dfc084268332a034da1a4e22a - initial_ast: f0756849f355e001af5182cb5b788cc796745499258548e421e5187e177f275f - symbol_table: 48c50aee2e6f9f2e525cb743866ce2fc9119566076cd63d30cdb0398f328a4ba diff --git a/tests/expectations/compiler/compiler/integers/u32/eq.leo.out b/tests/expectations/compiler/compiler/integers/u32/eq.leo.out deleted file mode 100644 index d0c1a7b010..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - initial_ast: 727e4ea81a78093866181fe291c97cc7dd006287a09f808402cb6c79d5ce1654 - symbol_table: e081f2d0bc92a375a18466c9298d728d8d2ae35a67fbedeb733ea4cd5a12409d diff --git a/tests/expectations/compiler/compiler/integers/u32/ge.leo.out b/tests/expectations/compiler/compiler/integers/u32/ge.leo.out deleted file mode 100644 index 2d3a9fd3ea..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - - initial_input_ast: 13faf6aa4d9e76c04acb1872465f0691ef01d8d604a1931bcef5a0f3337347ea - initial_ast: a5febe72565e2a143d4f2069cc6e5f3a75d3ccdf2e7f4a4af66d3600b9be26fe - symbol_table: 5ad082f22aed2d221d142cb3538a67c5814214bdd549b3514a369dec0b8b7922 diff --git a/tests/expectations/compiler/compiler/integers/u32/gt.leo.out b/tests/expectations/compiler/compiler/integers/u32/gt.leo.out deleted file mode 100644 index 96dfc03958..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - - initial_input_ast: 15be215647f18a1a931f198ce7d30f6805f9bac29a2b24bf7e4abff24e5d20be - initial_ast: 85dd004fda33533c3622967dd7943343582f3904892b17a97620b98818ed18b9 - symbol_table: 6a754bcc8e62a2b8e6e27fbe48a36cb72c99d81ce09e594ebc3125e402f08d0c diff --git a/tests/expectations/compiler/compiler/integers/u32/le.leo.out b/tests/expectations/compiler/compiler/integers/u32/le.leo.out deleted file mode 100644 index c6d9b3ded1..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - - initial_input_ast: ba4710f02a41fe30785f0bed4ef61b919be8233d0397a57e6bec110a83e7bae7 - initial_ast: 3fa3d0d0cf219277d2a244dfe54616d9874fe5db85ee575cd588f2cb941f9b3b - symbol_table: e621662548365800e2cad034bcad6541940af5f5acc36dfa477554c1e72acc4f diff --git a/tests/expectations/compiler/compiler/integers/u32/lt.leo.out b/tests/expectations/compiler/compiler/integers/u32/lt.leo.out deleted file mode 100644 index 398d266599..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - - initial_input_ast: ea18893ff821300d48c4a7bafc0bf0b3091db8d0afa6a6061f4da66c9230befd - initial_ast: b05b37054191d71799f0e1f5acbf281d12a8e25bf7cd9c81fe4af2ba66bb85e2 - symbol_table: 92fe7f7727a3bd4d14e36b28ec549f7348b898845534e872faaba4e362902f0b diff --git a/tests/expectations/compiler/compiler/integers/u32/max.leo.out b/tests/expectations/compiler/compiler/integers/u32/max.leo.out deleted file mode 100644 index bb7598584d..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 3ee32e9424c5f287e7dcd311cd8962fa6da2506a9804b9358d828292152bf40a - symbol_table: 6cb33ae7380c96471000854378fc11a0ac0986e2f0cc82d0b67157ea1f66375e diff --git a/tests/expectations/compiler/compiler/integers/u32/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u32/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u32/min.leo.out b/tests/expectations/compiler/compiler/integers/u32/min.leo.out deleted file mode 100644 index 02eee08677..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 9312408c86bd423f22addf6c9f8359743ce80ebe0f78be275cc533ded55b5a7a - symbol_table: ae53f8e2991eb6e1c5411e9323fe1f0a0362ed74ded446743ac7cc7b6472c685 diff --git a/tests/expectations/compiler/compiler/integers/u32/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u32/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u32/mul.leo.out b/tests/expectations/compiler/compiler/integers/u32/mul.leo.out deleted file mode 100644 index fcc01b0dcf..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3a833192a9e0c041f1f7064d4d270e04bf2b178a2e656fd8c6f8cf5d391057a7 - initial_ast: b4f789d7742023756857cd3da5560976f63adac5d0ff178cdf74397e8f597915 - symbol_table: a361156a49b7611d0e4b3e231b073210bc8a19a6255b966c59d3b5e1d2f51f06 diff --git a/tests/expectations/compiler/compiler/integers/u32/ne.leo.out b/tests/expectations/compiler/compiler/integers/u32/ne.leo.out deleted file mode 100644 index bd123d3238..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0d8bd4140882c8076fc6f31339195bd136210fa8468de7232564be89d208c570 - - initial_input_ast: e729164124bc010537c8d2b51bc78e5de23cca4b79b56fa12845fdbf6e9fdf2b - initial_ast: 37f1d76e799523048b115f8189834f2e678305837b67fe13b5f5e605c03e9f6c - symbol_table: 737d38e0113d508ac46829d2233125443e36a78e22ff8614769821b64eb16227 diff --git a/tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u32/sub.leo.out b/tests/expectations/compiler/compiler/integers/u32/sub.leo.out deleted file mode 100644 index d252983a0b..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7a916ba3711c3e422e5a57af380dc8768fd68e0c407d6737a5848e83432fa2a4 - initial_ast: c8c2b4028587a62f1404c9298e16883c2b3326f5132d6b6472157f658f247172 - symbol_table: 7b6d3ffaf2dba4eb24b64929c9a2c756e966e822f3d3f45a05113963f22d76fd diff --git a/tests/expectations/compiler/compiler/integers/u32/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u32/ternary.leo.out deleted file mode 100644 index fbb627f7e3..0000000000 --- a/tests/expectations/compiler/compiler/integers/u32/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3cac85ec032e1af74a50f0be52f121512d2548e0db2971b227f7d286935968cd - - initial_input_ast: 31df4f8912365b8afba7a0bde5d29aa2d8ceb4d2aff5ac1e3b230777f124adbb - initial_ast: 54bf1b2212f408693030bc58dab3c189d09a4b286348925179853fac652572c1 - symbol_table: 2f27d6dc05c17715b3c45e9ee6e501bfaec046241110fee1209904c92b2aa434 diff --git a/tests/expectations/compiler/compiler/integers/u64/add.leo.out b/tests/expectations/compiler/compiler/integers/u64/add.leo.out deleted file mode 100644 index 50849fc963..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e716ba579037b58227d1e433d4304f99f2b2eef51f88fdc8b3086a482ee7771e - initial_ast: 437ed1d3a2f85fc715a4094f9336df301ee7fe1ba9d63e06a1662c97c3f07345 - symbol_table: c1c13f861658664abf92e0a1fc7bdc65c51458a53b7bc3810fd624bc3893d5ff diff --git a/tests/expectations/compiler/compiler/integers/u64/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u64/console_assert.leo.out deleted file mode 100644 index 9c79a4e1bb..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - initial_ast: cc17de8b54b55ee1cd6dfe70cd0e4635899e1313611a73251266b81fe1d1f959 - symbol_table: 7753ab45670bf14beb7642f47b735da9c08b49839bc42ea6827bcdf965cfe1ed diff --git a/tests/expectations/compiler/compiler/integers/u64/div.leo.out b/tests/expectations/compiler/compiler/integers/u64/div.leo.out deleted file mode 100644 index d87fa2b99c..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 9f6987350c5148b7587ed453e96e575bb967b5115a1f0648764bce5b4d977c46 - initial_ast: b1506f24dec921f4767cad398fb94c42ad773be1a034427e8377a4ffca6fd5cd - symbol_table: 96d922c665c2723cb7ca22f4f416dbf9d2d76f07ce2d4ce7b3c1becc41ebc9b6 diff --git a/tests/expectations/compiler/compiler/integers/u64/eq.leo.out b/tests/expectations/compiler/compiler/integers/u64/eq.leo.out deleted file mode 100644 index 8b556f14d1..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - initial_ast: 0895f12f7a9102ae711b05156078d0c06db88469c1134f1afaae1571f6d55dd6 - symbol_table: 89b3e14b1880e4d3ce547087df3229f7c0b20a40c6c55130b9af3f17af90fc01 diff --git a/tests/expectations/compiler/compiler/integers/u64/ge.leo.out b/tests/expectations/compiler/compiler/integers/u64/ge.leo.out deleted file mode 100644 index 0a50a218ed..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - - initial_input_ast: 835fabf6828b0a76d3cef59ec709a9e084e7d05950a2307f51af0c4a7749c401 - initial_ast: 540d8224f3c5b190acec728377d6da5c4e3697e905f445664ed0cb5ff5e798af - symbol_table: 8f6927e31fdde67cc1f67d8f2d214bf456a1fce6ebee106656b33f717aa770f7 diff --git a/tests/expectations/compiler/compiler/integers/u64/gt.leo.out b/tests/expectations/compiler/compiler/integers/u64/gt.leo.out deleted file mode 100644 index 11a0bb2914..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - - initial_input_ast: 7677cedf6c5a32b8a4618cce2a2b2cd638b72a527fdce50167e73e1eee416861 - initial_ast: 6b7a4afc593bb8518e8f8353d7da7c33fc20d07e1c1e45cc52d5a8762410fb3c - symbol_table: d3fbb159afcf5d889f310c0b277b588def80246861c318632d9416532c84901e diff --git a/tests/expectations/compiler/compiler/integers/u64/le.leo.out b/tests/expectations/compiler/compiler/integers/u64/le.leo.out deleted file mode 100644 index bedc10499f..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - - initial_input_ast: cf12465991469b1b836b27e59ea32d80211248e0514092b5971b6622b19d513e - initial_ast: b19797e2966b3d5047b194ae9eae5c15ca5ad0ff05d1cba63c0c3c0cd4cd42b2 - symbol_table: 9c75212ccddfab209e82ced0636610b9c0b225af3a17badeb6d12b03200f9aa0 diff --git a/tests/expectations/compiler/compiler/integers/u64/lt.leo.out b/tests/expectations/compiler/compiler/integers/u64/lt.leo.out deleted file mode 100644 index 33f960058d..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - - initial_input_ast: 4d94a5cd71d7a286a523db4c023a5cd8550750e443e930448d09e115aaa279a2 - initial_ast: 1d70859881833b2980e1f98a742003e40af8e8ae6080fbf33866ef7c12a3e64a - symbol_table: 22be10247e5c5f58c07b5ea7ed1dd2093561a57ef3a0c54e26799398d2dd8740 diff --git a/tests/expectations/compiler/compiler/integers/u64/max.leo.out b/tests/expectations/compiler/compiler/integers/u64/max.leo.out deleted file mode 100644 index e83b115ba2..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 01b9771e78ab5bba09192e745dc5ffb2d6efcbe8a7c9cf95f9ff2eefe40e3f29 - symbol_table: a7e47aec9a839e089b64e17d3dac5e110bccdf3b97b69d5e8a1a64e4a32138b2 diff --git a/tests/expectations/compiler/compiler/integers/u64/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u64/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u64/min.leo.out b/tests/expectations/compiler/compiler/integers/u64/min.leo.out deleted file mode 100644 index 1571ac5128..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 7424362afeae0eb87938c932dbf8ed126779d6626fbb310a937f01e5e6a43b7f - symbol_table: 9579cc0870b2c20e1ce3e47deecb81a0925d4e883403626870b125c10eceb59c diff --git a/tests/expectations/compiler/compiler/integers/u64/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u64/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u64/mul.leo.out b/tests/expectations/compiler/compiler/integers/u64/mul.leo.out deleted file mode 100644 index b0ea20d55b..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 48c6ce857f2c1b7e105743975c53672d2d53dac5d48b006fbb7b98b7542dd5bb - initial_ast: eb1c470f2407c45abc32d8f98385af6f9e8b61a22f42f7d9cc479d770018551c - symbol_table: 77c0adeb4d9f6bb7562a9eaf09c84d5fb4459ac432fffb77c71510cb77991662 diff --git a/tests/expectations/compiler/compiler/integers/u64/ne.leo.out b/tests/expectations/compiler/compiler/integers/u64/ne.leo.out deleted file mode 100644 index a8fcdce5c4..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0293b081f0efa060d6d6be2a41792af71a74b1a894832aef14166c5bbd242e2e - - initial_input_ast: 96b7d29d08b195d28c72abc7cda1febaf19b1a2d1ae660f786f3e5e66041ec5e - initial_ast: 36730570b95346a3c5bbd2f7bba8d9ea8c0a0f27f999cf47bdaac8fb4e2944f1 - symbol_table: 3243923d5a69e9bd20a247e6749255adaca834c5277061df09a8777ae0f34d2d diff --git a/tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u64/sub.leo.out b/tests/expectations/compiler/compiler/integers/u64/sub.leo.out deleted file mode 100644 index f48f2fa3ae..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 945f0553365bda391e02276a38539f1361f6d5edadcb1673832b551528214ce9 - initial_ast: 598a8893e0e64ce6a7c3e66c6a6164dcaf856c414954d6835d2b494f48dcc7d0 - symbol_table: 48f44fca9b490df0387ccac24c8e4805e634896b968559d35645288cdd720562 diff --git a/tests/expectations/compiler/compiler/integers/u64/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u64/ternary.leo.out deleted file mode 100644 index 71c79c06ba..0000000000 --- a/tests/expectations/compiler/compiler/integers/u64/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 02c22a2532fd696c3f0b5e59efff10fb7f423129f2d238a845ab20e296516b1c - - initial_input_ast: 11c83531b97e6863b4dd609246fc11e071538831bd7f875d83c576068832da5f - initial_ast: c54869417af036645fdef9901883e8156638ddb6811ca7c1412a03cfeb226c60 - symbol_table: 3e3b389b28b166b85423e398f80698529dbb1174326b121bb67ca4921c714aa4 diff --git a/tests/expectations/compiler/compiler/integers/u8/add.leo.out b/tests/expectations/compiler/compiler/integers/u8/add.leo.out deleted file mode 100644 index e36e6f4351..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/add.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: bec6adce6675e69f58bd54bfd2d89ed483f5e6bb722ba9ba3889f200aaf830d1 - initial_ast: b7dd798a6c169b0e90da360b86a56644bca050365f6d3f59f20f6b58df88b336 - symbol_table: b49bebf927e5e92ff081f5c76a421532e86ac349fe85391e838879928e58c9e7 diff --git a/tests/expectations/compiler/compiler/integers/u8/console_assert.leo.out b/tests/expectations/compiler/compiler/integers/u8/console_assert.leo.out deleted file mode 100644 index 4d99371cef..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/console_assert.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - initial_ast: 0e5b41d2d779d29056c60c35f03c863883fb4ff50cf3833b2f40960757b6adda - symbol_table: c57bb0b106be07bd5f495f1623ebeb3c455437f59d583d3790cf036253a8e363 diff --git a/tests/expectations/compiler/compiler/integers/u8/div.leo.out b/tests/expectations/compiler/compiler/integers/u8/div.leo.out deleted file mode 100644 index 66343a8ee3..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/div.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: e03a50836125b20c3b6f5c0616054b65a694fb183a135db8c600cc84a4e07636 - initial_ast: 01ffcd880e5569626d16ac43de9db56cd4ee17a01e570d45815277b003fbb01e - symbol_table: 8f1027beea373169e2bb06491736fd4099425a4f4d3f8fcb612462982cdb0d05 diff --git a/tests/expectations/compiler/compiler/integers/u8/eq.leo.out b/tests/expectations/compiler/compiler/integers/u8/eq.leo.out deleted file mode 100644 index 522157508e..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/eq.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - initial_ast: 8a55d90966d19eae8d35e12c03868d2fb2331b36c799253cd225c3dd92db3fd0 - symbol_table: 16076a22d3c0df71ab90df94e1ecb26ad330c02fe2536f0b5a5d1fc8a11e05c5 diff --git a/tests/expectations/compiler/compiler/integers/u8/ge.leo.out b/tests/expectations/compiler/compiler/integers/u8/ge.leo.out deleted file mode 100644 index 704a349720..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/ge.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - - initial_input_ast: 182fd9244fdf4702346b84168c32db25759624daa7904c9ea6b081564864e53b - initial_ast: 201c2596f189ca81cbb8c1155f13fa5d6764bac8c4a24f1ea01ef80e26882336 - symbol_table: 1cf9efe37c13b89e2528c0257225192259dabdbb7df99c98d4ae31e74681eefe diff --git a/tests/expectations/compiler/compiler/integers/u8/gt.leo.out b/tests/expectations/compiler/compiler/integers/u8/gt.leo.out deleted file mode 100644 index 4dcc63d0c1..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/gt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - - initial_input_ast: c63bf7f9f9b98ca445f4a3fd4a419ea5f40041977aad5ff111f8319d90c25e2c - initial_ast: a101c00dbf562bb0f5092240492f57859d481f66709fa7de9d694b5a7ffe99d9 - symbol_table: 0f19f2bdf03fa3f98d3b1b849195dee1ee2e23c968c8beab1d1106e2be74da19 diff --git a/tests/expectations/compiler/compiler/integers/u8/le.leo.out b/tests/expectations/compiler/compiler/integers/u8/le.leo.out deleted file mode 100644 index baf206aca5..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/le.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - - initial_input_ast: 9794cb4036879a54fc3a9cc80507c19267ed41731b2faa7a7bea8ba9226a8452 - initial_ast: 6bd48110a2d4e17a18288fd55e786fe97b3917010460b0b7aa53a9b44f043ab8 - symbol_table: 23d6582231481f7fe9071618585c6e81ff6f7571059cc4a2fc6deab71292ed43 diff --git a/tests/expectations/compiler/compiler/integers/u8/lt.leo.out b/tests/expectations/compiler/compiler/integers/u8/lt.leo.out deleted file mode 100644 index 062844327f..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/lt.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - - initial_input_ast: 9a836e6f97b932a81455f105d6db0165d862ed190631b806e364f954b7d771f4 - initial_ast: a972ae2f70671860f9806aeb16f18ca23c4c1f9cbb8c7dcf7b780919802f58b0 - symbol_table: 929c17fba43bfee01ec4b836cbbd8bd610e30bdf4294ececb75f247fdc8f2bcc diff --git a/tests/expectations/compiler/compiler/integers/u8/max.leo.out b/tests/expectations/compiler/compiler/integers/u8/max.leo.out deleted file mode 100644 index 83ec7c105d..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/max.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: e95ec61a3ab9930a26c2de8e8f184efdc67a2d72f2673db3e1d2c701efc6fbf2 - symbol_table: 9ff7adccc170c1428f3844c390027a8f9641c9f8a76ce5f0024b2c9140f45d93 diff --git a/tests/expectations/compiler/compiler/integers/u8/max_fail.leo.out b/tests/expectations/compiler/compiler/integers/u8/max_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/max_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u8/min.leo.out b/tests/expectations/compiler/compiler/integers/u8/min.leo.out deleted file mode 100644 index 388f95b15d..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/min.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3674d8249023145121ff35eb4d9e59b0ce79cda7e17f9f98b5dbaa6ba4f80cf2 - initial_ast: 287f0724a7c0aeba2473e7a28d2aab9d76e5810fa9a8ca8f6e1c5e98de496f0f - symbol_table: 2dd055524a0d6eefa18c3248f40c0b7934080c4ea0f8052c2da2191408d2fea1 diff --git a/tests/expectations/compiler/compiler/integers/u8/min_fail.leo.out b/tests/expectations/compiler/compiler/integers/u8/min_fail.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/min_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u8/mul.leo.out b/tests/expectations/compiler/compiler/integers/u8/mul.leo.out deleted file mode 100644 index 0a2c5de1b0..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/mul.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: df3fa1351cbc1798f527ff81eeefbd149fc841f2ee50695e5215cac690af7f1a - initial_ast: c2c0afa3fa10147ba3eb20c98fd5f5159977944992325c3a0300289510911c4e - symbol_table: 89129eab1ef21cc91784b4c5d81e68012f35800778eac358efb24d56c20ef295 diff --git a/tests/expectations/compiler/compiler/integers/u8/ne.leo.out b/tests/expectations/compiler/compiler/integers/u8/ne.leo.out deleted file mode 100644 index 2080953738..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/ne.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 3e4fef1af04fd43972dc710e4b0e67e1b5f3b03cf0e8d1373cedfb0426b5adb7 - - initial_input_ast: a6fd523cd4910b0a48a62b6ec8935805f10fbc041cfd5a8aed6899bcb3911788 - initial_ast: 3c4023f1a4fb93b562ee7202c6350b73e352a75deaf4a5e74648d904e7a32cac - symbol_table: 299fff014274a3fef18437e73adb0f912b453399e6149db11763f4495c735b23 diff --git a/tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.leo.out b/tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.leo.out deleted file mode 100644 index 6072996488..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/no_space_between_literal.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:17\n |\n 3 | function main() {\n | ^" diff --git a/tests/expectations/compiler/compiler/integers/u8/pow.leo.out b/tests/expectations/compiler/compiler/integers/u8/pow.leo.out deleted file mode 100644 index f0724fe1d1..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/pow.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: ec515007a1c2cbe83aff0029932fe56e397a4ca82f99095abcc7fc25f4e0723f - initial_ast: 32f692f5afbbadfcd3255f61ce5d63e102d570529ed6bab0c00250f824ff01dd - symbol_table: 73fe24ea2c931a693a817e2b4606430192bc0214fdb762f6db260add7ddb22d4 diff --git a/tests/expectations/compiler/compiler/integers/u8/sub.leo.out b/tests/expectations/compiler/compiler/integers/u8/sub.leo.out deleted file mode 100644 index c750730e23..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/sub.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 74c3de795f0d6a8948600e20913d0798ed2017e11c2dd7bcbf2b363a9a384325 - initial_ast: 2f52e4feba81598590c41cc2d8d101669bf358f32b80716e9442997d3beb5bf5 - symbol_table: ebe63398d3809fedaa38f4ada4fe18022296680cdc7d30fbcd16aa491134749c diff --git a/tests/expectations/compiler/compiler/integers/u8/ternary.leo.out b/tests/expectations/compiler/compiler/integers/u8/ternary.leo.out deleted file mode 100644 index 245131a196..0000000000 --- a/tests/expectations/compiler/compiler/integers/u8/ternary.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7362a319261fbc9de1aec131fdd81c6c720a27871817ce18155e8c767f9f615d - - initial_input_ast: d71995f6949dab10ec87aec16bf99544c4dc9f5a492fceaef1d171f87229a2bc - initial_ast: 31513ce6226efe32897a6f626ebcedfe0c07d9881173d16b9cb1b9684c015f93 - symbol_table: e80a26d28a4f36e79f1a113fc74cfc7bcf32cd54e21ba5af553b738a906de381 diff --git a/tests/expectations/compiler/compiler/mutability/cond_mut.leo.out b/tests/expectations/compiler/compiler/mutability/cond_mut.leo.out deleted file mode 100644 index 7886975ca3..0000000000 --- a/tests/expectations/compiler/compiler/mutability/cond_mut.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 534a7a2cf337da1dc9ea3d25dacec6390f4cdbf6b5961b481564abc44fff1442 - initial_ast: 8f2221b11734ed4889d70e448bb3a6197146403f117d3ba015c611261aadf0df - symbol_table: 2945f5477f1985cd91fc0238eda0d96ee5b5e064b5579af5e37cb8d676dbc3cb diff --git a/tests/expectations/compiler/compiler/mutability/function_input_mut.leo.out b/tests/expectations/compiler/compiler/mutability/function_input_mut.leo.out deleted file mode 100644 index c730fbd4fc..0000000000 --- a/tests/expectations/compiler/compiler/mutability/function_input_mut.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 534a7a2cf337da1dc9ea3d25dacec6390f4cdbf6b5961b481564abc44fff1442 - initial_ast: 0ee6dbfb6d2780de8853573772fac4f757bd7c33feef0e2e7e8d7518107a9e70 - symbol_table: 27a1e162691d8e54a3c88d50628e4d865bba598acdc5916aed7edf60d79e68d1 diff --git a/tests/expectations/compiler/compiler/mutability/let_mut_nested.leo.out b/tests/expectations/compiler/compiler/mutability/let_mut_nested.leo.out deleted file mode 100644 index 85b8f9fc76..0000000000 --- a/tests/expectations/compiler/compiler/mutability/let_mut_nested.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 534a7a2cf337da1dc9ea3d25dacec6390f4cdbf6b5961b481564abc44fff1442 - initial_ast: 04991c563333ddfd77104bef3d033222a0ea68f0ed97822dd0120adcae1e2eb4 - symbol_table: 31926a79e803f137c80e1ee8698b50261c831ee6e83f1b09895e3d2c2b09113f diff --git a/tests/expectations/compiler/compiler/statements/all_loops.leo.out b/tests/expectations/compiler/compiler/statements/all_loops.leo.out deleted file mode 100644 index 0477c00ee5..0000000000 --- a/tests/expectations/compiler/compiler/statements/all_loops.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 0431e7bfd2506632ab038adc1a10c45951fc1f90f1b61930228ed3022006d315 - initial_ast: 81665afabc473c27c41707ed83231dd872813d6c4bcbcb6cb0923261eb9b006c - symbol_table: 3f85b29e75222f03e70b83cbc2399746f23dbbeabd857acaa486db9e8076c03c diff --git a/tests/expectations/compiler/compiler/statements/assign_ternary.leo.out b/tests/expectations/compiler/compiler/statements/assign_ternary.leo.out deleted file mode 100644 index bc2fcb5fec..0000000000 --- a/tests/expectations/compiler/compiler/statements/assign_ternary.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> compiler-test:3:23\n |\n 3 | function main(x: u32) {\n | ^" diff --git a/tests/expectations/compiler/compiler/statements/block.leo.out b/tests/expectations/compiler/compiler/statements/block.leo.out deleted file mode 100644 index fdb195b471..0000000000 --- a/tests/expectations/compiler/compiler/statements/block.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - initial_ast: 0ab9aaa950215c96b207e236e15857a4d0f66a137dd2c44071be7d806b0850b6 - symbol_table: ce729d406fca8cbf2bc8fea55010b163168705232be0ce9edaeff1c187269d54 diff --git a/tests/expectations/compiler/compiler/statements/chain.leo.out b/tests/expectations/compiler/compiler/statements/chain.leo.out deleted file mode 100644 index 564535f91c..0000000000 --- a/tests/expectations/compiler/compiler/statements/chain.leo.out +++ /dev/null @@ -1,10 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - - initial_input_ast: 15ea6655d9cdaca2e4e57a62d0959b832e56ca7139e38bc3e3c16ad8965ee681 - - initial_input_ast: 184db3c907c6636bf2bfe0499706c93c40901d50567d9c36bfc0219fd16c0e69 - initial_ast: 3d3e731e5647663de949e10d11bbf9941ba7b81e7a8ca91049b2f30e798c1a48 - symbol_table: 68eae40307674c0cfac9f10f03becf84fbfe9da68c0cac435d54b775e0c4618a diff --git a/tests/expectations/compiler/compiler/statements/duplicate_variable.leo.out b/tests/expectations/compiler/compiler/statements/duplicate_variable.leo.out deleted file mode 100644 index f72840a998..0000000000 --- a/tests/expectations/compiler/compiler/statements/duplicate_variable.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Compile -expectation: Fail -outputs: - - "Error [EAST0372015]: variable `x` shadowed\n --> compiler-test:4:2\n |\n 4 | \tlet x: u8 = 1u8;\n | ^^^^^^^^^^^^^^^\nError [EAST0372015]: variable `x` shadowed\n --> compiler-test:4:2\n |\n 4 | \tlet x: u8 = 1u8;\n | ^^^^^^^^^^^^^^^" diff --git a/tests/expectations/compiler/compiler/statements/for_loop.leo.out b/tests/expectations/compiler/compiler/statements/for_loop.leo.out deleted file mode 100644 index 2cd458b83e..0000000000 --- a/tests/expectations/compiler/compiler/statements/for_loop.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - initial_ast: a3eb3afb0d01504a949f76baa11f119955aa29bc9e57ec0b8823b48c3b1e45e7 - symbol_table: 69da3b565e7a6a957b957fa0726be3d3f849cd1c71d5d1d5bbbcf1c5620b1c07 diff --git a/tests/expectations/compiler/compiler/statements/iteration_basic.leo.out b/tests/expectations/compiler/compiler/statements/iteration_basic.leo.out deleted file mode 100644 index 6dc876466d..0000000000 --- a/tests/expectations/compiler/compiler/statements/iteration_basic.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - initial_ast: 63565858ee45b7520a60fd504151e2deb023601da8289a8fa25841488fbe7602 - symbol_table: 210a8b745bd95b8350226242f6b51656f817fadb90c768564b0c6f4f8dcfa706 diff --git a/tests/expectations/compiler/compiler/statements/iteration_variable.leo.out b/tests/expectations/compiler/compiler/statements/iteration_variable.leo.out deleted file mode 100644 index 3fc156ac7a..0000000000 --- a/tests/expectations/compiler/compiler/statements/iteration_variable.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - initial_ast: fe85afd83a8a1f1c33be0b8d061ea699b4b250a0c2d4b6a557fe224eaf391c1b - symbol_table: 8b6313fa019dfc473aea778b67ecf00f38110f339c9c0fb416b221994f8f9c7b diff --git a/tests/expectations/compiler/compiler/statements/multiple_returns.leo.out b/tests/expectations/compiler/compiler/statements/multiple_returns.leo.out deleted file mode 100644 index 852ac1c8d0..0000000000 --- a/tests/expectations/compiler/compiler/statements/multiple_returns.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - - initial_input_ast: 15ea6655d9cdaca2e4e57a62d0959b832e56ca7139e38bc3e3c16ad8965ee681 - initial_ast: b21850bcd854089338e66df98fbacc2ddf4359e0238f1957933720f5c0ad2c92 - symbol_table: a57230e14da3882433b1b2f0cfa8abd32f38a6b4bd207fd87fdfbea34fc5e71d diff --git a/tests/expectations/compiler/compiler/statements/mutate.leo.out b/tests/expectations/compiler/compiler/statements/mutate.leo.out deleted file mode 100644 index e1b33a717c..0000000000 --- a/tests/expectations/compiler/compiler/statements/mutate.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 7f5eb67955fff9556d758dea428c97687be661cf6ef33f8acf736e3e77d487f8 - - initial_input_ast: 15ea6655d9cdaca2e4e57a62d0959b832e56ca7139e38bc3e3c16ad8965ee681 - initial_ast: 05fe28f3b8ae599404b6f52e5e3e53efa22bdc43c9a951445142fc3c7d171945 - symbol_table: 6d82dfb1fcb0a50b6b18e771919dad3622d102b53b63ffa2186bc50bc0aa743c diff --git a/tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.leo.out b/tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.leo.out deleted file mode 100644 index 98de9e6fc8..0000000000 --- a/tests/expectations/compiler/compiler/statements/ternary_explicit_and_implicit.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: Compile -expectation: Pass -outputs: - - output: - - initial_input_ast: 86fdb64f9c593c85f97a5aae6c5e602840e5b403b1994211f280a1bc99a8ccf4 - initial_ast: a96b034d1255f8b2b0633fb6b6d302b643b32135059bbdb51d4cd7ba91eb35d8 - symbol_table: ea61603fdb0d2d3f9ed43f0b8fd044438c4f662ae0cfb97e95505b741a82ce0b diff --git a/tests/expectations/parser/parser/expression/access/call.leo.out b/tests/expectations/parser/parser/expression/access/call.leo.out deleted file mode 100644 index 51bf44b889..0000000000 --- a/tests/expectations/parser/parser/expression/access/call.leo.out +++ /dev/null @@ -1,65 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x()\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: x() - - Call: - function: - Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"X()\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: X() - - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(y)\\\"}\"}" - arguments: - - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(y)\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x(y) - - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}" - arguments: - - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}" - - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: "x(y, z)" - - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - arguments: - - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: "x(x, y, z)" diff --git a/tests/expectations/parser/parser/expression/array_init_fail.leo.out b/tests/expectations/parser/parser/expression/array_init_fail.leo.out deleted file mode 100644 index 80ea97fbc2..0000000000 --- a/tests/expectations/parser/parser/expression/array_init_fail.leo.out +++ /dev/null @@ -1,8 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [...0u8; 1]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [...0; 1]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [0; ()]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [0; (1)]\n | ^" diff --git a/tests/expectations/parser/parser/expression/array_inline_fail.leo.out b/tests/expectations/parser/parser/expression/array_inline_fail.leo.out deleted file mode 100644 index ddff3711a8..0000000000 --- a/tests/expectations/parser/parser/expression/array_inline_fail.leo.out +++ /dev/null @@ -1,9 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [,]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [,,]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [0,,]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [,0]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [,0,]\n | ^" diff --git a/tests/expectations/parser/parser/expression/binary/add.leo.out b/tests/expectations/parser/parser/expression/binary/add.leo.out deleted file mode 100644 index 03df36998e..0000000000 --- a/tests/expectations/parser/parser/expression/binary/add.leo.out +++ /dev/null @@ -1,378 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 1u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8+3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: 2u8+3u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 2u8+3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 + 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 + 3u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 + 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 + 3u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 + 2u8 + 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 - 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 - 3u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 - 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 - 3u8 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 + 2u8 - 3u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 28 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 31 - col_stop: 34 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 34 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 34 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/and.leo.out b/tests/expectations/parser/parser/expression/binary/and.leo.out deleted file mode 100644 index 54b86ce6b0..0000000000 --- a/tests/expectations/parser/parser/expression/binary/and.leo.out +++ /dev/null @@ -1,118 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Boolean: - - "true" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: true && false - right: - Value: - Boolean: - - "false" - - span: - line_start: 1 - line_stop: 1 - col_start: 9 - col_stop: 14 - path: "" - content: true && false - op: And - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: true && false - - Binary: - left: - Value: - Boolean: - - "false" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: false&&true - right: - Value: - Boolean: - - "true" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 12 - path: "" - content: false&&true - op: And - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: false&&true - - Binary: - left: - Binary: - left: - Value: - Boolean: - - "true" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: true&&false&&true - right: - Value: - Boolean: - - "false" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 12 - path: "" - content: true&&false&&true - op: And - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: true&&false&&true - right: - Value: - Boolean: - - "true" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 18 - path: "" - content: true&&false&&true - op: And - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: true&&false&&true diff --git a/tests/expectations/parser/parser/expression/binary/div.leo.out b/tests/expectations/parser/parser/expression/binary/div.leo.out deleted file mode 100644 index b889847d4f..0000000000 --- a/tests/expectations/parser/parser/expression/binary/div.leo.out +++ /dev/null @@ -1,202 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 / 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 / 1u8 - op: Div - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 / 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8/3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: 2u8/3u8 - op: Div - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 2u8/3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 / 2u8 / 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 / 2u8 / 3u8 - op: Div - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 / 2u8 / 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 / 2u8 / 3u8 - op: Div - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 / 2u8 / 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 21 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 - op: Div - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 / 3u8 ** 4u8 diff --git a/tests/expectations/parser/parser/expression/binary/eq.leo.out b/tests/expectations/parser/parser/expression/binary/eq.leo.out deleted file mode 100644 index 883e31c09f..0000000000 --- a/tests/expectations/parser/parser/expression/binary/eq.leo.out +++ /dev/null @@ -1,312 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 == 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 == 1u8 - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 == 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8==3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 6 - col_stop: 9 - path: "" - content: 2u8==3u8 - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 2u8==3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 30 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 33 - col_stop: 36 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 36 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 40 - col_stop: 43 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 46 - col_stop: 49 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 40 - col_stop: 49 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 49 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 - op: And - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 49 - path: "" - content: 1u8 < 2u8 == 3u8 < 4u8 && 3u8 < 4u8 == 5u8 < 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/eq_fail.leo.out b/tests/expectations/parser/parser/expression/binary/eq_fail.leo.out deleted file mode 100644 index ba9df4ea97..0000000000 --- a/tests/expectations/parser/parser/expression/binary/eq_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370032]: Could not parse the implicit value: 1.\n --> test:1:1\n |\n 1 | 1 == 2 == 3\n | ^" diff --git a/tests/expectations/parser/parser/expression/binary/exp.leo.out b/tests/expectations/parser/parser/expression/binary/exp.leo.out deleted file mode 100644 index 1bcf4d306b..0000000000 --- a/tests/expectations/parser/parser/expression/binary/exp.leo.out +++ /dev/null @@ -1,125 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 ** 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 ** 1u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 ** 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8**3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 6 - col_stop: 9 - path: "" - content: 2u8**3u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 2u8**3u8 - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 ** 2u8 ** 3u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 ** 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 18 - path: "" - content: 1u8 ** 2u8 ** 3u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 18 - path: "" - content: 1u8 ** 2u8 ** 3u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: 1u8 ** 2u8 ** 3u8 diff --git a/tests/expectations/parser/parser/expression/binary/gt.leo.out b/tests/expectations/parser/parser/expression/binary/gt.leo.out deleted file mode 100644 index 44a4dbe21d..0000000000 --- a/tests/expectations/parser/parser/expression/binary/gt.leo.out +++ /dev/null @@ -1,378 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 > 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 > 1u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 > 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8>3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: 2u8>3u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 2u8>3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 > 2u8 > 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 > 2u8 > 3u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 > 2u8 > 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 > 2u8 > 3u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 > 2u8 > 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 > 2u8 > 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 > 2u8 > 3u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 > 2u8 > 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 > 2u8 > 3u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 > 2u8 > 3u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 28 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 31 - col_stop: 34 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 34 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 34 - path: "" - content: 1u8 + 2u8 > 3u8 + 4u8 > 5u8 + 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/gte.leo.out b/tests/expectations/parser/parser/expression/binary/gte.leo.out deleted file mode 100644 index 0a17fc505c..0000000000 --- a/tests/expectations/parser/parser/expression/binary/gte.leo.out +++ /dev/null @@ -1,378 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 >= 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 >= 1u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 >= 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8 >= 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 2u8 >= 3u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 2u8 >= 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 >= 2u8 >= 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 >= 2u8 >= 3u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 >= 2u8 >= 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 18 - path: "" - content: 1u8 >= 2u8 >= 3u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: 1u8 >= 2u8 >= 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 >= 2u8 >= 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 >= 2u8 >= 3u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 >= 2u8 >= 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 18 - path: "" - content: 1u8 >= 2u8 >= 3u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: 1u8 >= 2u8 >= 3u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 30 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 33 - col_stop: 36 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 36 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 36 - path: "" - content: 1u8 + 2u8 >= 3u8 + 4u8 >= 5u8 + 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/lt.leo.out b/tests/expectations/parser/parser/expression/binary/lt.leo.out deleted file mode 100644 index dd8c2f95cf..0000000000 --- a/tests/expectations/parser/parser/expression/binary/lt.leo.out +++ /dev/null @@ -1,378 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 1u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8<3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: 2u8<3u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 2u8<3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 2u8 < 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 2u8 < 3u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 2u8 < 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 < 2u8 < 3u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 < 2u8 < 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 2u8 < 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 2u8 < 3u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 2u8 < 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 < 2u8 < 3u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 < 2u8 < 3u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 28 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 31 - col_stop: 34 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 34 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 34 - path: "" - content: 1u8 + 2u8 < 3u8 + 4u8 < 5u8 + 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/lte.leo.out b/tests/expectations/parser/parser/expression/binary/lte.leo.out deleted file mode 100644 index d02be6e749..0000000000 --- a/tests/expectations/parser/parser/expression/binary/lte.leo.out +++ /dev/null @@ -1,378 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 <= 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 <= 1u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 <= 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8 <= 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 2u8 <= 3u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 2u8 <= 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 <= 2u8 <= 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 <= 2u8 <= 3u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 <= 2u8 <= 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 18 - path: "" - content: 1u8 <= 2u8 <= 3u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: 1u8 <= 2u8 <= 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 <= 2u8 <= 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 <= 2u8 <= 3u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 <= 2u8 <= 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 18 - path: "" - content: 1u8 <= 2u8 <= 3u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: 1u8 <= 2u8 <= 3u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 30 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 33 - col_stop: 36 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 36 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 36 - path: "" - content: 1u8 + 2u8 <= 3u8 + 4u8 <= 5u8 + 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/mul.leo.out b/tests/expectations/parser/parser/expression/binary/mul.leo.out deleted file mode 100644 index 355bfcbd1f..0000000000 --- a/tests/expectations/parser/parser/expression/binary/mul.leo.out +++ /dev/null @@ -1,323 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 * 1u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 * 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8*3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: 2u8*3u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 2u8*3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 2u8 * 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 * 2u8 * 3u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 * 2u8 * 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 * 2u8 * 3u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 * 2u8 * 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 21 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 21 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 24 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 30 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 34 - col_stop: 37 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - op: Pow - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 37 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 - op: Div - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 37 - path: "" - content: 1u8 ** 2u8 * 3u8 ** 4u8 / 5u8 ** 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/ne.leo.out b/tests/expectations/parser/parser/expression/binary/ne.leo.out deleted file mode 100644 index 8de4fc40c6..0000000000 --- a/tests/expectations/parser/parser/expression/binary/ne.leo.out +++ /dev/null @@ -1,312 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 != 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 11 - path: "" - content: 1u8 != 1u8 - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 != 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8!=3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 6 - col_stop: 9 - path: "" - content: 2u8!=3u8 - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 2u8!=3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 20 - col_stop: 23 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 30 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 33 - col_stop: 36 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 36 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 40 - col_stop: 43 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 46 - col_stop: 49 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 40 - col_stop: 49 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 27 - col_stop: 49 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 - op: Or - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 49 - path: "" - content: 1u8 < 2u8 != 3u8 < 4u8 || 3u8 < 4u8 != 5u8 < 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/ne_fail.leo.out b/tests/expectations/parser/parser/expression/binary/ne_fail.leo.out deleted file mode 100644 index bbb63e997d..0000000000 --- a/tests/expectations/parser/parser/expression/binary/ne_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370032]: Could not parse the implicit value: 1.\n --> test:1:1\n |\n 1 | 1 != 2 != 3\n | ^" diff --git a/tests/expectations/parser/parser/expression/binary/or.leo.out b/tests/expectations/parser/parser/expression/binary/or.leo.out deleted file mode 100644 index 4ec15c8941..0000000000 --- a/tests/expectations/parser/parser/expression/binary/or.leo.out +++ /dev/null @@ -1,378 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 1u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 1u8 - - Binary: - left: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 2u8+3u16 - right: - Value: - Integer: - - U16 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 9 - path: "" - content: 2u8+3u16 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 2u8+3u16 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 + 2u8 + 3u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 + 2u8 + 3u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 + 2u8 + 3u8 - right: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 + 2u8 + 3u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1u8 + 2u8 + 3u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - - Binary: - left: - Binary: - left: - Value: - Integer: - - I8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1i8 + 2i8 - 3i8 - right: - Value: - Integer: - - I8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1i8 + 2i8 - 3i8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1i8 + 2i8 - 3i8 - right: - Value: - Integer: - - I8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1i8 + 2i8 - 3i8 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: 1i8 + 2i8 - 3i8 - - Binary: - left: - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Value: - Integer: - - U8 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 22 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Binary: - left: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 28 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - right: - Value: - Integer: - - U8 - - "6" - - span: - line_start: 1 - line_stop: 1 - col_start: 31 - col_stop: 34 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 34 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 34 - path: "" - content: 1u8 * 2u8 + 3u8 * 4u8 - 5u8 * 6u8 diff --git a/tests/expectations/parser/parser/expression/binary/sub.leo.out b/tests/expectations/parser/parser/expression/binary/sub.leo.out deleted file mode 100644 index 00a4a02c8c..0000000000 --- a/tests/expectations/parser/parser/expression/binary/sub.leo.out +++ /dev/null @@ -1,202 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 - 1u8 - right: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: 1u8 - 1u8 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 1u8 - 1u8 - - Binary: - left: - Value: - Integer: - - U16 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: 2u16-3u64 - right: - Value: - Integer: - - U64 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 6 - col_stop: 10 - path: "" - content: 2u16-3u64 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 2u16-3u64 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U32 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: 1u32 - 2u32 - 3u32 - right: - Value: - Integer: - - U32 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 12 - path: "" - content: 1u32 - 2u32 - 3u32 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 1u32 - 2u32 - 3u32 - right: - Value: - Integer: - - U32 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 19 - path: "" - content: 1u32 - 2u32 - 3u32 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: 1u32 - 2u32 - 3u32 - - Binary: - left: - Binary: - left: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 - right: - Value: - Integer: - - U16 - - "2" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 11 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 - right: - Binary: - left: - Value: - Integer: - - U32 - - "3" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 18 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 - right: - Value: - Integer: - - I64 - - "4" - - span: - line_start: 1 - line_stop: 1 - col_start: 21 - col_stop: 25 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 - op: Mul - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 25 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 - op: Sub - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 25 - path: "" - content: 1u8 * 2u16 - 3u32 * 4i64 diff --git a/tests/expectations/parser/parser/expression/circuit_init_fail.leo.out b/tests/expectations/parser/parser/expression/circuit_init_fail.leo.out deleted file mode 100644 index 4d5ba89431..0000000000 --- a/tests/expectations/parser/parser/expression/circuit_init_fail.leo.out +++ /dev/null @@ -1,16 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "did not consume all input: '{' @ 1:3-4\n" - - "did not consume all input: '}' @ 1:3-4\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:4-5\n'}' @ 1:5-6\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:5-6\n'}' @ 1:7-8\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:4-5\n',' @ 1:5-6\n',' @ 1:6-7\n'}' @ 1:7-8\n" - - "did not consume all input: '{' @ 1:3-4\n'x' @ 1:4-5\n',' @ 1:5-6\n',' @ 1:6-7\n'}' @ 1:7-8\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:4-5\n',' @ 1:5-6\n'x' @ 1:6-7\n'}' @ 1:7-8\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:4-5\n'x' @ 1:5-6\n'}' @ 1:6-7\n" - - "did not consume all input: '{' @ 1:3-4\n'x' @ 1:4-5\n':' @ 1:5-6\n'y' @ 1:6-7\n',' @ 1:7-8\n',' @ 1:8-9\n'}' @ 1:9-10\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:4-5\n',' @ 1:5-6\n'x' @ 1:6-7\n':' @ 1:7-8\n'y' @ 1:8-9\n'}' @ 1:9-10\n" - - "did not consume all input: '{' @ 1:3-4\n',' @ 1:4-5\n'x' @ 1:5-6\n':' @ 1:6-7\n'y' @ 1:7-8\n'}' @ 1:8-9\n" - - "did not consume all input: '{' @ 1:3-4\n'x' @ 1:4-5\n':' @ 1:5-6\n'}' @ 1:6-7\n" diff --git a/tests/expectations/parser/parser/expression/ident.leo.out b/tests/expectations/parser/parser/expression/ident.leo.out deleted file mode 100644 index 329ca97a73..0000000000 --- a/tests/expectations/parser/parser/expression/ident.leo.out +++ /dev/null @@ -1,23 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x\\\"}\"}" - - Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"X\\\"}\"}" - - Identifier: "{\"name\":\"xxx\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xxx\\\"}\"}" - - Identifier: "{\"name\":\"XXX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"XXX\\\"}\"}" - - Identifier: "{\"name\":\"x1\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x1\\\"}\"}" - - Identifier: "{\"name\":\"xu32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu32\\\"}\"}" - - Identifier: "{\"name\":\"testx\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"testx\\\"}\"}" - - Identifier: "{\"name\":\"truex\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"truex\\\"}\"}" - - Identifier: "{\"name\":\"TRUE\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"TRUE\\\"}\"}" - - Identifier: "{\"name\":\"testX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"testX\\\"}\"}" - - Identifier: "{\"name\":\"letX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"letX\\\"}\"}" - - Identifier: "{\"name\":\"constX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constX\\\"}\"}" - - Identifier: "{\"name\":\"test_test\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"test_test\\\"}\"}" - - Identifier: "{\"name\":\"self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"self\\\"}\"}" - - Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"Self\\\"}\"}" - - Identifier: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"input\\\"}\"}" - - Identifier: "{\"name\":\"selfX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"selfX\\\"}\"}" - - Identifier: "{\"name\":\"SelfX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"SelfX\\\"}\"}" - - Identifier: "{\"name\":\"inputX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"inputX\\\"}\"}" diff --git a/tests/expectations/parser/parser/expression/literal/address.leo.out b/tests/expectations/parser/parser/expression/literal/address.leo.out deleted file mode 100644 index b0e997ef27..0000000000 --- a/tests/expectations/parser/parser/expression/literal/address.leo.out +++ /dev/null @@ -1,10 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8s7pyjh9' @ 1:1-64" - - "'ALEO1' @ 1:1-6" - - "'Aleo1' @ 1:1-6" - - "'aleO1' @ 1:1-6" - - "'aleo2qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d9' @ 1:1-64" - - "'bleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d9' @ 1:1-64" diff --git a/tests/expectations/parser/parser/expression/literal/address_fail.leo.out b/tests/expectations/parser/parser/expression/literal/address_fail.leo.out deleted file mode 100644 index 5c02de28cd..0000000000 --- a/tests/expectations/parser/parser/expression/literal/address_fail.leo.out +++ /dev/null @@ -1,14 +0,0 @@ ---- -namespace: Token -expectation: Fail -outputs: - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d1aleo1'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d1aleo1\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6Z2eu975wnpz2925ntjccd5cfqxtyu8sta57J9'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6Z2eu975wnpz2925ntjccd5cfqxtyu8sta57J9\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j9'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j9\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1'\n --> test:1:1\n |\n 1 | aleo1\n | ^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8st'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8st\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1'\n --> test:1:1\n |\n 1 | aleo1\n | ^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d1aleo1'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d1aleo1\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d11'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d11\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" - - "Error [EPAR0370001]: invalid address literal: 'aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d1x'\n --> test:1:1\n |\n 1 | aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d1x\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" diff --git a/tests/expectations/parser/parser/expression/literal/address_parse.leo.out b/tests/expectations/parser/parser/expression/literal/address_parse.leo.out deleted file mode 100644 index ffb0b82fce..0000000000 --- a/tests/expectations/parser/parser/expression/literal/address_parse.leo.out +++ /dev/null @@ -1,14 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8s7pyjh9 - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 64 - path: "" - content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8s7pyjh9 diff --git a/tests/expectations/parser/parser/expression/literal/bool.leo.out b/tests/expectations/parser/parser/expression/literal/bool.leo.out deleted file mode 100644 index 9222f3dd49..0000000000 --- a/tests/expectations/parser/parser/expression/literal/bool.leo.out +++ /dev/null @@ -1,12 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "'true' @ 1:1-5" - - "'True' @ 1:1-5" - - "'TRUE' @ 1:1-5" - - "'truE' @ 1:1-5" - - "'false' @ 1:1-6" - - "'False' @ 1:1-6" - - "'FALSE' @ 1:1-6" - - "'falsE' @ 1:1-6" diff --git a/tests/expectations/parser/parser/expression/literal/bool_parse.leo.out b/tests/expectations/parser/parser/expression/literal/bool_parse.leo.out deleted file mode 100644 index d629bc1ed6..0000000000 --- a/tests/expectations/parser/parser/expression/literal/bool_parse.leo.out +++ /dev/null @@ -1,24 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Boolean: - - "true" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: "true" - - Value: - Boolean: - - "false" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: "false" diff --git a/tests/expectations/parser/parser/expression/literal/char.leo.out b/tests/expectations/parser/parser/expression/literal/char.leo.out deleted file mode 100644 index 1555a1e74d..0000000000 --- a/tests/expectations/parser/parser/expression/literal/char.leo.out +++ /dev/null @@ -1,57 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "''a'' @ 1:1-4" - - "''Z'' @ 1:1-4" - - "''\"'' @ 1:1-5" - - "''''' @ 1:1-5" - - "''\t'' @ 1:1-5" - - "''\r'' @ 1:1-5" - - "''\u0000'' @ 1:1-5" - - "''\u000f'' @ 1:1-8" - - "'''' @ 1:1-6" - - "''å'' @ 1:1-9" - - "''å'' @ 1:1-5" - - "''Ӡ'' @ 1:1-10" - - "''Ӡ'' @ 1:1-5" - - "''D800'' @ 1:1-11" - - "''❤'' @ 1:1-11" - - "''❤'' @ 1:1-6" - - "''😢'' @ 1:1-12" - - "''😭'' @ 1:1-7" - - "''􀀟'' @ 1:1-13" - - "''*'' @ 1:1-7" - - "''\u007f'' @ 1:1-7" - - "''\u0000'' @ 1:1-7" - - "''\u0001'' @ 1:1-7" - - "''\u0002'' @ 1:1-7" - - "''\u0003'' @ 1:1-7" - - "''\u0004'' @ 1:1-7" - - "''\u0005'' @ 1:1-7" - - "''\u0006'' @ 1:1-7" - - "''\u0007'' @ 1:1-7" - - "''\u0010'' @ 1:1-7" - - "''\u0011'' @ 1:1-7" - - "''\u0012'' @ 1:1-7" - - "''\u0013'' @ 1:1-7" - - "''\u0014'' @ 1:1-7" - - "''\u0015'' @ 1:1-7" - - "''\u0016'' @ 1:1-7" - - "''\u0017'' @ 1:1-7" - - "'' '' @ 1:1-7" - - "''!'' @ 1:1-7" - - "''\"'' @ 1:1-7" - - "''#'' @ 1:1-7" - - "''$'' @ 1:1-7" - - "''%'' @ 1:1-7" - - "''&'' @ 1:1-7" - - "''''' @ 1:1-7" - - "''0'' @ 1:1-7" - - "''1'' @ 1:1-7" - - "''2'' @ 1:1-7" - - "''3'' @ 1:1-7" - - "''4'' @ 1:1-7" - - "''5'' @ 1:1-7" - - "''6'' @ 1:1-7" - - "''7'' @ 1:1-7" diff --git a/tests/expectations/parser/parser/expression/literal/char_fail.leo.out b/tests/expectations/parser/parser/expression/literal/char_fail.leo.out deleted file mode 100644 index 2f17e3ad5f..0000000000 --- a/tests/expectations/parser/parser/expression/literal/char_fail.leo.out +++ /dev/null @@ -1,51 +0,0 @@ ---- -namespace: Token -expectation: Fail -outputs: - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370030]: Could not lex the following content: `\\`." - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370030]: Could not lex the following content: `\\n`." - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370031]: Expected a valid hex character but found `'`." - - "Error [EPAR0370031]: Expected a valid hex character but found `'`." - - "Error [EPAR0370031]: Expected a valid hex character but found `9A`." - - "Error [EPAR0370031]: Expected a valid hex character but found `7g`." - - "Error [EPAR0370031]: Expected a valid hex character but found `80`." - - "Error [EPAR0370031]: Expected a valid hex character but found `c1`." - - "Error [EPAR0370031]: Expected a valid hex character but found `c2`." - - "Error [EPAR0370031]: Expected a valid hex character but found `DF`." - - "Error [EPAR0370031]: Expected a valid hex character but found `C0`." - - "Error [EPAR0370031]: Expected a valid hex character but found `e0`." - - "Error [EPAR0370031]: Expected a valid hex character but found `9f`." - - "Error [EPAR0370026]: Expected a closed char but found `a`." - - "Error [EPAR0370024]: Expected a valid escape character but found `a`." - - "Error [EPAR0370024]: Expected a valid escape character but found `z`." - - "Error [EPAR0370024]: Expected a valid escape character but found `A`." - - "Error [EPAR0370024]: Expected a valid escape character but found `Z`." - - "Error [EPAR0370024]: Expected a valid escape character but found `1`." - - "Error [EPAR0370024]: Expected a valid escape character but found `9`." - - "Error [EPAR0370024]: Expected a valid escape character but found `*`." - - "Error [EPAR0370031]: Expected a valid hex character but found `'`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `'`." - - "Error [EPAR0370026]: Expected a closed char but found `\t`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `z`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `1`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `}`." - - "Error [EPAR0370026]: Expected a closed char but found `🦀`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `1`." - - "Error [EPAR0370026]: Expected a closed char but found `🦀`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `6`." - - "Error [EPAR0370033]: There was no closing `}` after a escaped unicode `af🦀'`." - - "Error [EPAR0370033]: There was no closing `}` after a escaped unicode `2764z'`." - - "Error [EPAR0370031]: Expected a valid hex character but found `276g`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `9`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `0`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `0`." - - "Error [EPAR0370035]: The escaped unicode char `110000` is greater than 0x10FFFF." - - "Error [EPAR0370034]: The escaped unicode char `1234567890` is not within valid length of [1, 6]." - - "Error [EPAR0370026]: Expected a closed char but found `򻮻`." - - "Error [EPAR0370026]: Expected a closed char but found `😭`." - - "Error [EPAR0370044]: Unicode bidi override code point encountered." diff --git a/tests/expectations/parser/parser/expression/literal/char_parse.leo.out b/tests/expectations/parser/parser/expression/literal/char_parse.leo.out deleted file mode 100644 index 3d84a2cece..0000000000 --- a/tests/expectations/parser/parser/expression/literal/char_parse.leo.out +++ /dev/null @@ -1,55 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "''a'' @ 1:1-4" - - "''Z'' @ 1:1-4" - - "''\"'' @ 1:1-5" - - "''\t'' @ 1:1-5" - - "''\r'' @ 1:1-5" - - "''\u0000'' @ 1:1-5" - - "''\u000f'' @ 1:1-8" - - "'''' @ 1:1-6" - - "''å'' @ 1:1-9" - - "''å'' @ 1:1-5" - - "''Ӡ'' @ 1:1-10" - - "''Ӡ'' @ 1:1-5" - - "''❤'' @ 1:1-11" - - "''❤'' @ 1:1-6" - - "''😢'' @ 1:1-12" - - "''😭'' @ 1:1-7" - - "''􀀟'' @ 1:1-13" - - "''*'' @ 1:1-7" - - "''\u007f'' @ 1:1-7" - - "''\u0000'' @ 1:1-7" - - "''\u0001'' @ 1:1-7" - - "''\u0002'' @ 1:1-7" - - "''\u0003'' @ 1:1-7" - - "''\u0004'' @ 1:1-7" - - "''\u0005'' @ 1:1-7" - - "''\u0006'' @ 1:1-7" - - "''\u0007'' @ 1:1-7" - - "''\u0010'' @ 1:1-7" - - "''\u0011'' @ 1:1-7" - - "''\u0012'' @ 1:1-7" - - "''\u0013'' @ 1:1-7" - - "''\u0014'' @ 1:1-7" - - "''\u0015'' @ 1:1-7" - - "''\u0016'' @ 1:1-7" - - "''\u0017'' @ 1:1-7" - - "'' '' @ 1:1-7" - - "''!'' @ 1:1-7" - - "''\"'' @ 1:1-7" - - "''#'' @ 1:1-7" - - "''$'' @ 1:1-7" - - "''%'' @ 1:1-7" - - "''&'' @ 1:1-7" - - "''''' @ 1:1-7" - - "''0'' @ 1:1-7" - - "''1'' @ 1:1-7" - - "''2'' @ 1:1-7" - - "''3'' @ 1:1-7" - - "''4'' @ 1:1-7" - - "''5'' @ 1:1-7" - - "''6'' @ 1:1-7" - - "''7'' @ 1:1-7" diff --git a/tests/expectations/parser/parser/expression/literal/comment.leo.out b/tests/expectations/parser/parser/expression/literal/comment.leo.out deleted file mode 100644 index bc50235bda..0000000000 --- a/tests/expectations/parser/parser/expression/literal/comment.leo.out +++ /dev/null @@ -1,7 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: {} diff --git a/tests/expectations/parser/parser/expression/literal/comment_fail.leo.out b/tests/expectations/parser/parser/expression/literal/comment_fail.leo.out deleted file mode 100644 index 7507dd35ed..0000000000 --- a/tests/expectations/parser/parser/expression/literal/comment_fail.leo.out +++ /dev/null @@ -1,15 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370028]: Empty block comment." - - "Error [EPAR0370029]: Block comment does not close with content: `/* test`." - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '/'\n --> test:1:1\n |\n 1 | / /\n | ^" - - "Error [EPAR0370029]: Block comment does not close with content: `/*/`." - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '*'\n --> test:1:1\n |\n 1 | */\n | ^" - - "Error [EPAR0370030]: Could not lex the following content: `🦀**/`." - - "Error [EPAR0370030]: Could not lex the following content: `🦀*/`." - - "Error [EPAR0370029]: Block comment does not close with content: `/*🦀/`." - - "Error [EPAR0370029]: Block comment does not close with content: `/**🦀`." - - "Error [EPAR0370029]: Block comment does not close with content: `/*🦀`." - - "Error [EPAR0370029]: Block comment does not close with content: `/*/*`." diff --git a/tests/expectations/parser/parser/expression/literal/formatted_string.leo.out b/tests/expectations/parser/parser/expression/literal/formatted_string.leo.out deleted file mode 100644 index 47fddf9292..0000000000 --- a/tests/expectations/parser/parser/expression/literal/formatted_string.leo.out +++ /dev/null @@ -1,24 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "'\"{}\"' @ 1:1-5" - - "'\" {} \"' @ 1:1-7" - - "'\"{}d\"' @ 1:1-6" - - "'\"{}D\"' @ 1:1-6" - - "'\"d{}\"' @ 1:1-6" - - "'\"D{}\"' @ 1:1-6" - - "'\"D{}D\"' @ 1:1-7" - - "'\"{}{}\"' @ 1:1-7" - - "'\"D{}{}D\"' @ 1:1-9" - - "'\"D{}{}\"' @ 1:1-8" - - "'\"{}{}D\"' @ 1:1-8" - - "'\"D{}D{}D\"' @ 1:1-10" - - "'\"{{}}\"' @ 1:1-7" - - "'\"}}\"' @ 1:1-5" - - "'\"{{\"' @ 1:1-5" - - "'\"}}{{\"' @ 1:1-7" - - "'\"{{}\"' @ 1:1-6" - - "'\"{}}\"' @ 1:1-6" - - "'\"{\"' @ 1:1-4" - - "'\"}\"' @ 1:1-4" diff --git a/tests/expectations/parser/parser/expression/literal/group.leo.out b/tests/expectations/parser/parser/expression/literal/group.leo.out deleted file mode 100644 index 2f2957cf64..0000000000 --- a/tests/expectations/parser/parser/expression/literal/group.leo.out +++ /dev/null @@ -1,714 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Group: - Tuple: - x: SignHigh - y: Inferred - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(+, _)group" - - Value: - Group: - Tuple: - x: Inferred - y: SignLow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(_, -)group" - - Value: - Group: - Tuple: - x: SignHigh - y: SignLow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(+, -)group" - - Value: - Group: - Tuple: - x: SignLow - y: SignHigh - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(-, +)group" - - Value: - Group: - Tuple: - x: SignHigh - y: SignHigh - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(+, +)group" - - Value: - Group: - Tuple: - x: SignLow - y: SignLow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(-, -)group" - - Value: - Group: - Tuple: - x: Inferred - y: Inferred - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: "(_, _)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123,-456)group" - y: - Number: - - "-456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123,-456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123,-456)group" - - Value: - Group: - Tuple: - x: - Number: - - "-123" - - span: - line_start: 1 - line_stop: 1 - col_start: 3 - col_stop: 6 - path: "" - content: "(-123,456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(-123,456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(-123,456)group" - - Value: - Group: - Tuple: - x: - Number: - - "-123" - - span: - line_start: 1 - line_stop: 1 - col_start: 3 - col_stop: 6 - path: "" - content: "(-123,456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(-123,456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(-123,456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, _)group" - y: Inferred - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, _)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, -)group" - y: SignLow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, -)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, -)group" - y: SignLow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, -)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, +)group" - y: SignHigh - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, +)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, +)group" - y: SignHigh - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, +)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, -)group" - y: SignLow - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, -)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, _)group" - y: Inferred - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(123, _)group" - - Value: - Group: - Tuple: - x: SignHigh - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(+, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(+, 345)group" - - Value: - Group: - Tuple: - x: Inferred - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(_, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(_, 345)group" - - Value: - Group: - Tuple: - x: SignHigh - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(+, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(+, 345)group" - - Value: - Group: - Tuple: - x: SignLow - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(-, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(-, 345)group" - - Value: - Group: - Tuple: - x: SignHigh - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(+, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(+, 345)group" - - Value: - Group: - Tuple: - x: SignLow - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(-, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(-, 345)group" - - Value: - Group: - Tuple: - x: Inferred - y: - Number: - - "345" - - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: "(_, 345)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: "(_, 345)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Tuple: - x: - Number: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "(123, 456)group" - y: - Number: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 10 - path: "" - content: "(123, 456)group" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "(123, 456)group" - - Value: - Group: - Single: - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 1group - - Unary: - inner: - Value: - Group: - Single: - - "1" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 8 - path: "" - content: "-1group" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: "-1group" diff --git a/tests/expectations/parser/parser/expression/literal/group_fail.leo.out b/tests/expectations/parser/parser/expression/literal/group_fail.leo.out deleted file mode 100644 index bb68ddb14e..0000000000 --- a/tests/expectations/parser/parser/expression/literal/group_fail.leo.out +++ /dev/null @@ -1,16 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:1\n |\n 1 | ()group\n | ^^" - - "Error [EPAR0370032]: Could not parse the implicit value: 123.\n --> test:1:2\n |\n 1 | (123)group\n | ^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ','\n --> test:1:2\n |\n 1 | (,)group\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '+'\n --> test:1:2\n |\n 1 | (+, -,)group\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ','\n --> test:1:2\n |\n 1 | (,+, -)group\n | ^" - - "Error [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:1\n |\n 1 | (x,y)group\n | ^^^^^" - - "Error [EPAR0370032]: Could not parse the implicit value: 123.\n --> test:1:2\n |\n 1 | (123,456u8)group\n | ^^^" - - "Error [EPAR0370032]: Could not parse the implicit value: 123.\n --> test:1:2\n |\n 1 | (123,456field)group\n | ^^^" - - "Error [EPAR0370004]: Unexpected white space between terms (123,456) and group\n --> test:1:10\n |\n 1 | (123, 456) group\n | ^" - - "Error [EPAR0370032]: Could not parse the implicit value: 123.\n --> test:1:2\n |\n 1 | (123, )group\n | ^^^" - - "Error [EPAR0370032]: Could not parse the implicit value: 123.\n --> test:1:2\n |\n 1 | (123, 456, 789)group\n | ^^^" - - "Error [EPAR0370032]: Could not parse the implicit value: 123.\n --> test:1:2\n |\n 1 | (123, 456)bool\n | ^^^" diff --git a/tests/expectations/parser/parser/expression/literal/int.leo.out b/tests/expectations/parser/parser/expression/literal/int.leo.out deleted file mode 100644 index ccac03f213..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int.leo.out +++ /dev/null @@ -1,111 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "'123' @ 1:1-4,'abc123' @ 1:4-10" - - "'123' @ 1:1-4,'abc' @ 1:4-7" - - "'123' @ 1:1-4" - - "'456' @ 1:1-4" - - "'123' @ 1:1-4,'456' @ 1:5-8" - - "'87377802873778028737780287377802873778028737780287377802873778028737780287377802' @ 1:1-81" - - "'8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802' @ 1:1-401" - - "'340130024' @ 1:1-10" - - "'158951116' @ 1:1-10" - - "'155529659' @ 1:1-10" - - "'642023166' @ 1:1-10" - - "'228481736' @ 1:1-10" - - "'469712960' @ 1:1-10" - - "'929437719' @ 1:1-10" - - "'721072814' @ 1:1-10" - - "'363254789' @ 1:1-10" - - "'906732565' @ 1:1-10" - - "'288246391' @ 1:1-10" - - "'724940549' @ 1:1-10" - - "'487101620' @ 1:1-10" - - "'261373583' @ 1:1-10" - - "'891163927' @ 1:1-10" - - "'743967544' @ 1:1-10" - - "'8372586' @ 1:1-8" - - "'461793278' @ 1:1-10" - - "'806307045' @ 1:1-10" - - "'122764546' @ 1:1-10" - - "'356336181' @ 1:1-10" - - "'158370903' @ 1:1-10" - - "'774460877' @ 1:1-10" - - "'557174131' @ 1:1-10" - - "'492401267' @ 1:1-10" - - "'893445620' @ 1:1-10" - - "'957757048' @ 1:1-10" - - "'721540649' @ 1:1-10" - - "'390746493' @ 1:1-10" - - "'211251725' @ 1:1-10" - - "'938266114' @ 1:1-10" - - "'156985870' @ 1:1-10" - - "'703831126' @ 1:1-10" - - "'729964155' @ 1:1-10" - - "'988151305' @ 1:1-10" - - "'320872435' @ 1:1-10" - - "'719287167' @ 1:1-10" - - "'152289486' @ 1:1-10" - - "'740067975' @ 1:1-10" - - "'728627816' @ 1:1-10" - - "'385008978' @ 1:1-10" - - "'553967635' @ 1:1-10" - - "'71980713' @ 1:1-9" - - "'519444716' @ 1:1-10" - - "'116499965' @ 1:1-10" - - "'717422268' @ 1:1-10" - - "'18966279' @ 1:1-9" - - "'22458638' @ 1:1-9" - - "'857282620' @ 1:1-10" - - "'920675898' @ 1:1-10" - - "'762235516' @ 1:1-10" - - "'469018377' @ 1:1-10" - - "'199986521' @ 1:1-10" - - "'536679358' @ 1:1-10" - - "'591399452' @ 1:1-10" - - "'83083158' @ 1:1-9" - - "'599449051' @ 1:1-10" - - "'445442318' @ 1:1-10" - - "'585486590' @ 1:1-10" - - "'209278800' @ 1:1-10" - - "'873568117' @ 1:1-10" - - "'664470940' @ 1:1-10" - - "'465262783' @ 1:1-10" - - "'605652874' @ 1:1-10" - - "'376803940' @ 1:1-10" - - "'965247040' @ 1:1-10" - - "'598474509' @ 1:1-10" - - "'845119918' @ 1:1-10" - - "'648159133' @ 1:1-10" - - "'669051032' @ 1:1-10" - - "'800600261' @ 1:1-10" - - "'434689764' @ 1:1-10" - - "'520060080' @ 1:1-10" - - "'804659385' @ 1:1-10" - - "'537828058' @ 1:1-10" - - "'716600292' @ 1:1-10" - - "'387020273' @ 1:1-10" - - "'199375617' @ 1:1-10" - - "'680337189' @ 1:1-10" - - "'818479931' @ 1:1-10" - - "'893693281' @ 1:1-10" - - "'87377802' @ 1:1-9" - - "'84699261' @ 1:1-9" - - "'292826090' @ 1:1-10" - - "'569171405' @ 1:1-10" - - "'387436237' @ 1:1-10" - - "'150682190' @ 1:1-10" - - "'888770419' @ 1:1-10" - - "'824696431' @ 1:1-10" - - "'765659803' @ 1:1-10" - - "'270163693' @ 1:1-10" - - "'427940240' @ 1:1-10" - - "'504997332' @ 1:1-10" - - "'337808338' @ 1:1-10" - - "'907200008' @ 1:1-10" - - "'757177889' @ 1:1-10" - - "'696697188' @ 1:1-10" - - "'41376051' @ 1:1-9" - - "'496293518' @ 1:1-10" - - "'251218820' @ 1:1-10" diff --git a/tests/expectations/parser/parser/expression/literal/int_fail.leo.out b/tests/expectations/parser/parser/expression/literal/int_fail.leo.out deleted file mode 100644 index de9048e19e..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_fail.leo.out +++ /dev/null @@ -1,7 +0,0 @@ ---- -namespace: Token -expectation: Fail -outputs: - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/field.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/field.leo.out deleted file mode 100644 index 2b86197922..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/field.leo.out +++ /dev/null @@ -1,1055 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Field: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 123field - - Value: - Field: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 123field - - Value: - Field: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 456field - - "" - - Value: - Field: - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 86 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802field - - Value: - Field: - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 406 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802field - - Value: - Field: - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 340130024field - - Value: - Field: - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 158951116field - - Value: - Field: - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 155529659field - - Value: - Field: - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 642023166field - - Value: - Field: - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 228481736field - - Value: - Field: - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 469712960field - - Value: - Field: - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 929437719field - - Value: - Field: - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 721072814field - - Value: - Field: - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 363254789field - - Value: - Field: - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 906732565field - - Value: - Field: - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 288246391field - - Value: - Field: - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 724940549field - - Value: - Field: - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 487101620field - - Value: - Field: - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 261373583field - - Value: - Field: - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 891163927field - - Value: - Field: - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 743967544field - - Value: - Field: - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 8372586field - - Value: - Field: - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 461793278field - - Value: - Field: - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 806307045field - - Value: - Field: - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 122764546field - - Value: - Field: - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 356336181field - - Value: - Field: - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 158370903field - - Value: - Field: - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 774460877field - - Value: - Field: - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 557174131field - - Value: - Field: - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 492401267field - - Value: - Field: - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 893445620field - - Value: - Field: - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 957757048field - - Value: - Field: - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 721540649field - - Value: - Field: - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 390746493field - - Value: - Field: - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 211251725field - - Value: - Field: - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 938266114field - - Value: - Field: - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 156985870field - - Value: - Field: - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 703831126field - - Value: - Field: - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 729964155field - - Value: - Field: - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 988151305field - - Value: - Field: - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 320872435field - - Value: - Field: - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 719287167field - - Value: - Field: - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 152289486field - - Value: - Field: - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 740067975field - - Value: - Field: - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 728627816field - - Value: - Field: - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 385008978field - - Value: - Field: - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 553967635field - - Value: - Field: - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 71980713field - - Value: - Field: - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 519444716field - - Value: - Field: - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 116499965field - - Value: - Field: - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 717422268field - - Value: - Field: - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 18966279field - - Value: - Field: - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 22458638field - - Value: - Field: - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 857282620field - - Value: - Field: - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 920675898field - - Value: - Field: - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 762235516field - - Value: - Field: - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 469018377field - - Value: - Field: - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 199986521field - - Value: - Field: - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 536679358field - - Value: - Field: - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 591399452field - - Value: - Field: - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 83083158field - - Value: - Field: - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 599449051field - - Value: - Field: - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 445442318field - - Value: - Field: - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 585486590field - - Value: - Field: - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 209278800field - - Value: - Field: - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 873568117field - - Value: - Field: - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 664470940field - - Value: - Field: - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 465262783field - - Value: - Field: - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 605652874field - - Value: - Field: - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 376803940field - - Value: - Field: - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 965247040field - - Value: - Field: - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 598474509field - - Value: - Field: - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 845119918field - - Value: - Field: - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 648159133field - - Value: - Field: - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 669051032field - - Value: - Field: - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 800600261field - - Value: - Field: - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 434689764field - - Value: - Field: - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 520060080field - - Value: - Field: - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 804659385field - - Value: - Field: - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 537828058field - - Value: - Field: - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 716600292field - - Value: - Field: - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 387020273field - - Value: - Field: - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 199375617field - - Value: - Field: - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 680337189field - - Value: - Field: - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 818479931field - - Value: - Field: - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 893693281field - - Value: - Field: - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 87377802field - - Value: - Field: - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 84699261field - - Value: - Field: - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 292826090field - - Value: - Field: - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 569171405field - - Value: - Field: - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 387436237field - - Value: - Field: - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 150682190field - - Value: - Field: - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 888770419field - - Value: - Field: - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 824696431field - - Value: - Field: - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 765659803field - - Value: - Field: - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 270163693field - - Value: - Field: - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 427940240field - - Value: - Field: - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 504997332field - - Value: - Field: - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 337808338field - - Value: - Field: - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 907200008field - - Value: - Field: - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 757177889field - - Value: - Field: - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 696697188field - - Value: - Field: - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 41376051field - - Value: - Field: - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 496293518field - - Value: - Field: - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 251218820field diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i128.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i128.leo.out deleted file mode 100644 index a6a0b6fd6e..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/i128.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - I128 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 123i128 - - Value: - Integer: - - I128 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 123i128 - - Value: - Integer: - - I128 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 456i128 - - Value: - Integer: - - I128 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 85 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i128 - - Value: - Integer: - - I128 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 405 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i128 - - Value: - Integer: - - I128 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 340130024i128 - - Value: - Integer: - - I128 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 158951116i128 - - Value: - Integer: - - I128 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 155529659i128 - - Value: - Integer: - - I128 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 642023166i128 - - Value: - Integer: - - I128 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 228481736i128 - - Value: - Integer: - - I128 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 469712960i128 - - Value: - Integer: - - I128 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 929437719i128 - - Value: - Integer: - - I128 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 721072814i128 - - Value: - Integer: - - I128 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 363254789i128 - - Value: - Integer: - - I128 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 906732565i128 - - Value: - Integer: - - I128 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 288246391i128 - - Value: - Integer: - - I128 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 724940549i128 - - Value: - Integer: - - I128 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 487101620i128 - - Value: - Integer: - - I128 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 261373583i128 - - Value: - Integer: - - I128 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 891163927i128 - - Value: - Integer: - - I128 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 743967544i128 - - Value: - Integer: - - I128 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 8372586i128 - - Value: - Integer: - - I128 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 461793278i128 - - Value: - Integer: - - I128 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 806307045i128 - - Value: - Integer: - - I128 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 122764546i128 - - Value: - Integer: - - I128 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 356336181i128 - - Value: - Integer: - - I128 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 158370903i128 - - Value: - Integer: - - I128 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 774460877i128 - - Value: - Integer: - - I128 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 557174131i128 - - Value: - Integer: - - I128 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 492401267i128 - - Value: - Integer: - - I128 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 893445620i128 - - Value: - Integer: - - I128 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 957757048i128 - - Value: - Integer: - - I128 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 721540649i128 - - Value: - Integer: - - I128 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 390746493i128 - - Value: - Integer: - - I128 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 211251725i128 - - Value: - Integer: - - I128 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 938266114i128 - - Value: - Integer: - - I128 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 156985870i128 - - Value: - Integer: - - I128 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 703831126i128 - - Value: - Integer: - - I128 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 729964155i128 - - Value: - Integer: - - I128 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 988151305i128 - - Value: - Integer: - - I128 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 320872435i128 - - Value: - Integer: - - I128 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 719287167i128 - - Value: - Integer: - - I128 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 152289486i128 - - Value: - Integer: - - I128 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 740067975i128 - - Value: - Integer: - - I128 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 728627816i128 - - Value: - Integer: - - I128 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 385008978i128 - - Value: - Integer: - - I128 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 553967635i128 - - Value: - Integer: - - I128 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 71980713i128 - - Value: - Integer: - - I128 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 519444716i128 - - Value: - Integer: - - I128 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 116499965i128 - - Value: - Integer: - - I128 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 717422268i128 - - Value: - Integer: - - I128 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 18966279i128 - - Value: - Integer: - - I128 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 22458638i128 - - Value: - Integer: - - I128 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 857282620i128 - - Value: - Integer: - - I128 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 920675898i128 - - Value: - Integer: - - I128 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 762235516i128 - - Value: - Integer: - - I128 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 469018377i128 - - Value: - Integer: - - I128 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 199986521i128 - - Value: - Integer: - - I128 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 536679358i128 - - Value: - Integer: - - I128 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 591399452i128 - - Value: - Integer: - - I128 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 83083158i128 - - Value: - Integer: - - I128 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 599449051i128 - - Value: - Integer: - - I128 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 445442318i128 - - Value: - Integer: - - I128 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 585486590i128 - - Value: - Integer: - - I128 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 209278800i128 - - Value: - Integer: - - I128 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 873568117i128 - - Value: - Integer: - - I128 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 664470940i128 - - Value: - Integer: - - I128 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 465262783i128 - - Value: - Integer: - - I128 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 605652874i128 - - Value: - Integer: - - I128 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 376803940i128 - - Value: - Integer: - - I128 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 965247040i128 - - Value: - Integer: - - I128 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 598474509i128 - - Value: - Integer: - - I128 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 845119918i128 - - Value: - Integer: - - I128 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 648159133i128 - - Value: - Integer: - - I128 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 669051032i128 - - Value: - Integer: - - I128 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 800600261i128 - - Value: - Integer: - - I128 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 434689764i128 - - Value: - Integer: - - I128 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 520060080i128 - - Value: - Integer: - - I128 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 804659385i128 - - Value: - Integer: - - I128 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 537828058i128 - - Value: - Integer: - - I128 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 716600292i128 - - Value: - Integer: - - I128 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 387020273i128 - - Value: - Integer: - - I128 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 199375617i128 - - Value: - Integer: - - I128 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 680337189i128 - - Value: - Integer: - - I128 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 818479931i128 - - Value: - Integer: - - I128 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 893693281i128 - - Value: - Integer: - - I128 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 87377802i128 - - Value: - Integer: - - I128 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 84699261i128 - - Value: - Integer: - - I128 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 292826090i128 - - Value: - Integer: - - I128 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 569171405i128 - - Value: - Integer: - - I128 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 387436237i128 - - Value: - Integer: - - I128 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 150682190i128 - - Value: - Integer: - - I128 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 888770419i128 - - Value: - Integer: - - I128 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 824696431i128 - - Value: - Integer: - - I128 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 765659803i128 - - Value: - Integer: - - I128 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 270163693i128 - - Value: - Integer: - - I128 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 427940240i128 - - Value: - Integer: - - I128 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 504997332i128 - - Value: - Integer: - - I128 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 337808338i128 - - Value: - Integer: - - I128 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 907200008i128 - - Value: - Integer: - - I128 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 757177889i128 - - Value: - Integer: - - I128 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 696697188i128 - - Value: - Integer: - - I128 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 41376051i128 - - Value: - Integer: - - I128 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 496293518i128 - - Value: - Integer: - - I128 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 251218820i128 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i16.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i16.leo.out deleted file mode 100644 index 9bb817e3fb..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/i16.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - I16 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123i16 - - Value: - Integer: - - I16 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123i16 - - Value: - Integer: - - I16 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 456i16 - - Value: - Integer: - - I16 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 84 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i16 - - Value: - Integer: - - I16 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 404 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i16 - - Value: - Integer: - - I16 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 340130024i16 - - Value: - Integer: - - I16 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158951116i16 - - Value: - Integer: - - I16 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 155529659i16 - - Value: - Integer: - - I16 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 642023166i16 - - Value: - Integer: - - I16 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 228481736i16 - - Value: - Integer: - - I16 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469712960i16 - - Value: - Integer: - - I16 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 929437719i16 - - Value: - Integer: - - I16 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721072814i16 - - Value: - Integer: - - I16 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 363254789i16 - - Value: - Integer: - - I16 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 906732565i16 - - Value: - Integer: - - I16 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 288246391i16 - - Value: - Integer: - - I16 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 724940549i16 - - Value: - Integer: - - I16 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 487101620i16 - - Value: - Integer: - - I16 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 261373583i16 - - Value: - Integer: - - I16 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 891163927i16 - - Value: - Integer: - - I16 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 743967544i16 - - Value: - Integer: - - I16 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 8372586i16 - - Value: - Integer: - - I16 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 461793278i16 - - Value: - Integer: - - I16 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 806307045i16 - - Value: - Integer: - - I16 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 122764546i16 - - Value: - Integer: - - I16 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 356336181i16 - - Value: - Integer: - - I16 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158370903i16 - - Value: - Integer: - - I16 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 774460877i16 - - Value: - Integer: - - I16 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 557174131i16 - - Value: - Integer: - - I16 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 492401267i16 - - Value: - Integer: - - I16 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893445620i16 - - Value: - Integer: - - I16 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 957757048i16 - - Value: - Integer: - - I16 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721540649i16 - - Value: - Integer: - - I16 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 390746493i16 - - Value: - Integer: - - I16 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 211251725i16 - - Value: - Integer: - - I16 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 938266114i16 - - Value: - Integer: - - I16 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 156985870i16 - - Value: - Integer: - - I16 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 703831126i16 - - Value: - Integer: - - I16 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 729964155i16 - - Value: - Integer: - - I16 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 988151305i16 - - Value: - Integer: - - I16 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 320872435i16 - - Value: - Integer: - - I16 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 719287167i16 - - Value: - Integer: - - I16 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 152289486i16 - - Value: - Integer: - - I16 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 740067975i16 - - Value: - Integer: - - I16 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 728627816i16 - - Value: - Integer: - - I16 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 385008978i16 - - Value: - Integer: - - I16 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 553967635i16 - - Value: - Integer: - - I16 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 71980713i16 - - Value: - Integer: - - I16 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 519444716i16 - - Value: - Integer: - - I16 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 116499965i16 - - Value: - Integer: - - I16 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 717422268i16 - - Value: - Integer: - - I16 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 18966279i16 - - Value: - Integer: - - I16 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 22458638i16 - - Value: - Integer: - - I16 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 857282620i16 - - Value: - Integer: - - I16 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 920675898i16 - - Value: - Integer: - - I16 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 762235516i16 - - Value: - Integer: - - I16 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469018377i16 - - Value: - Integer: - - I16 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199986521i16 - - Value: - Integer: - - I16 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 536679358i16 - - Value: - Integer: - - I16 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 591399452i16 - - Value: - Integer: - - I16 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 83083158i16 - - Value: - Integer: - - I16 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 599449051i16 - - Value: - Integer: - - I16 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 445442318i16 - - Value: - Integer: - - I16 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 585486590i16 - - Value: - Integer: - - I16 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 209278800i16 - - Value: - Integer: - - I16 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 873568117i16 - - Value: - Integer: - - I16 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 664470940i16 - - Value: - Integer: - - I16 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 465262783i16 - - Value: - Integer: - - I16 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 605652874i16 - - Value: - Integer: - - I16 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 376803940i16 - - Value: - Integer: - - I16 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 965247040i16 - - Value: - Integer: - - I16 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 598474509i16 - - Value: - Integer: - - I16 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 845119918i16 - - Value: - Integer: - - I16 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 648159133i16 - - Value: - Integer: - - I16 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 669051032i16 - - Value: - Integer: - - I16 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 800600261i16 - - Value: - Integer: - - I16 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 434689764i16 - - Value: - Integer: - - I16 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 520060080i16 - - Value: - Integer: - - I16 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 804659385i16 - - Value: - Integer: - - I16 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 537828058i16 - - Value: - Integer: - - I16 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 716600292i16 - - Value: - Integer: - - I16 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387020273i16 - - Value: - Integer: - - I16 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199375617i16 - - Value: - Integer: - - I16 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 680337189i16 - - Value: - Integer: - - I16 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 818479931i16 - - Value: - Integer: - - I16 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893693281i16 - - Value: - Integer: - - I16 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 87377802i16 - - Value: - Integer: - - I16 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 84699261i16 - - Value: - Integer: - - I16 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 292826090i16 - - Value: - Integer: - - I16 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 569171405i16 - - Value: - Integer: - - I16 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387436237i16 - - Value: - Integer: - - I16 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 150682190i16 - - Value: - Integer: - - I16 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 888770419i16 - - Value: - Integer: - - I16 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 824696431i16 - - Value: - Integer: - - I16 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 765659803i16 - - Value: - Integer: - - I16 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 270163693i16 - - Value: - Integer: - - I16 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 427940240i16 - - Value: - Integer: - - I16 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 504997332i16 - - Value: - Integer: - - I16 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 337808338i16 - - Value: - Integer: - - I16 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 907200008i16 - - Value: - Integer: - - I16 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 757177889i16 - - Value: - Integer: - - I16 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 696697188i16 - - Value: - Integer: - - I16 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 41376051i16 - - Value: - Integer: - - I16 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 496293518i16 - - Value: - Integer: - - I16 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 251218820i16 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i32.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i32.leo.out deleted file mode 100644 index d1cd30c003..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/i32.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - I32 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123i32 - - Value: - Integer: - - I32 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123i32 - - Value: - Integer: - - I32 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 456i32 - - Value: - Integer: - - I32 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 84 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i32 - - Value: - Integer: - - I32 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 404 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i32 - - Value: - Integer: - - I32 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 340130024i32 - - Value: - Integer: - - I32 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158951116i32 - - Value: - Integer: - - I32 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 155529659i32 - - Value: - Integer: - - I32 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 642023166i32 - - Value: - Integer: - - I32 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 228481736i32 - - Value: - Integer: - - I32 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469712960i32 - - Value: - Integer: - - I32 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 929437719i32 - - Value: - Integer: - - I32 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721072814i32 - - Value: - Integer: - - I32 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 363254789i32 - - Value: - Integer: - - I32 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 906732565i32 - - Value: - Integer: - - I32 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 288246391i32 - - Value: - Integer: - - I32 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 724940549i32 - - Value: - Integer: - - I32 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 487101620i32 - - Value: - Integer: - - I32 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 261373583i32 - - Value: - Integer: - - I32 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 891163927i32 - - Value: - Integer: - - I32 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 743967544i32 - - Value: - Integer: - - I32 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 8372586i32 - - Value: - Integer: - - I32 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 461793278i32 - - Value: - Integer: - - I32 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 806307045i32 - - Value: - Integer: - - I32 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 122764546i32 - - Value: - Integer: - - I32 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 356336181i32 - - Value: - Integer: - - I32 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158370903i32 - - Value: - Integer: - - I32 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 774460877i32 - - Value: - Integer: - - I32 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 557174131i32 - - Value: - Integer: - - I32 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 492401267i32 - - Value: - Integer: - - I32 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893445620i32 - - Value: - Integer: - - I32 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 957757048i32 - - Value: - Integer: - - I32 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721540649i32 - - Value: - Integer: - - I32 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 390746493i32 - - Value: - Integer: - - I32 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 211251725i32 - - Value: - Integer: - - I32 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 938266114i32 - - Value: - Integer: - - I32 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 156985870i32 - - Value: - Integer: - - I32 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 703831126i32 - - Value: - Integer: - - I32 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 729964155i32 - - Value: - Integer: - - I32 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 988151305i32 - - Value: - Integer: - - I32 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 320872435i32 - - Value: - Integer: - - I32 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 719287167i32 - - Value: - Integer: - - I32 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 152289486i32 - - Value: - Integer: - - I32 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 740067975i32 - - Value: - Integer: - - I32 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 728627816i32 - - Value: - Integer: - - I32 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 385008978i32 - - Value: - Integer: - - I32 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 553967635i32 - - Value: - Integer: - - I32 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 71980713i32 - - Value: - Integer: - - I32 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 519444716i32 - - Value: - Integer: - - I32 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 116499965i32 - - Value: - Integer: - - I32 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 717422268i32 - - Value: - Integer: - - I32 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 18966279i32 - - Value: - Integer: - - I32 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 22458638i32 - - Value: - Integer: - - I32 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 857282620i32 - - Value: - Integer: - - I32 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 920675898i32 - - Value: - Integer: - - I32 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 762235516i32 - - Value: - Integer: - - I32 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469018377i32 - - Value: - Integer: - - I32 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199986521i32 - - Value: - Integer: - - I32 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 536679358i32 - - Value: - Integer: - - I32 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 591399452i32 - - Value: - Integer: - - I32 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 83083158i32 - - Value: - Integer: - - I32 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 599449051i32 - - Value: - Integer: - - I32 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 445442318i32 - - Value: - Integer: - - I32 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 585486590i32 - - Value: - Integer: - - I32 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 209278800i32 - - Value: - Integer: - - I32 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 873568117i32 - - Value: - Integer: - - I32 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 664470940i32 - - Value: - Integer: - - I32 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 465262783i32 - - Value: - Integer: - - I32 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 605652874i32 - - Value: - Integer: - - I32 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 376803940i32 - - Value: - Integer: - - I32 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 965247040i32 - - Value: - Integer: - - I32 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 598474509i32 - - Value: - Integer: - - I32 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 845119918i32 - - Value: - Integer: - - I32 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 648159133i32 - - Value: - Integer: - - I32 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 669051032i32 - - Value: - Integer: - - I32 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 800600261i32 - - Value: - Integer: - - I32 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 434689764i32 - - Value: - Integer: - - I32 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 520060080i32 - - Value: - Integer: - - I32 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 804659385i32 - - Value: - Integer: - - I32 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 537828058i32 - - Value: - Integer: - - I32 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 716600292i32 - - Value: - Integer: - - I32 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387020273i32 - - Value: - Integer: - - I32 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199375617i32 - - Value: - Integer: - - I32 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 680337189i32 - - Value: - Integer: - - I32 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 818479931i32 - - Value: - Integer: - - I32 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893693281i32 - - Value: - Integer: - - I32 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 87377802i32 - - Value: - Integer: - - I32 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 84699261i32 - - Value: - Integer: - - I32 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 292826090i32 - - Value: - Integer: - - I32 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 569171405i32 - - Value: - Integer: - - I32 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387436237i32 - - Value: - Integer: - - I32 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 150682190i32 - - Value: - Integer: - - I32 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 888770419i32 - - Value: - Integer: - - I32 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 824696431i32 - - Value: - Integer: - - I32 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 765659803i32 - - Value: - Integer: - - I32 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 270163693i32 - - Value: - Integer: - - I32 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 427940240i32 - - Value: - Integer: - - I32 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 504997332i32 - - Value: - Integer: - - I32 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 337808338i32 - - Value: - Integer: - - I32 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 907200008i32 - - Value: - Integer: - - I32 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 757177889i32 - - Value: - Integer: - - I32 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 696697188i32 - - Value: - Integer: - - I32 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 41376051i32 - - Value: - Integer: - - I32 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 496293518i32 - - Value: - Integer: - - I32 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 251218820i32 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i64.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i64.leo.out deleted file mode 100644 index 504aebf06e..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/i64.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - I64 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123i64 - - Value: - Integer: - - I64 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123i64 - - Value: - Integer: - - I64 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 456i64 - - Value: - Integer: - - I64 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 84 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i64 - - Value: - Integer: - - I64 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 404 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i64 - - Value: - Integer: - - I64 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 340130024i64 - - Value: - Integer: - - I64 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158951116i64 - - Value: - Integer: - - I64 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 155529659i64 - - Value: - Integer: - - I64 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 642023166i64 - - Value: - Integer: - - I64 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 228481736i64 - - Value: - Integer: - - I64 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469712960i64 - - Value: - Integer: - - I64 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 929437719i64 - - Value: - Integer: - - I64 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721072814i64 - - Value: - Integer: - - I64 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 363254789i64 - - Value: - Integer: - - I64 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 906732565i64 - - Value: - Integer: - - I64 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 288246391i64 - - Value: - Integer: - - I64 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 724940549i64 - - Value: - Integer: - - I64 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 487101620i64 - - Value: - Integer: - - I64 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 261373583i64 - - Value: - Integer: - - I64 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 891163927i64 - - Value: - Integer: - - I64 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 743967544i64 - - Value: - Integer: - - I64 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 8372586i64 - - Value: - Integer: - - I64 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 461793278i64 - - Value: - Integer: - - I64 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 806307045i64 - - Value: - Integer: - - I64 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 122764546i64 - - Value: - Integer: - - I64 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 356336181i64 - - Value: - Integer: - - I64 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158370903i64 - - Value: - Integer: - - I64 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 774460877i64 - - Value: - Integer: - - I64 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 557174131i64 - - Value: - Integer: - - I64 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 492401267i64 - - Value: - Integer: - - I64 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893445620i64 - - Value: - Integer: - - I64 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 957757048i64 - - Value: - Integer: - - I64 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721540649i64 - - Value: - Integer: - - I64 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 390746493i64 - - Value: - Integer: - - I64 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 211251725i64 - - Value: - Integer: - - I64 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 938266114i64 - - Value: - Integer: - - I64 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 156985870i64 - - Value: - Integer: - - I64 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 703831126i64 - - Value: - Integer: - - I64 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 729964155i64 - - Value: - Integer: - - I64 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 988151305i64 - - Value: - Integer: - - I64 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 320872435i64 - - Value: - Integer: - - I64 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 719287167i64 - - Value: - Integer: - - I64 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 152289486i64 - - Value: - Integer: - - I64 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 740067975i64 - - Value: - Integer: - - I64 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 728627816i64 - - Value: - Integer: - - I64 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 385008978i64 - - Value: - Integer: - - I64 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 553967635i64 - - Value: - Integer: - - I64 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 71980713i64 - - Value: - Integer: - - I64 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 519444716i64 - - Value: - Integer: - - I64 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 116499965i64 - - Value: - Integer: - - I64 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 717422268i64 - - Value: - Integer: - - I64 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 18966279i64 - - Value: - Integer: - - I64 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 22458638i64 - - Value: - Integer: - - I64 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 857282620i64 - - Value: - Integer: - - I64 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 920675898i64 - - Value: - Integer: - - I64 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 762235516i64 - - Value: - Integer: - - I64 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469018377i64 - - Value: - Integer: - - I64 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199986521i64 - - Value: - Integer: - - I64 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 536679358i64 - - Value: - Integer: - - I64 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 591399452i64 - - Value: - Integer: - - I64 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 83083158i64 - - Value: - Integer: - - I64 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 599449051i64 - - Value: - Integer: - - I64 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 445442318i64 - - Value: - Integer: - - I64 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 585486590i64 - - Value: - Integer: - - I64 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 209278800i64 - - Value: - Integer: - - I64 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 873568117i64 - - Value: - Integer: - - I64 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 664470940i64 - - Value: - Integer: - - I64 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 465262783i64 - - Value: - Integer: - - I64 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 605652874i64 - - Value: - Integer: - - I64 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 376803940i64 - - Value: - Integer: - - I64 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 965247040i64 - - Value: - Integer: - - I64 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 598474509i64 - - Value: - Integer: - - I64 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 845119918i64 - - Value: - Integer: - - I64 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 648159133i64 - - Value: - Integer: - - I64 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 669051032i64 - - Value: - Integer: - - I64 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 800600261i64 - - Value: - Integer: - - I64 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 434689764i64 - - Value: - Integer: - - I64 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 520060080i64 - - Value: - Integer: - - I64 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 804659385i64 - - Value: - Integer: - - I64 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 537828058i64 - - Value: - Integer: - - I64 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 716600292i64 - - Value: - Integer: - - I64 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387020273i64 - - Value: - Integer: - - I64 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199375617i64 - - Value: - Integer: - - I64 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 680337189i64 - - Value: - Integer: - - I64 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 818479931i64 - - Value: - Integer: - - I64 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893693281i64 - - Value: - Integer: - - I64 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 87377802i64 - - Value: - Integer: - - I64 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 84699261i64 - - Value: - Integer: - - I64 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 292826090i64 - - Value: - Integer: - - I64 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 569171405i64 - - Value: - Integer: - - I64 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387436237i64 - - Value: - Integer: - - I64 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 150682190i64 - - Value: - Integer: - - I64 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 888770419i64 - - Value: - Integer: - - I64 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 824696431i64 - - Value: - Integer: - - I64 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 765659803i64 - - Value: - Integer: - - I64 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 270163693i64 - - Value: - Integer: - - I64 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 427940240i64 - - Value: - Integer: - - I64 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 504997332i64 - - Value: - Integer: - - I64 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 337808338i64 - - Value: - Integer: - - I64 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 907200008i64 - - Value: - Integer: - - I64 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 757177889i64 - - Value: - Integer: - - I64 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 696697188i64 - - Value: - Integer: - - I64 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 41376051i64 - - Value: - Integer: - - I64 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 496293518i64 - - Value: - Integer: - - I64 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 251218820i64 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/i8.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/i8.leo.out deleted file mode 100644 index 89c2addd3e..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/i8.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - I8 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: 123i8 - - Value: - Integer: - - I8 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: 123i8 - - Value: - Integer: - - I8 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: 456i8 - - Value: - Integer: - - I8 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 83 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i8 - - Value: - Integer: - - I8 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 403 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i8 - - Value: - Integer: - - I8 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 340130024i8 - - Value: - Integer: - - I8 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 158951116i8 - - Value: - Integer: - - I8 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 155529659i8 - - Value: - Integer: - - I8 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 642023166i8 - - Value: - Integer: - - I8 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 228481736i8 - - Value: - Integer: - - I8 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 469712960i8 - - Value: - Integer: - - I8 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 929437719i8 - - Value: - Integer: - - I8 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 721072814i8 - - Value: - Integer: - - I8 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 363254789i8 - - Value: - Integer: - - I8 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 906732565i8 - - Value: - Integer: - - I8 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 288246391i8 - - Value: - Integer: - - I8 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 724940549i8 - - Value: - Integer: - - I8 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 487101620i8 - - Value: - Integer: - - I8 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 261373583i8 - - Value: - Integer: - - I8 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 891163927i8 - - Value: - Integer: - - I8 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 743967544i8 - - Value: - Integer: - - I8 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 8372586i8 - - Value: - Integer: - - I8 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 461793278i8 - - Value: - Integer: - - I8 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 806307045i8 - - Value: - Integer: - - I8 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 122764546i8 - - Value: - Integer: - - I8 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 356336181i8 - - Value: - Integer: - - I8 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 158370903i8 - - Value: - Integer: - - I8 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 774460877i8 - - Value: - Integer: - - I8 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 557174131i8 - - Value: - Integer: - - I8 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 492401267i8 - - Value: - Integer: - - I8 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 893445620i8 - - Value: - Integer: - - I8 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 957757048i8 - - Value: - Integer: - - I8 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 721540649i8 - - Value: - Integer: - - I8 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 390746493i8 - - Value: - Integer: - - I8 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 211251725i8 - - Value: - Integer: - - I8 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 938266114i8 - - Value: - Integer: - - I8 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 156985870i8 - - Value: - Integer: - - I8 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 703831126i8 - - Value: - Integer: - - I8 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 729964155i8 - - Value: - Integer: - - I8 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 988151305i8 - - Value: - Integer: - - I8 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 320872435i8 - - Value: - Integer: - - I8 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 719287167i8 - - Value: - Integer: - - I8 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 152289486i8 - - Value: - Integer: - - I8 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 740067975i8 - - Value: - Integer: - - I8 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 728627816i8 - - Value: - Integer: - - I8 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 385008978i8 - - Value: - Integer: - - I8 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 553967635i8 - - Value: - Integer: - - I8 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 71980713i8 - - Value: - Integer: - - I8 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 519444716i8 - - Value: - Integer: - - I8 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 116499965i8 - - Value: - Integer: - - I8 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 717422268i8 - - Value: - Integer: - - I8 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 18966279i8 - - Value: - Integer: - - I8 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 22458638i8 - - Value: - Integer: - - I8 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 857282620i8 - - Value: - Integer: - - I8 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 920675898i8 - - Value: - Integer: - - I8 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 762235516i8 - - Value: - Integer: - - I8 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 469018377i8 - - Value: - Integer: - - I8 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 199986521i8 - - Value: - Integer: - - I8 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 536679358i8 - - Value: - Integer: - - I8 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 591399452i8 - - Value: - Integer: - - I8 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 83083158i8 - - Value: - Integer: - - I8 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 599449051i8 - - Value: - Integer: - - I8 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 445442318i8 - - Value: - Integer: - - I8 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 585486590i8 - - Value: - Integer: - - I8 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 209278800i8 - - Value: - Integer: - - I8 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 873568117i8 - - Value: - Integer: - - I8 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 664470940i8 - - Value: - Integer: - - I8 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 465262783i8 - - Value: - Integer: - - I8 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 605652874i8 - - Value: - Integer: - - I8 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 376803940i8 - - Value: - Integer: - - I8 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 965247040i8 - - Value: - Integer: - - I8 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 598474509i8 - - Value: - Integer: - - I8 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 845119918i8 - - Value: - Integer: - - I8 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 648159133i8 - - Value: - Integer: - - I8 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 669051032i8 - - Value: - Integer: - - I8 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 800600261i8 - - Value: - Integer: - - I8 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 434689764i8 - - Value: - Integer: - - I8 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 520060080i8 - - Value: - Integer: - - I8 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 804659385i8 - - Value: - Integer: - - I8 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 537828058i8 - - Value: - Integer: - - I8 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 716600292i8 - - Value: - Integer: - - I8 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 387020273i8 - - Value: - Integer: - - I8 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 199375617i8 - - Value: - Integer: - - I8 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 680337189i8 - - Value: - Integer: - - I8 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 818479931i8 - - Value: - Integer: - - I8 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 893693281i8 - - Value: - Integer: - - I8 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 87377802i8 - - Value: - Integer: - - I8 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 84699261i8 - - Value: - Integer: - - I8 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 292826090i8 - - Value: - Integer: - - I8 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 569171405i8 - - Value: - Integer: - - I8 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 387436237i8 - - Value: - Integer: - - I8 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 150682190i8 - - Value: - Integer: - - I8 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 888770419i8 - - Value: - Integer: - - I8 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 824696431i8 - - Value: - Integer: - - I8 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 765659803i8 - - Value: - Integer: - - I8 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 270163693i8 - - Value: - Integer: - - I8 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 427940240i8 - - Value: - Integer: - - I8 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 504997332i8 - - Value: - Integer: - - I8 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 337808338i8 - - Value: - Integer: - - I8 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 907200008i8 - - Value: - Integer: - - I8 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 757177889i8 - - Value: - Integer: - - I8 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 696697188i8 - - Value: - Integer: - - I8 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 41376051i8 - - Value: - Integer: - - I8 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 496293518i8 - - Value: - Integer: - - I8 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 251218820i8 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/mono_group.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/mono_group.leo.out deleted file mode 100644 index e472dd036a..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/mono_group.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Group: - Single: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 123group - - Value: - Group: - Single: - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 123group - - Value: - Group: - Single: - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: 456group - - Value: - Group: - Single: - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 86 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802group - - Value: - Group: - Single: - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 406 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802group - - Value: - Group: - Single: - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 340130024group - - Value: - Group: - Single: - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 158951116group - - Value: - Group: - Single: - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 155529659group - - Value: - Group: - Single: - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 642023166group - - Value: - Group: - Single: - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 228481736group - - Value: - Group: - Single: - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 469712960group - - Value: - Group: - Single: - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 929437719group - - Value: - Group: - Single: - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 721072814group - - Value: - Group: - Single: - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 363254789group - - Value: - Group: - Single: - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 906732565group - - Value: - Group: - Single: - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 288246391group - - Value: - Group: - Single: - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 724940549group - - Value: - Group: - Single: - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 487101620group - - Value: - Group: - Single: - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 261373583group - - Value: - Group: - Single: - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 891163927group - - Value: - Group: - Single: - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 743967544group - - Value: - Group: - Single: - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 8372586group - - Value: - Group: - Single: - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 461793278group - - Value: - Group: - Single: - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 806307045group - - Value: - Group: - Single: - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 122764546group - - Value: - Group: - Single: - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 356336181group - - Value: - Group: - Single: - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 158370903group - - Value: - Group: - Single: - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 774460877group - - Value: - Group: - Single: - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 557174131group - - Value: - Group: - Single: - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 492401267group - - Value: - Group: - Single: - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 893445620group - - Value: - Group: - Single: - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 957757048group - - Value: - Group: - Single: - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 721540649group - - Value: - Group: - Single: - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 390746493group - - Value: - Group: - Single: - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 211251725group - - Value: - Group: - Single: - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 938266114group - - Value: - Group: - Single: - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 156985870group - - Value: - Group: - Single: - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 703831126group - - Value: - Group: - Single: - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 729964155group - - Value: - Group: - Single: - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 988151305group - - Value: - Group: - Single: - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 320872435group - - Value: - Group: - Single: - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 719287167group - - Value: - Group: - Single: - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 152289486group - - Value: - Group: - Single: - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 740067975group - - Value: - Group: - Single: - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 728627816group - - Value: - Group: - Single: - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 385008978group - - Value: - Group: - Single: - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 553967635group - - Value: - Group: - Single: - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 71980713group - - Value: - Group: - Single: - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 519444716group - - Value: - Group: - Single: - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 116499965group - - Value: - Group: - Single: - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 717422268group - - Value: - Group: - Single: - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 18966279group - - Value: - Group: - Single: - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 22458638group - - Value: - Group: - Single: - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 857282620group - - Value: - Group: - Single: - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 920675898group - - Value: - Group: - Single: - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 762235516group - - Value: - Group: - Single: - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 469018377group - - Value: - Group: - Single: - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 199986521group - - Value: - Group: - Single: - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 536679358group - - Value: - Group: - Single: - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 591399452group - - Value: - Group: - Single: - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 83083158group - - Value: - Group: - Single: - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 599449051group - - Value: - Group: - Single: - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 445442318group - - Value: - Group: - Single: - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 585486590group - - Value: - Group: - Single: - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 209278800group - - Value: - Group: - Single: - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 873568117group - - Value: - Group: - Single: - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 664470940group - - Value: - Group: - Single: - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 465262783group - - Value: - Group: - Single: - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 605652874group - - Value: - Group: - Single: - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 376803940group - - Value: - Group: - Single: - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 965247040group - - Value: - Group: - Single: - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 598474509group - - Value: - Group: - Single: - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 845119918group - - Value: - Group: - Single: - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 648159133group - - Value: - Group: - Single: - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 669051032group - - Value: - Group: - Single: - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 800600261group - - Value: - Group: - Single: - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 434689764group - - Value: - Group: - Single: - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 520060080group - - Value: - Group: - Single: - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 804659385group - - Value: - Group: - Single: - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 537828058group - - Value: - Group: - Single: - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 716600292group - - Value: - Group: - Single: - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 387020273group - - Value: - Group: - Single: - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 199375617group - - Value: - Group: - Single: - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 680337189group - - Value: - Group: - Single: - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 818479931group - - Value: - Group: - Single: - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 893693281group - - Value: - Group: - Single: - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 87377802group - - Value: - Group: - Single: - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 84699261group - - Value: - Group: - Single: - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 292826090group - - Value: - Group: - Single: - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 569171405group - - Value: - Group: - Single: - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 387436237group - - Value: - Group: - Single: - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 150682190group - - Value: - Group: - Single: - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 888770419group - - Value: - Group: - Single: - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 824696431group - - Value: - Group: - Single: - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 765659803group - - Value: - Group: - Single: - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 270163693group - - Value: - Group: - Single: - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 427940240group - - Value: - Group: - Single: - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 504997332group - - Value: - Group: - Single: - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 337808338group - - Value: - Group: - Single: - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 907200008group - - Value: - Group: - Single: - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 757177889group - - Value: - Group: - Single: - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 696697188group - - Value: - Group: - Single: - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 41376051group - - Value: - Group: - Single: - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 496293518group - - Value: - Group: - Single: - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: 251218820group diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u128.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u128.leo.out deleted file mode 100644 index 63ce5b7b2d..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/u128.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - U128 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 123u128 - - Value: - Integer: - - U128 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 123u128 - - Value: - Integer: - - U128 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: 456u128 - - Value: - Integer: - - U128 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 85 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u128 - - Value: - Integer: - - U128 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 405 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u128 - - Value: - Integer: - - U128 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 340130024u128 - - Value: - Integer: - - U128 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 158951116u128 - - Value: - Integer: - - U128 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 155529659u128 - - Value: - Integer: - - U128 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 642023166u128 - - Value: - Integer: - - U128 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 228481736u128 - - Value: - Integer: - - U128 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 469712960u128 - - Value: - Integer: - - U128 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 929437719u128 - - Value: - Integer: - - U128 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 721072814u128 - - Value: - Integer: - - U128 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 363254789u128 - - Value: - Integer: - - U128 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 906732565u128 - - Value: - Integer: - - U128 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 288246391u128 - - Value: - Integer: - - U128 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 724940549u128 - - Value: - Integer: - - U128 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 487101620u128 - - Value: - Integer: - - U128 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 261373583u128 - - Value: - Integer: - - U128 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 891163927u128 - - Value: - Integer: - - U128 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 743967544u128 - - Value: - Integer: - - U128 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 8372586u128 - - Value: - Integer: - - U128 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 461793278u128 - - Value: - Integer: - - U128 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 806307045u128 - - Value: - Integer: - - U128 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 122764546u128 - - Value: - Integer: - - U128 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 356336181u128 - - Value: - Integer: - - U128 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 158370903u128 - - Value: - Integer: - - U128 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 774460877u128 - - Value: - Integer: - - U128 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 557174131u128 - - Value: - Integer: - - U128 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 492401267u128 - - Value: - Integer: - - U128 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 893445620u128 - - Value: - Integer: - - U128 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 957757048u128 - - Value: - Integer: - - U128 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 721540649u128 - - Value: - Integer: - - U128 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 390746493u128 - - Value: - Integer: - - U128 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 211251725u128 - - Value: - Integer: - - U128 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 938266114u128 - - Value: - Integer: - - U128 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 156985870u128 - - Value: - Integer: - - U128 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 703831126u128 - - Value: - Integer: - - U128 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 729964155u128 - - Value: - Integer: - - U128 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 988151305u128 - - Value: - Integer: - - U128 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 320872435u128 - - Value: - Integer: - - U128 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 719287167u128 - - Value: - Integer: - - U128 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 152289486u128 - - Value: - Integer: - - U128 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 740067975u128 - - Value: - Integer: - - U128 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 728627816u128 - - Value: - Integer: - - U128 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 385008978u128 - - Value: - Integer: - - U128 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 553967635u128 - - Value: - Integer: - - U128 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 71980713u128 - - Value: - Integer: - - U128 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 519444716u128 - - Value: - Integer: - - U128 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 116499965u128 - - Value: - Integer: - - U128 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 717422268u128 - - Value: - Integer: - - U128 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 18966279u128 - - Value: - Integer: - - U128 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 22458638u128 - - Value: - Integer: - - U128 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 857282620u128 - - Value: - Integer: - - U128 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 920675898u128 - - Value: - Integer: - - U128 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 762235516u128 - - Value: - Integer: - - U128 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 469018377u128 - - Value: - Integer: - - U128 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 199986521u128 - - Value: - Integer: - - U128 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 536679358u128 - - Value: - Integer: - - U128 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 591399452u128 - - Value: - Integer: - - U128 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 83083158u128 - - Value: - Integer: - - U128 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 599449051u128 - - Value: - Integer: - - U128 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 445442318u128 - - Value: - Integer: - - U128 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 585486590u128 - - Value: - Integer: - - U128 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 209278800u128 - - Value: - Integer: - - U128 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 873568117u128 - - Value: - Integer: - - U128 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 664470940u128 - - Value: - Integer: - - U128 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 465262783u128 - - Value: - Integer: - - U128 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 605652874u128 - - Value: - Integer: - - U128 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 376803940u128 - - Value: - Integer: - - U128 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 965247040u128 - - Value: - Integer: - - U128 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 598474509u128 - - Value: - Integer: - - U128 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 845119918u128 - - Value: - Integer: - - U128 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 648159133u128 - - Value: - Integer: - - U128 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 669051032u128 - - Value: - Integer: - - U128 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 800600261u128 - - Value: - Integer: - - U128 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 434689764u128 - - Value: - Integer: - - U128 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 520060080u128 - - Value: - Integer: - - U128 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 804659385u128 - - Value: - Integer: - - U128 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 537828058u128 - - Value: - Integer: - - U128 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 716600292u128 - - Value: - Integer: - - U128 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 387020273u128 - - Value: - Integer: - - U128 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 199375617u128 - - Value: - Integer: - - U128 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 680337189u128 - - Value: - Integer: - - U128 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 818479931u128 - - Value: - Integer: - - U128 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 893693281u128 - - Value: - Integer: - - U128 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 87377802u128 - - Value: - Integer: - - U128 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 84699261u128 - - Value: - Integer: - - U128 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 292826090u128 - - Value: - Integer: - - U128 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 569171405u128 - - Value: - Integer: - - U128 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 387436237u128 - - Value: - Integer: - - U128 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 150682190u128 - - Value: - Integer: - - U128 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 888770419u128 - - Value: - Integer: - - U128 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 824696431u128 - - Value: - Integer: - - U128 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 765659803u128 - - Value: - Integer: - - U128 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 270163693u128 - - Value: - Integer: - - U128 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 427940240u128 - - Value: - Integer: - - U128 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 504997332u128 - - Value: - Integer: - - U128 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 337808338u128 - - Value: - Integer: - - U128 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 907200008u128 - - Value: - Integer: - - U128 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 757177889u128 - - Value: - Integer: - - U128 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 696697188u128 - - Value: - Integer: - - U128 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 41376051u128 - - Value: - Integer: - - U128 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 496293518u128 - - Value: - Integer: - - U128 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 14 - path: "" - content: 251218820u128 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u16.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u16.leo.out deleted file mode 100644 index 4202a4c6b8..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/u16.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - U16 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123u16 - - Value: - Integer: - - U16 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123u16 - - Value: - Integer: - - U16 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 456u16 - - Value: - Integer: - - U16 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 84 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u16 - - Value: - Integer: - - U16 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 404 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u16 - - Value: - Integer: - - U16 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 340130024u16 - - Value: - Integer: - - U16 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158951116u16 - - Value: - Integer: - - U16 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 155529659u16 - - Value: - Integer: - - U16 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 642023166u16 - - Value: - Integer: - - U16 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 228481736u16 - - Value: - Integer: - - U16 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469712960u16 - - Value: - Integer: - - U16 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 929437719u16 - - Value: - Integer: - - U16 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721072814u16 - - Value: - Integer: - - U16 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 363254789u16 - - Value: - Integer: - - U16 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 906732565u16 - - Value: - Integer: - - U16 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 288246391u16 - - Value: - Integer: - - U16 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 724940549u16 - - Value: - Integer: - - U16 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 487101620u16 - - Value: - Integer: - - U16 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 261373583u16 - - Value: - Integer: - - U16 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 891163927u16 - - Value: - Integer: - - U16 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 743967544u16 - - Value: - Integer: - - U16 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 8372586u16 - - Value: - Integer: - - U16 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 461793278u16 - - Value: - Integer: - - U16 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 806307045u16 - - Value: - Integer: - - U16 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 122764546u16 - - Value: - Integer: - - U16 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 356336181u16 - - Value: - Integer: - - U16 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158370903u16 - - Value: - Integer: - - U16 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 774460877u16 - - Value: - Integer: - - U16 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 557174131u16 - - Value: - Integer: - - U16 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 492401267u16 - - Value: - Integer: - - U16 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893445620u16 - - Value: - Integer: - - U16 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 957757048u16 - - Value: - Integer: - - U16 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721540649u16 - - Value: - Integer: - - U16 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 390746493u16 - - Value: - Integer: - - U16 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 211251725u16 - - Value: - Integer: - - U16 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 938266114u16 - - Value: - Integer: - - U16 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 156985870u16 - - Value: - Integer: - - U16 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 703831126u16 - - Value: - Integer: - - U16 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 729964155u16 - - Value: - Integer: - - U16 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 988151305u16 - - Value: - Integer: - - U16 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 320872435u16 - - Value: - Integer: - - U16 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 719287167u16 - - Value: - Integer: - - U16 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 152289486u16 - - Value: - Integer: - - U16 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 740067975u16 - - Value: - Integer: - - U16 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 728627816u16 - - Value: - Integer: - - U16 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 385008978u16 - - Value: - Integer: - - U16 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 553967635u16 - - Value: - Integer: - - U16 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 71980713u16 - - Value: - Integer: - - U16 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 519444716u16 - - Value: - Integer: - - U16 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 116499965u16 - - Value: - Integer: - - U16 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 717422268u16 - - Value: - Integer: - - U16 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 18966279u16 - - Value: - Integer: - - U16 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 22458638u16 - - Value: - Integer: - - U16 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 857282620u16 - - Value: - Integer: - - U16 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 920675898u16 - - Value: - Integer: - - U16 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 762235516u16 - - Value: - Integer: - - U16 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469018377u16 - - Value: - Integer: - - U16 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199986521u16 - - Value: - Integer: - - U16 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 536679358u16 - - Value: - Integer: - - U16 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 591399452u16 - - Value: - Integer: - - U16 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 83083158u16 - - Value: - Integer: - - U16 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 599449051u16 - - Value: - Integer: - - U16 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 445442318u16 - - Value: - Integer: - - U16 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 585486590u16 - - Value: - Integer: - - U16 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 209278800u16 - - Value: - Integer: - - U16 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 873568117u16 - - Value: - Integer: - - U16 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 664470940u16 - - Value: - Integer: - - U16 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 465262783u16 - - Value: - Integer: - - U16 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 605652874u16 - - Value: - Integer: - - U16 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 376803940u16 - - Value: - Integer: - - U16 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 965247040u16 - - Value: - Integer: - - U16 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 598474509u16 - - Value: - Integer: - - U16 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 845119918u16 - - Value: - Integer: - - U16 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 648159133u16 - - Value: - Integer: - - U16 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 669051032u16 - - Value: - Integer: - - U16 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 800600261u16 - - Value: - Integer: - - U16 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 434689764u16 - - Value: - Integer: - - U16 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 520060080u16 - - Value: - Integer: - - U16 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 804659385u16 - - Value: - Integer: - - U16 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 537828058u16 - - Value: - Integer: - - U16 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 716600292u16 - - Value: - Integer: - - U16 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387020273u16 - - Value: - Integer: - - U16 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199375617u16 - - Value: - Integer: - - U16 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 680337189u16 - - Value: - Integer: - - U16 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 818479931u16 - - Value: - Integer: - - U16 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893693281u16 - - Value: - Integer: - - U16 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 87377802u16 - - Value: - Integer: - - U16 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 84699261u16 - - Value: - Integer: - - U16 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 292826090u16 - - Value: - Integer: - - U16 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 569171405u16 - - Value: - Integer: - - U16 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387436237u16 - - Value: - Integer: - - U16 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 150682190u16 - - Value: - Integer: - - U16 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 888770419u16 - - Value: - Integer: - - U16 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 824696431u16 - - Value: - Integer: - - U16 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 765659803u16 - - Value: - Integer: - - U16 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 270163693u16 - - Value: - Integer: - - U16 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 427940240u16 - - Value: - Integer: - - U16 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 504997332u16 - - Value: - Integer: - - U16 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 337808338u16 - - Value: - Integer: - - U16 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 907200008u16 - - Value: - Integer: - - U16 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 757177889u16 - - Value: - Integer: - - U16 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 696697188u16 - - Value: - Integer: - - U16 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 41376051u16 - - Value: - Integer: - - U16 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 496293518u16 - - Value: - Integer: - - U16 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 251218820u16 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u32.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u32.leo.out deleted file mode 100644 index aa6c30759b..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/u32.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - U32 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123u32 - - Value: - Integer: - - U32 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123u32 - - Value: - Integer: - - U32 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 456u32 - - Value: - Integer: - - U32 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 84 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u32 - - Value: - Integer: - - U32 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 404 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u32 - - Value: - Integer: - - U32 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 340130024u32 - - Value: - Integer: - - U32 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158951116u32 - - Value: - Integer: - - U32 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 155529659u32 - - Value: - Integer: - - U32 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 642023166u32 - - Value: - Integer: - - U32 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 228481736u32 - - Value: - Integer: - - U32 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469712960u32 - - Value: - Integer: - - U32 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 929437719u32 - - Value: - Integer: - - U32 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721072814u32 - - Value: - Integer: - - U32 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 363254789u32 - - Value: - Integer: - - U32 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 906732565u32 - - Value: - Integer: - - U32 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 288246391u32 - - Value: - Integer: - - U32 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 724940549u32 - - Value: - Integer: - - U32 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 487101620u32 - - Value: - Integer: - - U32 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 261373583u32 - - Value: - Integer: - - U32 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 891163927u32 - - Value: - Integer: - - U32 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 743967544u32 - - Value: - Integer: - - U32 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 8372586u32 - - Value: - Integer: - - U32 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 461793278u32 - - Value: - Integer: - - U32 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 806307045u32 - - Value: - Integer: - - U32 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 122764546u32 - - Value: - Integer: - - U32 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 356336181u32 - - Value: - Integer: - - U32 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158370903u32 - - Value: - Integer: - - U32 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 774460877u32 - - Value: - Integer: - - U32 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 557174131u32 - - Value: - Integer: - - U32 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 492401267u32 - - Value: - Integer: - - U32 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893445620u32 - - Value: - Integer: - - U32 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 957757048u32 - - Value: - Integer: - - U32 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721540649u32 - - Value: - Integer: - - U32 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 390746493u32 - - Value: - Integer: - - U32 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 211251725u32 - - Value: - Integer: - - U32 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 938266114u32 - - Value: - Integer: - - U32 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 156985870u32 - - Value: - Integer: - - U32 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 703831126u32 - - Value: - Integer: - - U32 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 729964155u32 - - Value: - Integer: - - U32 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 988151305u32 - - Value: - Integer: - - U32 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 320872435u32 - - Value: - Integer: - - U32 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 719287167u32 - - Value: - Integer: - - U32 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 152289486u32 - - Value: - Integer: - - U32 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 740067975u32 - - Value: - Integer: - - U32 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 728627816u32 - - Value: - Integer: - - U32 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 385008978u32 - - Value: - Integer: - - U32 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 553967635u32 - - Value: - Integer: - - U32 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 71980713u32 - - Value: - Integer: - - U32 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 519444716u32 - - Value: - Integer: - - U32 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 116499965u32 - - Value: - Integer: - - U32 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 717422268u32 - - Value: - Integer: - - U32 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 18966279u32 - - Value: - Integer: - - U32 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 22458638u32 - - Value: - Integer: - - U32 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 857282620u32 - - Value: - Integer: - - U32 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 920675898u32 - - Value: - Integer: - - U32 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 762235516u32 - - Value: - Integer: - - U32 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469018377u32 - - Value: - Integer: - - U32 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199986521u32 - - Value: - Integer: - - U32 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 536679358u32 - - Value: - Integer: - - U32 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 591399452u32 - - Value: - Integer: - - U32 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 83083158u32 - - Value: - Integer: - - U32 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 599449051u32 - - Value: - Integer: - - U32 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 445442318u32 - - Value: - Integer: - - U32 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 585486590u32 - - Value: - Integer: - - U32 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 209278800u32 - - Value: - Integer: - - U32 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 873568117u32 - - Value: - Integer: - - U32 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 664470940u32 - - Value: - Integer: - - U32 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 465262783u32 - - Value: - Integer: - - U32 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 605652874u32 - - Value: - Integer: - - U32 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 376803940u32 - - Value: - Integer: - - U32 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 965247040u32 - - Value: - Integer: - - U32 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 598474509u32 - - Value: - Integer: - - U32 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 845119918u32 - - Value: - Integer: - - U32 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 648159133u32 - - Value: - Integer: - - U32 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 669051032u32 - - Value: - Integer: - - U32 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 800600261u32 - - Value: - Integer: - - U32 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 434689764u32 - - Value: - Integer: - - U32 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 520060080u32 - - Value: - Integer: - - U32 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 804659385u32 - - Value: - Integer: - - U32 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 537828058u32 - - Value: - Integer: - - U32 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 716600292u32 - - Value: - Integer: - - U32 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387020273u32 - - Value: - Integer: - - U32 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199375617u32 - - Value: - Integer: - - U32 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 680337189u32 - - Value: - Integer: - - U32 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 818479931u32 - - Value: - Integer: - - U32 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893693281u32 - - Value: - Integer: - - U32 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 87377802u32 - - Value: - Integer: - - U32 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 84699261u32 - - Value: - Integer: - - U32 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 292826090u32 - - Value: - Integer: - - U32 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 569171405u32 - - Value: - Integer: - - U32 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387436237u32 - - Value: - Integer: - - U32 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 150682190u32 - - Value: - Integer: - - U32 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 888770419u32 - - Value: - Integer: - - U32 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 824696431u32 - - Value: - Integer: - - U32 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 765659803u32 - - Value: - Integer: - - U32 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 270163693u32 - - Value: - Integer: - - U32 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 427940240u32 - - Value: - Integer: - - U32 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 504997332u32 - - Value: - Integer: - - U32 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 337808338u32 - - Value: - Integer: - - U32 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 907200008u32 - - Value: - Integer: - - U32 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 757177889u32 - - Value: - Integer: - - U32 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 696697188u32 - - Value: - Integer: - - U32 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 41376051u32 - - Value: - Integer: - - U32 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 496293518u32 - - Value: - Integer: - - U32 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 251218820u32 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u64.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u64.leo.out deleted file mode 100644 index 7241032af4..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/u64.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - U64 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123u64 - - Value: - Integer: - - U64 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 123u64 - - Value: - Integer: - - U64 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: 456u64 - - Value: - Integer: - - U64 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 84 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u64 - - Value: - Integer: - - U64 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 404 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u64 - - Value: - Integer: - - U64 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 340130024u64 - - Value: - Integer: - - U64 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158951116u64 - - Value: - Integer: - - U64 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 155529659u64 - - Value: - Integer: - - U64 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 642023166u64 - - Value: - Integer: - - U64 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 228481736u64 - - Value: - Integer: - - U64 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469712960u64 - - Value: - Integer: - - U64 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 929437719u64 - - Value: - Integer: - - U64 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721072814u64 - - Value: - Integer: - - U64 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 363254789u64 - - Value: - Integer: - - U64 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 906732565u64 - - Value: - Integer: - - U64 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 288246391u64 - - Value: - Integer: - - U64 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 724940549u64 - - Value: - Integer: - - U64 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 487101620u64 - - Value: - Integer: - - U64 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 261373583u64 - - Value: - Integer: - - U64 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 891163927u64 - - Value: - Integer: - - U64 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 743967544u64 - - Value: - Integer: - - U64 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 8372586u64 - - Value: - Integer: - - U64 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 461793278u64 - - Value: - Integer: - - U64 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 806307045u64 - - Value: - Integer: - - U64 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 122764546u64 - - Value: - Integer: - - U64 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 356336181u64 - - Value: - Integer: - - U64 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 158370903u64 - - Value: - Integer: - - U64 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 774460877u64 - - Value: - Integer: - - U64 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 557174131u64 - - Value: - Integer: - - U64 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 492401267u64 - - Value: - Integer: - - U64 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893445620u64 - - Value: - Integer: - - U64 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 957757048u64 - - Value: - Integer: - - U64 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 721540649u64 - - Value: - Integer: - - U64 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 390746493u64 - - Value: - Integer: - - U64 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 211251725u64 - - Value: - Integer: - - U64 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 938266114u64 - - Value: - Integer: - - U64 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 156985870u64 - - Value: - Integer: - - U64 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 703831126u64 - - Value: - Integer: - - U64 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 729964155u64 - - Value: - Integer: - - U64 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 988151305u64 - - Value: - Integer: - - U64 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 320872435u64 - - Value: - Integer: - - U64 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 719287167u64 - - Value: - Integer: - - U64 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 152289486u64 - - Value: - Integer: - - U64 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 740067975u64 - - Value: - Integer: - - U64 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 728627816u64 - - Value: - Integer: - - U64 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 385008978u64 - - Value: - Integer: - - U64 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 553967635u64 - - Value: - Integer: - - U64 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 71980713u64 - - Value: - Integer: - - U64 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 519444716u64 - - Value: - Integer: - - U64 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 116499965u64 - - Value: - Integer: - - U64 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 717422268u64 - - Value: - Integer: - - U64 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 18966279u64 - - Value: - Integer: - - U64 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 22458638u64 - - Value: - Integer: - - U64 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 857282620u64 - - Value: - Integer: - - U64 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 920675898u64 - - Value: - Integer: - - U64 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 762235516u64 - - Value: - Integer: - - U64 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 469018377u64 - - Value: - Integer: - - U64 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199986521u64 - - Value: - Integer: - - U64 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 536679358u64 - - Value: - Integer: - - U64 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 591399452u64 - - Value: - Integer: - - U64 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 83083158u64 - - Value: - Integer: - - U64 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 599449051u64 - - Value: - Integer: - - U64 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 445442318u64 - - Value: - Integer: - - U64 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 585486590u64 - - Value: - Integer: - - U64 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 209278800u64 - - Value: - Integer: - - U64 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 873568117u64 - - Value: - Integer: - - U64 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 664470940u64 - - Value: - Integer: - - U64 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 465262783u64 - - Value: - Integer: - - U64 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 605652874u64 - - Value: - Integer: - - U64 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 376803940u64 - - Value: - Integer: - - U64 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 965247040u64 - - Value: - Integer: - - U64 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 598474509u64 - - Value: - Integer: - - U64 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 845119918u64 - - Value: - Integer: - - U64 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 648159133u64 - - Value: - Integer: - - U64 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 669051032u64 - - Value: - Integer: - - U64 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 800600261u64 - - Value: - Integer: - - U64 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 434689764u64 - - Value: - Integer: - - U64 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 520060080u64 - - Value: - Integer: - - U64 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 804659385u64 - - Value: - Integer: - - U64 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 537828058u64 - - Value: - Integer: - - U64 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 716600292u64 - - Value: - Integer: - - U64 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387020273u64 - - Value: - Integer: - - U64 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 199375617u64 - - Value: - Integer: - - U64 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 680337189u64 - - Value: - Integer: - - U64 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 818479931u64 - - Value: - Integer: - - U64 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 893693281u64 - - Value: - Integer: - - U64 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 87377802u64 - - Value: - Integer: - - U64 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 84699261u64 - - Value: - Integer: - - U64 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 292826090u64 - - Value: - Integer: - - U64 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 569171405u64 - - Value: - Integer: - - U64 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 387436237u64 - - Value: - Integer: - - U64 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 150682190u64 - - Value: - Integer: - - U64 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 888770419u64 - - Value: - Integer: - - U64 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 824696431u64 - - Value: - Integer: - - U64 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 765659803u64 - - Value: - Integer: - - U64 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 270163693u64 - - Value: - Integer: - - U64 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 427940240u64 - - Value: - Integer: - - U64 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 504997332u64 - - Value: - Integer: - - U64 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 337808338u64 - - Value: - Integer: - - U64 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 907200008u64 - - Value: - Integer: - - U64 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 757177889u64 - - Value: - Integer: - - U64 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 696697188u64 - - Value: - Integer: - - U64 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 41376051u64 - - Value: - Integer: - - U64 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 496293518u64 - - Value: - Integer: - - U64 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 13 - path: "" - content: 251218820u64 diff --git a/tests/expectations/parser/parser/expression/literal/int_parse/u8.leo.out b/tests/expectations/parser/parser/expression/literal/int_parse/u8.leo.out deleted file mode 100644 index 89d2c66c27..0000000000 --- a/tests/expectations/parser/parser/expression/literal/int_parse/u8.leo.out +++ /dev/null @@ -1,1159 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Value: - Integer: - - U8 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: 123u8 - - Value: - Integer: - - U8 - - "123" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: 123u8 - - Value: - Integer: - - U8 - - "456" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: 456u8 - - Value: - Integer: - - U8 - - "87377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 83 - path: "" - content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u8 - - Value: - Integer: - - U8 - - "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 403 - path: "" - content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u8 - - Value: - Integer: - - U8 - - "340130024" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 340130024u8 - - Value: - Integer: - - U8 - - "158951116" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 158951116u8 - - Value: - Integer: - - U8 - - "155529659" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 155529659u8 - - Value: - Integer: - - U8 - - "642023166" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 642023166u8 - - Value: - Integer: - - U8 - - "228481736" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 228481736u8 - - Value: - Integer: - - U8 - - "469712960" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 469712960u8 - - Value: - Integer: - - U8 - - "929437719" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 929437719u8 - - Value: - Integer: - - U8 - - "721072814" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 721072814u8 - - Value: - Integer: - - U8 - - "363254789" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 363254789u8 - - Value: - Integer: - - U8 - - "906732565" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 906732565u8 - - Value: - Integer: - - U8 - - "288246391" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 288246391u8 - - Value: - Integer: - - U8 - - "724940549" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 724940549u8 - - Value: - Integer: - - U8 - - "487101620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 487101620u8 - - Value: - Integer: - - U8 - - "261373583" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 261373583u8 - - Value: - Integer: - - U8 - - "891163927" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 891163927u8 - - Value: - Integer: - - U8 - - "743967544" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 743967544u8 - - Value: - Integer: - - U8 - - "8372586" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: 8372586u8 - - Value: - Integer: - - U8 - - "461793278" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 461793278u8 - - Value: - Integer: - - U8 - - "806307045" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 806307045u8 - - Value: - Integer: - - U8 - - "122764546" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 122764546u8 - - Value: - Integer: - - U8 - - "356336181" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 356336181u8 - - Value: - Integer: - - U8 - - "158370903" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 158370903u8 - - Value: - Integer: - - U8 - - "774460877" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 774460877u8 - - Value: - Integer: - - U8 - - "557174131" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 557174131u8 - - Value: - Integer: - - U8 - - "492401267" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 492401267u8 - - Value: - Integer: - - U8 - - "893445620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 893445620u8 - - Value: - Integer: - - U8 - - "957757048" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 957757048u8 - - Value: - Integer: - - U8 - - "721540649" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 721540649u8 - - Value: - Integer: - - U8 - - "390746493" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 390746493u8 - - Value: - Integer: - - U8 - - "211251725" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 211251725u8 - - Value: - Integer: - - U8 - - "938266114" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 938266114u8 - - Value: - Integer: - - U8 - - "156985870" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 156985870u8 - - Value: - Integer: - - U8 - - "703831126" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 703831126u8 - - Value: - Integer: - - U8 - - "729964155" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 729964155u8 - - Value: - Integer: - - U8 - - "988151305" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 988151305u8 - - Value: - Integer: - - U8 - - "320872435" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 320872435u8 - - Value: - Integer: - - U8 - - "719287167" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 719287167u8 - - Value: - Integer: - - U8 - - "152289486" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 152289486u8 - - Value: - Integer: - - U8 - - "740067975" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 740067975u8 - - Value: - Integer: - - U8 - - "728627816" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 728627816u8 - - Value: - Integer: - - U8 - - "385008978" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 385008978u8 - - Value: - Integer: - - U8 - - "553967635" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 553967635u8 - - Value: - Integer: - - U8 - - "71980713" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 71980713u8 - - Value: - Integer: - - U8 - - "519444716" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 519444716u8 - - Value: - Integer: - - U8 - - "116499965" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 116499965u8 - - Value: - Integer: - - U8 - - "717422268" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 717422268u8 - - Value: - Integer: - - U8 - - "18966279" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 18966279u8 - - Value: - Integer: - - U8 - - "22458638" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 22458638u8 - - Value: - Integer: - - U8 - - "857282620" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 857282620u8 - - Value: - Integer: - - U8 - - "920675898" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 920675898u8 - - Value: - Integer: - - U8 - - "762235516" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 762235516u8 - - Value: - Integer: - - U8 - - "469018377" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 469018377u8 - - Value: - Integer: - - U8 - - "199986521" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 199986521u8 - - Value: - Integer: - - U8 - - "536679358" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 536679358u8 - - Value: - Integer: - - U8 - - "591399452" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 591399452u8 - - Value: - Integer: - - U8 - - "83083158" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 83083158u8 - - Value: - Integer: - - U8 - - "599449051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 599449051u8 - - Value: - Integer: - - U8 - - "445442318" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 445442318u8 - - Value: - Integer: - - U8 - - "585486590" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 585486590u8 - - Value: - Integer: - - U8 - - "209278800" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 209278800u8 - - Value: - Integer: - - U8 - - "873568117" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 873568117u8 - - Value: - Integer: - - U8 - - "664470940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 664470940u8 - - Value: - Integer: - - U8 - - "465262783" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 465262783u8 - - Value: - Integer: - - U8 - - "605652874" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 605652874u8 - - Value: - Integer: - - U8 - - "376803940" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 376803940u8 - - Value: - Integer: - - U8 - - "965247040" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 965247040u8 - - Value: - Integer: - - U8 - - "598474509" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 598474509u8 - - Value: - Integer: - - U8 - - "845119918" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 845119918u8 - - Value: - Integer: - - U8 - - "648159133" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 648159133u8 - - Value: - Integer: - - U8 - - "669051032" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 669051032u8 - - Value: - Integer: - - U8 - - "800600261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 800600261u8 - - Value: - Integer: - - U8 - - "434689764" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 434689764u8 - - Value: - Integer: - - U8 - - "520060080" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 520060080u8 - - Value: - Integer: - - U8 - - "804659385" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 804659385u8 - - Value: - Integer: - - U8 - - "537828058" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 537828058u8 - - Value: - Integer: - - U8 - - "716600292" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 716600292u8 - - Value: - Integer: - - U8 - - "387020273" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 387020273u8 - - Value: - Integer: - - U8 - - "199375617" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 199375617u8 - - Value: - Integer: - - U8 - - "680337189" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 680337189u8 - - Value: - Integer: - - U8 - - "818479931" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 818479931u8 - - Value: - Integer: - - U8 - - "893693281" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 893693281u8 - - Value: - Integer: - - U8 - - "87377802" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 87377802u8 - - Value: - Integer: - - U8 - - "84699261" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 84699261u8 - - Value: - Integer: - - U8 - - "292826090" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 292826090u8 - - Value: - Integer: - - U8 - - "569171405" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 569171405u8 - - Value: - Integer: - - U8 - - "387436237" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 387436237u8 - - Value: - Integer: - - U8 - - "150682190" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 150682190u8 - - Value: - Integer: - - U8 - - "888770419" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 888770419u8 - - Value: - Integer: - - U8 - - "824696431" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 824696431u8 - - Value: - Integer: - - U8 - - "765659803" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 765659803u8 - - Value: - Integer: - - U8 - - "270163693" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 270163693u8 - - Value: - Integer: - - U8 - - "427940240" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 427940240u8 - - Value: - Integer: - - U8 - - "504997332" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 504997332u8 - - Value: - Integer: - - U8 - - "337808338" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 337808338u8 - - Value: - Integer: - - U8 - - "907200008" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 907200008u8 - - Value: - Integer: - - U8 - - "757177889" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 757177889u8 - - Value: - Integer: - - U8 - - "696697188" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 696697188u8 - - Value: - Integer: - - U8 - - "41376051" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: 41376051u8 - - Value: - Integer: - - U8 - - "496293518" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 496293518u8 - - Value: - Integer: - - U8 - - "251218820" - - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: 251218820u8 diff --git a/tests/expectations/parser/parser/expression/literal/postfix_types.leo.out b/tests/expectations/parser/parser/expression/literal/postfix_types.leo.out deleted file mode 100644 index 00ff4531d4..0000000000 --- a/tests/expectations/parser/parser/expression/literal/postfix_types.leo.out +++ /dev/null @@ -1,62 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "'field' @ 1:1-6" - - "'Field' @ 1:1-6" - - "'fielD' @ 1:1-6" - - "'FIELD' @ 1:1-6" - - "'group' @ 1:1-6" - - "'Group' @ 1:1-6" - - "'grouP' @ 1:1-6" - - "'GROUP' @ 1:1-6" - - "'u8' @ 1:1-3" - - "'u16' @ 1:1-4" - - "'u32' @ 1:1-4" - - "'u64' @ 1:1-4" - - "'u128' @ 1:1-5" - - "'i8' @ 1:1-3" - - "'i16' @ 1:1-4" - - "'i32' @ 1:1-4" - - "'i64' @ 1:1-4" - - "'i128' @ 1:1-5" - - "'U8' @ 1:1-3" - - "'U16' @ 1:1-4" - - "'U32' @ 1:1-4" - - "'U64' @ 1:1-4" - - "'U128' @ 1:1-5" - - "'U8' @ 1:1-3" - - "'U16' @ 1:1-4" - - "'U32' @ 1:1-4" - - "'U64' @ 1:1-4" - - "'U128' @ 1:1-5" - - "'u' @ 1:1-2" - - "'8' @ 1:1-2" - - "'u' @ 1:1-2" - - "'16' @ 1:1-3" - - "'u' @ 1:1-2" - - "'32' @ 1:1-3" - - "'u' @ 1:1-2" - - "'64' @ 1:1-3" - - "'u' @ 1:1-2" - - "'128' @ 1:1-4" - - "'i' @ 1:1-2" - - "'8' @ 1:1-2" - - "'i' @ 1:1-2" - - "'16' @ 1:1-3" - - "'i' @ 1:1-2" - - "'32' @ 1:1-3" - - "'i' @ 1:1-2" - - "'64' @ 1:1-3" - - "'i' @ 1:1-2" - - "'128' @ 1:1-4" - - "'U' @ 1:1-2,'8' @ 1:3-4" - - "'U' @ 1:1-2,'16' @ 1:3-5" - - "'U' @ 1:1-2,'32' @ 1:3-5" - - "'U' @ 1:1-2,'64' @ 1:3-5" - - "'U' @ 1:1-2,'128' @ 1:3-6" - - "'U' @ 1:1-2,'8' @ 1:3-4" - - "'U' @ 1:1-2,'16' @ 1:3-5" - - "'U' @ 1:1-2,'32' @ 1:3-5" - - "'U' @ 1:1-2,'64' @ 1:3-5" - - "'U' @ 1:1-2,'128' @ 1:3-6" diff --git a/tests/expectations/parser/parser/expression/literal/string.leo.out b/tests/expectations/parser/parser/expression/literal/string.leo.out deleted file mode 100644 index 83980319ab..0000000000 --- a/tests/expectations/parser/parser/expression/literal/string.leo.out +++ /dev/null @@ -1,34 +0,0 @@ ---- -namespace: Token -expectation: Pass -outputs: - - "'\"string\"' @ 1:1-9" - - "'\"another { } string\"' @ 1:1-21" - - "'\"{ ] [ ; a\"' @ 1:1-12" - - "'\"࿺\"' @ 1:1-10" - - "'\"򯫺\"' @ 1:1-12" - - "'\"꾯\"' @ 1:1-11" - - "'\"ૺ\"' @ 1:1-10" - - "'\"¯\"' @ 1:1-9" - - "'\"\n\"' @ 1:1-8" - - "'\"\n\"' @ 1:1-7" - - "'\"\u007f\"' @ 1:1-7" - - "'\"aa \\ \" ' \n aa \t \r \u0000\"' @ 1:1-30" - - "'\"test 😒€\"' @ 1:1-15" - - "'\"😭😂😘\"' @ 1:1-15" - - "'\"✋🏿\"' @ 1:1-10" - - "'\"🦀\"' @ 1:1-7" - - "'\"￿\"' @ 1:1-6" - - "'\"���\"' @ 1:1-12" - - "'\"(>3<)三\"' @ 1:1-17" - - "'\"ヽ༼ ಠ益ಠ ༽ノ\"' @ 1:1-26" - - "'\"(╯°□°)╯︵ ┻━┻\"' @ 1:1-33" - - "'\"┬─┬ ノ( ゜-゜ノ)\"' @ 1:1-29" - - "'\"( ͡° ͜ʖ ͡°)\"' @ 1:1-20" - - "'\"b\"' @ 1:1-4" - - "'\"ᕙ(▀̿ĺ̯▀̿ ̿)ᕗ\"' @ 1:1-28" - - "'\"♥╣[-_-]╠♥\"' @ 1:1-20" - - "'\"b\"' @ 1:1-4" - - "'\"(⑅∫°ਊ°)∫\"' @ 1:1-21" - - "'\"b\"' @ 1:1-4" - - "'\"🦀°1\"' @ 1:1-10" diff --git a/tests/expectations/parser/parser/expression/literal/string_fail.leo.out b/tests/expectations/parser/parser/expression/literal/string_fail.leo.out deleted file mode 100644 index f3378d3e83..0000000000 --- a/tests/expectations/parser/parser/expression/literal/string_fail.leo.out +++ /dev/null @@ -1,18 +0,0 @@ ---- -namespace: Token -expectation: Fail -outputs: - - "Error [EPAR0370025]: Expected a closed string but found `Hello world!`." - - "Error [EPAR0370025]: Expected a closed string but found `\"`." - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370024]: Expected a valid escape character but found `l`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `a`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `\"`." - - "Error [EPAR0370031]: Expected a valid hex character but found `FF`." - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `}`." - - "Error [EPAR0370038]: There was no opening `{` after starting an escaped unicode `6`." - - "Error [EPAR0370033]: There was no closing `}` after a escaped unicode `af🦀\"`." - - "Error [EPAR0370025]: Expected a closed string but found `\"`." - - "Error [EPAR0370025]: Expected a closed string but found `⭇😍;`." - - "Error [EPAR0370044]: Unicode bidi override code point encountered." diff --git a/tests/expectations/parser/parser/expression/ternary.leo.out b/tests/expectations/parser/parser/expression/ternary.leo.out deleted file mode 100644 index 9fef5ba769..0000000000 --- a/tests/expectations/parser/parser/expression/ternary.leo.out +++ /dev/null @@ -1,72 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Ternary: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}" - if_true: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}" - if_false: - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: "x ? y : z" - - Ternary: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" - if_true: - Ternary: - condition: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" - if_true: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" - if_false: - Identifier: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 14 - path: "" - content: "x ? a ? b : c : z" - if_false: - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "x ? a ? b : c : z" - - Ternary: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" - if_true: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" - if_false: - Ternary: - condition: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" - if_true: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" - if_false: - Identifier: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 9 - col_stop: 18 - path: "" - content: "x ? y : a ? b : c" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "x ? y : a ? b : c" diff --git a/tests/expectations/parser/parser/expression/token_format.leo.out b/tests/expectations/parser/parser/expression/token_format.leo.out deleted file mode 100644 index 9d66a72ae5..0000000000 --- a/tests/expectations/parser/parser/expression/token_format.leo.out +++ /dev/null @@ -1,76 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `@test`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '&&'\n --> test:1:1\n |\n 1 | &&\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '||'\n --> test:1:1\n |\n 1 | ||\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '=='\n --> test:1:1\n |\n 1 | ==\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '!='\n --> test:1:1\n |\n 1 | !=\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '<'\n --> test:1:1\n |\n 1 | <\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '<='\n --> test:1:1\n |\n 1 | <=\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '>'\n --> test:1:1\n |\n 1 | >\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '>='\n --> test:1:1\n |\n 1 | >=\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '+'\n --> test:1:1\n |\n 1 | +\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ''\n --> test:1:1\n |\n 1 | -\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '*'\n --> test:1:1\n |\n 1 | *\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '**'\n --> test:1:1\n |\n 1 | **\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '/'\n --> test:1:1\n |\n 1 | /\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:1\n |\n 1 | =\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '+'\n --> test:1:1\n |\n 1 | +=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:2\n |\n 1 | -=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '*'\n --> test:1:1\n |\n 1 | *=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '/'\n --> test:1:1\n |\n 1 | /=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '**'\n --> test:1:1\n |\n 1 | **=\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ''\n --> test:1:1\n |\n 1 | (\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ')'\n --> test:1:1\n |\n 1 | )\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ']'\n --> test:1:1\n |\n 1 | ]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '{'\n --> test:1:1\n |\n 1 | {\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '}'\n --> test:1:1\n |\n 1 | }\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ','\n --> test:1:1\n |\n 1 | ,\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '.'\n --> test:1:1\n |\n 1 | .\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '..'\n --> test:1:1\n |\n 1 | ..\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '..'\n --> test:1:1\n |\n 1 | ...\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ';'\n --> test:1:1\n |\n 1 | ;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ':'\n --> test:1:1\n |\n 1 | :\n | ^" - - "did not consume all input: ':' @ 1:2-3\n':' @ 1:3-4\n" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '?'\n --> test:1:1\n |\n 1 | ?\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '->'\n --> test:1:1\n |\n 1 | ->\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '_'\n --> test:1:1\n |\n 1 | _\n | ^" - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370030]: Could not lex the following content: `~`." - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'console'\n --> test:1:1\n |\n 1 | console\n | ^^^^^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'const'\n --> test:1:1\n |\n 1 | const\n | ^^^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'else'\n --> test:1:1\n |\n 1 | else\n | ^^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'for'\n --> test:1:1\n |\n 1 | for\n | ^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'function'\n --> test:1:1\n |\n 1 | function\n | ^^^^^^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'in'\n --> test:1:1\n |\n 1 | in\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'let'\n --> test:1:1\n |\n 1 | let\n | ^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'mut'\n --> test:1:1\n |\n 1 | mut\n | ^^^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'return'\n --> test:1:1\n |\n 1 | return\n | ^^^^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'type'\n --> test:1:1\n |\n 1 | type\n | ^^^^" diff --git a/tests/expectations/parser/parser/expression/unary/negate.leo.out b/tests/expectations/parser/parser/expression/unary/negate.leo.out deleted file mode 100644 index 5e31012d5e..0000000000 --- a/tests/expectations/parser/parser/expression/unary/negate.leo.out +++ /dev/null @@ -1,99 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Unary: - inner: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"-x\\\"}\"}" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 3 - path: "" - content: "-x" - - Unary: - inner: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"-x()\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "-x()" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: "-x()" - - Unary: - inner: - Unary: - inner: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"--x\\\"}\"}" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 4 - path: "" - content: "--x" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: "--x" - - Unary: - inner: - Unary: - inner: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"-!x\\\"}\"}" - op: Not - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 4 - path: "" - content: "-!x" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: "-!x" - - Unary: - inner: - Value: - Integer: - - I8 - - "5" - - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "-5i8" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: "-5i8" diff --git a/tests/expectations/parser/parser/expression/unary/not.leo.out b/tests/expectations/parser/parser/expression/unary/not.leo.out deleted file mode 100644 index 221c8c8c35..0000000000 --- a/tests/expectations/parser/parser/expression/unary/not.leo.out +++ /dev/null @@ -1,78 +0,0 @@ ---- -namespace: ParseExpression -expectation: Pass -outputs: - - Unary: - inner: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"!x\\\"}\"}" - op: Not - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 3 - path: "" - content: "!x" - - Unary: - inner: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"!x()\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 5 - path: "" - content: "!x()" - op: Not - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: "!x()" - - Unary: - inner: - Unary: - inner: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"!!x\\\"}\"}" - op: Not - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 4 - path: "" - content: "!!x" - op: Not - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: "!!x" - - Unary: - inner: - Unary: - inner: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"!-x\\\"}\"}" - op: Negate - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 4 - path: "" - content: "!-x" - op: Not - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: "!-x" diff --git a/tests/expectations/parser/parser/functions/annotated_arg_not_ident.leo.out b/tests/expectations/parser/parser/functions/annotated_arg_not_ident.leo.out deleted file mode 100644 index 090eba8942..0000000000 --- a/tests/expectations/parser/parser/functions/annotated_arg_not_ident.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `@foo(?, bar, ?)\nfunction x() {\n return ();\n}\n\n@bar(123) // ints not vali\nfunction x() {\n return ();\n}\n\n\n@context // recovery witness\nfunction x() {\n return ();\n}\n`." diff --git a/tests/expectations/parser/parser/functions/annotated_context_fail.leo.out b/tests/expectations/parser/parser/functions/annotated_context_fail.leo.out deleted file mode 100644 index 96ece07b38..0000000000 --- a/tests/expectations/parser/parser/functions/annotated_context_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `@context\nfunction f() {\n return ();\n}\n\n@context // recovery witness\nfunction g() {\n return ();\n}\n`." diff --git a/tests/expectations/parser/parser/functions/bounded_recursion.leo.out b/tests/expectations/parser/parser/functions/bounded_recursion.leo.out deleted file mode 100644 index 0378d7f867..0000000000 --- a/tests/expectations/parser/parser/functions/bounded_recursion.leo.out +++ /dev/null @@ -1,201 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant y: u32) -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant y: u32) -> u8 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant y: u32) -> u8 {\\\"}\"}" - mode: Constant - type_: - IntegerType: U32 - span: - line_start: 3 - line_stop: 3 - col_start: 21 - col_stop: 22 - path: "" - content: "function x(constant y: u32) -> u8 {" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Conditional: - condition: - Binary: - left: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" if y < 5u32 {\\\"}\"}" - right: - Value: - Integer: - - U32 - - "5" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 16 - path: "" - content: " if y < 5u32 {" - op: Lt - span: - line_start: 4 - line_stop: 4 - col_start: 8 - col_stop: 16 - path: "" - content: " if y < 5u32 {" - block: - statements: - - Expression: - expression: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" x(y+1u32);\\\"}\"}" - arguments: - - Binary: - left: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" x(y+1u32);\\\"}\"}" - right: - Value: - Integer: - - U32 - - "1" - - span: - line_start: 5 - line_stop: 5 - col_start: 13 - col_stop: 17 - path: "" - content: " x(y+1u32);" - op: Add - span: - line_start: 5 - line_stop: 5 - col_start: 11 - col_stop: 17 - path: "" - content: " x(y+1u32);" - span: - line_start: 5 - line_stop: 5 - col_start: 9 - col_stop: 18 - path: "" - content: " x(y+1u32);" - span: - line_start: 5 - line_stop: 5 - col_start: 9 - col_stop: 18 - path: "" - content: " x(y+1u32);" - span: - line_start: 4 - line_stop: 6 - col_start: 17 - col_stop: 6 - path: "" - content: " if y < 5u32 {\n ...\n }" - next: ~ - span: - line_start: 4 - line_stop: 6 - col_start: 5 - col_stop: 6 - path: "" - content: " if y < 5u32 {\n ...\n }" - span: - line_start: 3 - line_stop: 7 - col_start: 35 - col_stop: 2 - path: "" - content: "function x(constant y: u32) -> u8 {\n ...\n ...\n ...\n}" - span: - line_start: 3 - line_stop: 7 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(constant y: u32) -> u8 {\n ...\n ...\n ...\n}" - "{\"name\":\"main\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":10,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main(y: bool) -> bool {\\\"}\"}": - identifier: "{\"name\":\"main\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":10,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main(y: bool) -> bool {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":15,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main(y: bool) -> bool {\\\"}\"}" - mode: Private - type_: Boolean - span: - line_start: 9 - line_stop: 9 - col_start: 15 - col_stop: 16 - path: "" - content: "function main(y: bool) -> bool {" - const_: false - output: Boolean - core_mapping: ~ - block: - statements: - - Expression: - expression: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" x(1u32);\\\"}\"}" - arguments: - - Value: - Integer: - - U32 - - "1" - - span: - line_start: 10 - line_stop: 10 - col_start: 7 - col_stop: 11 - path: "" - content: " x(1u32);" - span: - line_start: 10 - line_stop: 10 - col_start: 5 - col_stop: 12 - path: "" - content: " x(1u32);" - span: - line_start: 10 - line_stop: 10 - col_start: 5 - col_stop: 12 - path: "" - content: " x(1u32);" - - Return: - expression: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" return y;\\\"}\"}" - span: - line_start: 11 - line_stop: 11 - col_start: 5 - col_stop: 13 - path: "" - content: " return y;" - span: - line_start: 9 - line_stop: 12 - col_start: 32 - col_stop: 2 - path: "" - content: "function main(y: bool) -> bool {\n ...\n ...\n}" - span: - line_start: 9 - line_stop: 12 - col_start: 1 - col_stop: 2 - path: "" - content: "function main(y: bool) -> bool {\n ...\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/const_function.leo.out b/tests/expectations/parser/parser/functions/const_function.leo.out deleted file mode 100644 index 8f21a31146..0000000000 --- a/tests/expectations/parser/parser/functions/const_function.leo.out +++ /dev/null @@ -1,50 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const function x() -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const function x() -> u8 {\\\"}\"}" - input: [] - const_: true - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 3 - line_stop: 5 - col_start: 26 - col_stop: 2 - path: "" - content: "const function x() -> u8 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 7 - col_stop: 2 - path: "" - content: "const function x() -> u8 {\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/const_function_fail.leo.out b/tests/expectations/parser/parser/functions/const_function_fail.leo.out deleted file mode 100644 index c6df75c98d..0000000000 --- a/tests/expectations/parser/parser/functions/const_function_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected 'function', 'test' -- got 'const'\n --> test:3:1\n |\n 3 | const\n | ^^^^^" diff --git a/tests/expectations/parser/parser/functions/const_input.leo.out b/tests/expectations/parser/parser/functions/const_input.leo.out deleted file mode 100644 index bde07c37c5..0000000000 --- a/tests/expectations/parser/parser/functions/const_input.leo.out +++ /dev/null @@ -1,77 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(const x: u8) -> u8 {}\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(const x: u8) -> u8 {}\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(const x: u8) -> u8 {}\\\"}\"}" - mode: Constant - type_: - IntegerType: U8 - span: - line_start: 3 - line_stop: 3 - col_start: 18 - col_stop: 19 - path: "" - content: "function x(const x: u8) -> u8 {}" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: [] - span: - line_start: 3 - line_stop: 3 - col_start: 31 - col_stop: 33 - path: "" - content: "function x(const x: u8) -> u8 {}" - span: - line_start: 3 - line_stop: 3 - col_start: 1 - col_stop: 33 - path: "" - content: "function x(const x: u8) -> u8 {}" - "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function y(constant y: u64) -> u8 {}\\\"}\"}": - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function y(constant y: u64) -> u8 {}\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function y(constant y: u64) -> u8 {}\\\"}\"}" - mode: Constant - type_: - IntegerType: U64 - span: - line_start: 5 - line_stop: 5 - col_start: 21 - col_stop: 22 - path: "" - content: "function y(constant y: u64) -> u8 {}" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: [] - span: - line_start: 5 - line_stop: 5 - col_start: 35 - col_stop: 37 - path: "" - content: "function y(constant y: u64) -> u8 {}" - span: - line_start: 5 - line_stop: 5 - col_start: 1 - col_stop: 37 - path: "" - content: "function y(constant y: u64) -> u8 {}" diff --git a/tests/expectations/parser/parser/functions/const_input_kw_fail.leo.out b/tests/expectations/parser/parser/functions/const_input_kw_fail.leo.out deleted file mode 100644 index d0d34e7510..0000000000 --- a/tests/expectations/parser/parser/functions/const_input_kw_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'ident', got 'input'\n --> test:3:18\n |\n 3 | function x(const input) {\n | ^^^^^" diff --git a/tests/expectations/parser/parser/functions/const_param.leo.out b/tests/expectations/parser/parser/functions/const_param.leo.out deleted file mode 100644 index c9147175ce..0000000000 --- a/tests/expectations/parser/parser/functions/const_param.leo.out +++ /dev/null @@ -1,141 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, constant y: i32) -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, constant y: i32) -> u8 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, constant y: i32) -> u8 {\\\"}\"}" - mode: Private - type_: - IntegerType: U32 - span: - line_start: 3 - line_stop: 3 - col_start: 12 - col_stop: 13 - path: "" - content: "function x(x: u32, constant y: i32) -> u8 {" - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":29,\\\"col_stop\\\":30,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, constant y: i32) -> u8 {\\\"}\"}" - mode: Constant - type_: - IntegerType: I32 - span: - line_start: 3 - line_stop: 3 - col_start: 29 - col_stop: 30 - path: "" - content: "function x(x: u32, constant y: i32) -> u8 {" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 3 - line_stop: 5 - col_start: 43 - col_stop: 2 - path: "" - content: "function x(x: u32, constant y: i32) -> u8 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(x: u32, constant y: i32) -> u8 {\n ...\n}" - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant x: u32, y: i32) -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant x: u32, y: i32) -> u8 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant x: u32, y: i32) -> u8 {\\\"}\"}" - mode: Constant - type_: - IntegerType: U32 - span: - line_start: 7 - line_stop: 7 - col_start: 21 - col_stop: 22 - path: "" - content: "function x(constant x: u32, y: i32) -> u8 {" - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":29,\\\"col_stop\\\":30,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(constant x: u32, y: i32) -> u8 {\\\"}\"}" - mode: Private - type_: - IntegerType: I32 - span: - line_start: 7 - line_stop: 7 - col_start: 29 - col_stop: 30 - path: "" - content: "function x(constant x: u32, y: i32) -> u8 {" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 8 - line_stop: 8 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 8 - line_stop: 8 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 7 - line_stop: 9 - col_start: 43 - col_stop: 2 - path: "" - content: "function x(constant x: u32, y: i32) -> u8 {\n ...\n}" - span: - line_start: 7 - line_stop: 9 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(constant x: u32, y: i32) -> u8 {\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/const_public_param_fail.leo.out b/tests/expectations/parser/parser/functions/const_public_param_fail.leo.out deleted file mode 100644 index 24c32456b2..0000000000 --- a/tests/expectations/parser/parser/functions/const_public_param_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'ident', got 'public'\n --> test:3:26\n |\n 3 | function x(x: u32, const public y: i32) {\n | ^^^^^^" diff --git a/tests/expectations/parser/parser/functions/empty2.leo.out b/tests/expectations/parser/parser/functions/empty2.leo.out deleted file mode 100644 index d5466572fb..0000000000 --- a/tests/expectations/parser/parser/functions/empty2.leo.out +++ /dev/null @@ -1,30 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x() -> u8 {}\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x() -> u8 {}\\\"}\"}" - input: [] - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: [] - span: - line_start: 3 - line_stop: 3 - col_start: 20 - col_stop: 22 - path: "" - content: "function x() -> u8 {}" - span: - line_start: 3 - line_stop: 3 - col_start: 1 - col_stop: 22 - path: "" - content: "function x() -> u8 {}" diff --git a/tests/expectations/parser/parser/functions/escape_fail.leo.out b/tests/expectations/parser/parser/functions/escape_fail.leo.out deleted file mode 100644 index 9fe177028c..0000000000 --- a/tests/expectations/parser/parser/functions/escape_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `\\`." diff --git a/tests/expectations/parser/parser/functions/ident_token_fail.leo.out b/tests/expectations/parser/parser/functions/ident_token_fail.leo.out deleted file mode 100644 index c9f3bc759d..0000000000 --- a/tests/expectations/parser/parser/functions/ident_token_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected 'function', 'test' -- got '1'\n --> test:3:1\n |\n 3 | 1 main() {}\n | ^" diff --git a/tests/expectations/parser/parser/functions/infinite_recursion.leo.out b/tests/expectations/parser/parser/functions/infinite_recursion.leo.out deleted file mode 100644 index e7e3415f75..0000000000 --- a/tests/expectations/parser/parser/functions/infinite_recursion.leo.out +++ /dev/null @@ -1,113 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"inf\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function inf() -> u8 {\\\"}\"}": - identifier: "{\"name\":\"inf\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function inf() -> u8 {\\\"}\"}" - input: [] - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Expression: - expression: - Call: - function: - Identifier: "{\"name\":\"inf\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" inf();\\\"}\"}" - arguments: [] - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 10 - path: "" - content: " inf();" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 10 - path: "" - content: " inf();" - span: - line_start: 3 - line_stop: 5 - col_start: 22 - col_stop: 2 - path: "" - content: "function inf() -> u8 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "function inf() -> u8 {\n ...\n}" - "{\"name\":\"main\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main(y: bool) -> bool {\\\"}\"}": - identifier: "{\"name\":\"main\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main(y: bool) -> bool {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":15,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main(y: bool) -> bool {\\\"}\"}" - mode: Private - type_: Boolean - span: - line_start: 7 - line_stop: 7 - col_start: 15 - col_stop: 16 - path: "" - content: "function main(y: bool) -> bool {" - const_: false - output: Boolean - core_mapping: ~ - block: - statements: - - Expression: - expression: - Call: - function: - Identifier: "{\"name\":\"inf\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" inf();\\\"}\"}" - arguments: [] - span: - line_start: 8 - line_stop: 8 - col_start: 5 - col_stop: 10 - path: "" - content: " inf();" - span: - line_start: 8 - line_stop: 8 - col_start: 5 - col_stop: 10 - path: "" - content: " inf();" - - Return: - expression: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\" return y;\\\"}\"}" - span: - line_start: 9 - line_stop: 9 - col_start: 5 - col_stop: 13 - path: "" - content: " return y;" - span: - line_start: 7 - line_stop: 10 - col_start: 32 - col_stop: 2 - path: "" - content: "function main(y: bool) -> bool {\n ...\n ...\n}" - span: - line_start: 7 - line_stop: 10 - col_start: 1 - col_stop: 2 - path: "" - content: "function main(y: bool) -> bool {\n ...\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/mut_input_fail.leo.out b/tests/expectations/parser/parser/functions/mut_input_fail.leo.out deleted file mode 100644 index 5714154f71..0000000000 --- a/tests/expectations/parser/parser/functions/mut_input_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370013]: function func(mut a: u32) { ... } is deprecated. Passed variables are mutable by default.\n --> test:3:12\n |\n 3 | function f(mut a: u8) {}\n | ^^^^^\nError [EPAR0370005]: expected -> -- got '{'\n --> test:3:23\n |\n 3 | function f(mut a: u8) {}\n | ^" diff --git a/tests/expectations/parser/parser/functions/params.leo.out b/tests/expectations/parser/parser/functions/params.leo.out deleted file mode 100644 index 01ec81a516..0000000000 --- a/tests/expectations/parser/parser/functions/params.leo.out +++ /dev/null @@ -1,74 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u8 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u8 {\\\"}\"}" - mode: Private - type_: - IntegerType: U32 - span: - line_start: 3 - line_stop: 3 - col_start: 12 - col_stop: 13 - path: "" - content: "function x(x: u32, y: i32) -> u8 {" - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":21,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u8 {\\\"}\"}" - mode: Private - type_: - IntegerType: I32 - span: - line_start: 3 - line_stop: 3 - col_start: 20 - col_stop: 21 - path: "" - content: "function x(x: u32, y: i32) -> u8 {" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 3 - line_stop: 5 - col_start: 34 - col_stop: 2 - path: "" - content: "function x(x: u32, y: i32) -> u8 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(x: u32, y: i32) -> u8 {\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/params_return.leo.out b/tests/expectations/parser/parser/functions/params_return.leo.out deleted file mode 100644 index 85886f4d69..0000000000 --- a/tests/expectations/parser/parser/functions/params_return.leo.out +++ /dev/null @@ -1,74 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}" - mode: Private - type_: - IntegerType: U32 - span: - line_start: 3 - line_stop: 3 - col_start: 12 - col_stop: 13 - path: "" - content: "function x(x: u32, y: i32) -> u32 {" - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":21,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}" - mode: Private - type_: - IntegerType: I32 - span: - line_start: 3 - line_stop: 3 - col_start: 20 - col_stop: 21 - path: "" - content: "function x(x: u32, y: i32) -> u32 {" - const_: false - output: - IntegerType: U32 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 3 - line_stop: 5 - col_start: 35 - col_stop: 2 - path: "" - content: "function x(x: u32, y: i32) -> u32 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(x: u32, y: i32) -> u32 {\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/public_const_param_fail.leo.out b/tests/expectations/parser/parser/functions/public_const_param_fail.leo.out deleted file mode 100644 index 2a9735278c..0000000000 --- a/tests/expectations/parser/parser/functions/public_const_param_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370042]: A parameter cannot be both public and const.\n --> test:3:20\n |\n 3 | function x(x: u32, public const y: i32) {\n | ^^^^^^^^^^^^" diff --git a/tests/expectations/parser/parser/functions/public_param.leo.out b/tests/expectations/parser/parser/functions/public_param.leo.out deleted file mode 100644 index b4fc86f659..0000000000 --- a/tests/expectations/parser/parser/functions/public_param.leo.out +++ /dev/null @@ -1,141 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, public y: i32) -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, public y: i32) -> u8 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, public y: i32) -> u8 {\\\"}\"}" - mode: Private - type_: - IntegerType: U32 - span: - line_start: 3 - line_stop: 3 - col_start: 12 - col_stop: 13 - path: "" - content: "function x(x: u32, public y: i32) -> u8 {" - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":27,\\\"col_stop\\\":28,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(x: u32, public y: i32) -> u8 {\\\"}\"}" - mode: Public - type_: - IntegerType: I32 - span: - line_start: 3 - line_stop: 3 - col_start: 27 - col_stop: 28 - path: "" - content: "function x(x: u32, public y: i32) -> u8 {" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 3 - line_stop: 5 - col_start: 41 - col_stop: 2 - path: "" - content: "function x(x: u32, public y: i32) -> u8 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(x: u32, public y: i32) -> u8 {\n ...\n}" - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(public x: u32, y: i32) -> u8 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(public x: u32, y: i32) -> u8 {\\\"}\"}" - input: - - Variable: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(public x: u32, y: i32) -> u8 {\\\"}\"}" - mode: Public - type_: - IntegerType: U32 - span: - line_start: 7 - line_stop: 7 - col_start: 19 - col_stop: 20 - path: "" - content: "function x(public x: u32, y: i32) -> u8 {" - - Variable: - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":27,\\\"col_stop\\\":28,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x(public x: u32, y: i32) -> u8 {\\\"}\"}" - mode: Private - type_: - IntegerType: I32 - span: - line_start: 7 - line_stop: 7 - col_start: 27 - col_stop: 28 - path: "" - content: "function x(public x: u32, y: i32) -> u8 {" - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 8 - line_stop: 8 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 8 - line_stop: 8 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 7 - line_stop: 9 - col_start: 41 - col_stop: 2 - path: "" - content: "function x(public x: u32, y: i32) -> u8 {\n ...\n}" - span: - line_start: 7 - line_stop: 9 - col_start: 1 - col_stop: 2 - path: "" - content: "function x(public x: u32, y: i32) -> u8 {\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/return.leo.out b/tests/expectations/parser/parser/functions/return.leo.out deleted file mode 100644 index 4414ad0af1..0000000000 --- a/tests/expectations/parser/parser/functions/return.leo.out +++ /dev/null @@ -1,50 +0,0 @@ ---- -namespace: Parse -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x() -> u32 {\\\"}\"}": - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function x() -> u32 {\\\"}\"}" - input: [] - const_: false - output: - IntegerType: U32 - core_mapping: ~ - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 4 - line_stop: 4 - col_start: 12 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 4 - line_stop: 4 - col_start: 5 - col_stop: 15 - path: "" - content: " return 0u8;" - span: - line_start: 3 - line_stop: 5 - col_start: 21 - col_stop: 2 - path: "" - content: "function x() -> u32 {\n ...\n}" - span: - line_start: 3 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "function x() -> u32 {\n ...\n}" diff --git a/tests/expectations/parser/parser/functions/test_keyword_fail.leo.out b/tests/expectations/parser/parser/functions/test_keyword_fail.leo.out deleted file mode 100644 index 22e16133ed..0000000000 --- a/tests/expectations/parser/parser/functions/test_keyword_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370015]: \"test function...\" is deprecated. Did you mean @test annotation?\n --> test:3:1\n |\n 3 | test main() {}\n | ^^^^" diff --git a/tests/expectations/parser/parser/inputs/input_const.leo.out b/tests/expectations/parser/parser/inputs/input_const.leo.out deleted file mode 100644 index 724f69e2ec..0000000000 --- a/tests/expectations/parser/parser/inputs/input_const.leo.out +++ /dev/null @@ -1,343 +0,0 @@ ---- -namespace: Input -expectation: Pass -outputs: - - sections: - - name: main - definitions: - - mode: Constant - type_: Boolean - name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const a: bool = true;\\\"}\"}" - value: - Value: - Boolean: - - "true" - - span: - line_start: 4 - line_stop: 4 - col_start: 18 - col_stop: 22 - path: "" - content: "const a: bool = true;" - span: - line_start: 4 - line_stop: 4 - col_start: 10 - col_stop: 14 - path: "" - content: "const a: bool = true;" - - mode: Constant - type_: - IntegerType: U8 - name: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const b: u8 = 2u8;\\\"}\"}" - value: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 5 - line_stop: 5 - col_start: 18 - col_stop: 21 - path: "" - content: "const b: u8 = 2u8;" - span: - line_start: 5 - line_stop: 5 - col_start: 10 - col_stop: 12 - path: "" - content: "const b: u8 = 2u8;" - - mode: Constant - type_: Field - name: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const c: field = 0field;\\\"}\"}" - value: - Value: - Field: - - "0" - - span: - line_start: 6 - line_stop: 6 - col_start: 18 - col_stop: 24 - path: "" - content: "const c: field = 0field;" - span: - line_start: 6 - line_stop: 6 - col_start: 10 - col_stop: 15 - path: "" - content: "const c: field = 0field;" - - mode: Constant - type_: Group - name: "{\"name\":\"d\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const d: group = (0, 1)group;\\\"}\"}" - value: - Value: - Group: - Tuple: - x: - Number: - - "0" - - span: - line_start: 7 - line_stop: 7 - col_start: 19 - col_stop: 20 - path: "" - content: "const d: group = (0, 1)group;" - y: - Number: - - "1" - - span: - line_start: 7 - line_stop: 7 - col_start: 22 - col_stop: 23 - path: "" - content: "const d: group = (0, 1)group;" - span: - line_start: 7 - line_stop: 7 - col_start: 18 - col_stop: 29 - path: "" - content: "const d: group = (0, 1)group;" - span: - line_start: 7 - line_stop: 7 - col_start: 10 - col_stop: 15 - path: "" - content: "const d: group = (0, 1)group;" - - mode: Constant - type_: Address - name: "{\"name\":\"e\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;\\\"}\"}" - value: - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 - - span: - line_start: 8 - line_stop: 8 - col_start: 20 - col_stop: 83 - path: "" - content: "const e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - span: - line_start: 8 - line_stop: 8 - col_start: 10 - col_stop: 17 - path: "" - content: "const e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - - mode: Constant - type_: - IntegerType: I8 - name: "{\"name\":\"f\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const f: i8 = -2i8;\\\"}\"}" - value: - Unary: - inner: - Value: - Integer: - - I8 - - "2" - - span: - line_start: 9 - line_stop: 9 - col_start: 19 - col_stop: 22 - path: "" - content: "const f: i8 = -2i8;" - op: Negate - span: - line_start: 9 - line_stop: 9 - col_start: 18 - col_stop: 22 - path: "" - content: "const f: i8 = -2i8;" - span: - line_start: 9 - line_stop: 9 - col_start: 10 - col_stop: 12 - path: "" - content: "const f: i8 = -2i8;" - span: - line_start: 3 - line_stop: 3 - col_start: 2 - col_stop: 6 - path: "" - content: "[main]" - - name: registers - definitions: - - mode: Private - type_: Boolean - name: "{\"name\":\"r0\",\"span\":\"{\\\"line_start\\\":12,\\\"line_stop\\\":12,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r0: bool = true;\\\"}\"}" - value: - Value: - Boolean: - - "true" - - span: - line_start: 12 - line_stop: 12 - col_start: 13 - col_stop: 17 - path: "" - content: "r0: bool = true;" - span: - line_start: 12 - line_stop: 12 - col_start: 5 - col_stop: 9 - path: "" - content: "r0: bool = true;" - - mode: Private - type_: - IntegerType: U8 - name: "{\"name\":\"r1\",\"span\":\"{\\\"line_start\\\":13,\\\"line_stop\\\":13,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r1: u8 = 2u8;\\\"}\"}" - value: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 13 - line_stop: 13 - col_start: 13 - col_stop: 16 - path: "" - content: "r1: u8 = 2u8;" - span: - line_start: 13 - line_stop: 13 - col_start: 5 - col_stop: 7 - path: "" - content: "r1: u8 = 2u8;" - - mode: Private - type_: Field - name: "{\"name\":\"r2\",\"span\":\"{\\\"line_start\\\":14,\\\"line_stop\\\":14,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r2: field = 0field;\\\"}\"}" - value: - Value: - Field: - - "0" - - span: - line_start: 14 - line_stop: 14 - col_start: 13 - col_stop: 19 - path: "" - content: "r2: field = 0field;" - span: - line_start: 14 - line_stop: 14 - col_start: 5 - col_stop: 10 - path: "" - content: "r2: field = 0field;" - - mode: Private - type_: Group - name: "{\"name\":\"r3\",\"span\":\"{\\\"line_start\\\":15,\\\"line_stop\\\":15,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r3: group = (0, 1)group;\\\"}\"}" - value: - Value: - Group: - Tuple: - x: - Number: - - "0" - - span: - line_start: 15 - line_stop: 15 - col_start: 14 - col_stop: 15 - path: "" - content: "r3: group = (0, 1)group;" - y: - Number: - - "1" - - span: - line_start: 15 - line_stop: 15 - col_start: 17 - col_stop: 18 - path: "" - content: "r3: group = (0, 1)group;" - span: - line_start: 15 - line_stop: 15 - col_start: 13 - col_stop: 24 - path: "" - content: "r3: group = (0, 1)group;" - span: - line_start: 15 - line_stop: 15 - col_start: 5 - col_stop: 10 - path: "" - content: "r3: group = (0, 1)group;" - - mode: Private - type_: Address - name: "{\"name\":\"r4\",\"span\":\"{\\\"line_start\\\":16,\\\"line_stop\\\":16,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;\\\"}\"}" - value: - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 - - span: - line_start: 16 - line_stop: 16 - col_start: 15 - col_stop: 78 - path: "" - content: "r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - span: - line_start: 16 - line_stop: 16 - col_start: 5 - col_stop: 12 - path: "" - content: "r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - - mode: Private - type_: - IntegerType: I8 - name: "{\"name\":\"r4\",\"span\":\"{\\\"line_start\\\":17,\\\"line_stop\\\":17,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r4: i8 = -1i8;\\\"}\"}" - value: - Unary: - inner: - Value: - Integer: - - I8 - - "1" - - span: - line_start: 17 - line_stop: 17 - col_start: 11 - col_stop: 14 - path: "" - content: "r4: i8 = -1i8;" - op: Negate - span: - line_start: 17 - line_stop: 17 - col_start: 10 - col_stop: 14 - path: "" - content: "r4: i8 = -1i8;" - span: - line_start: 17 - line_stop: 17 - col_start: 5 - col_stop: 7 - path: "" - content: "r4: i8 = -1i8;" - span: - line_start: 11 - line_stop: 11 - col_start: 2 - col_stop: 11 - path: "" - content: "[registers]" diff --git a/tests/expectations/parser/parser/inputs/input_constant.leo.out b/tests/expectations/parser/parser/inputs/input_constant.leo.out deleted file mode 100644 index 14bf25cf8a..0000000000 --- a/tests/expectations/parser/parser/inputs/input_constant.leo.out +++ /dev/null @@ -1,343 +0,0 @@ ---- -namespace: Input -expectation: Pass -outputs: - - sections: - - name: main - definitions: - - mode: Constant - type_: Boolean - name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constant a: bool = true;\\\"}\"}" - value: - Value: - Boolean: - - "true" - - span: - line_start: 4 - line_stop: 4 - col_start: 21 - col_stop: 25 - path: "" - content: "constant a: bool = true;" - span: - line_start: 4 - line_stop: 4 - col_start: 13 - col_stop: 17 - path: "" - content: "constant a: bool = true;" - - mode: Constant - type_: - IntegerType: U8 - name: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constant b: u8 = 2u8;\\\"}\"}" - value: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 5 - line_stop: 5 - col_start: 21 - col_stop: 24 - path: "" - content: "constant b: u8 = 2u8;" - span: - line_start: 5 - line_stop: 5 - col_start: 13 - col_stop: 15 - path: "" - content: "constant b: u8 = 2u8;" - - mode: Constant - type_: Field - name: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constant c: field = 0field;\\\"}\"}" - value: - Value: - Field: - - "0" - - span: - line_start: 6 - line_stop: 6 - col_start: 21 - col_stop: 27 - path: "" - content: "constant c: field = 0field;" - span: - line_start: 6 - line_stop: 6 - col_start: 13 - col_stop: 18 - path: "" - content: "constant c: field = 0field;" - - mode: Constant - type_: Group - name: "{\"name\":\"d\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constant d: group = (0, 1)group;\\\"}\"}" - value: - Value: - Group: - Tuple: - x: - Number: - - "0" - - span: - line_start: 7 - line_stop: 7 - col_start: 22 - col_stop: 23 - path: "" - content: "constant d: group = (0, 1)group;" - y: - Number: - - "1" - - span: - line_start: 7 - line_stop: 7 - col_start: 25 - col_stop: 26 - path: "" - content: "constant d: group = (0, 1)group;" - span: - line_start: 7 - line_stop: 7 - col_start: 21 - col_stop: 32 - path: "" - content: "constant d: group = (0, 1)group;" - span: - line_start: 7 - line_stop: 7 - col_start: 13 - col_stop: 18 - path: "" - content: "constant d: group = (0, 1)group;" - - mode: Constant - type_: Address - name: "{\"name\":\"e\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constant e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;\\\"}\"}" - value: - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 - - span: - line_start: 8 - line_stop: 8 - col_start: 23 - col_stop: 86 - path: "" - content: "constant e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - span: - line_start: 8 - line_stop: 8 - col_start: 13 - col_stop: 20 - path: "" - content: "constant e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - - mode: Constant - type_: - IntegerType: I8 - name: "{\"name\":\"f\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"constant f: i8 = -2i8;\\\"}\"}" - value: - Unary: - inner: - Value: - Integer: - - I8 - - "2" - - span: - line_start: 9 - line_stop: 9 - col_start: 22 - col_stop: 25 - path: "" - content: "constant f: i8 = -2i8;" - op: Negate - span: - line_start: 9 - line_stop: 9 - col_start: 21 - col_stop: 25 - path: "" - content: "constant f: i8 = -2i8;" - span: - line_start: 9 - line_stop: 9 - col_start: 13 - col_stop: 15 - path: "" - content: "constant f: i8 = -2i8;" - span: - line_start: 3 - line_stop: 3 - col_start: 2 - col_stop: 6 - path: "" - content: "[main]" - - name: registers - definitions: - - mode: Private - type_: Boolean - name: "{\"name\":\"r0\",\"span\":\"{\\\"line_start\\\":12,\\\"line_stop\\\":12,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r0: bool = true;\\\"}\"}" - value: - Value: - Boolean: - - "true" - - span: - line_start: 12 - line_stop: 12 - col_start: 13 - col_stop: 17 - path: "" - content: "r0: bool = true;" - span: - line_start: 12 - line_stop: 12 - col_start: 5 - col_stop: 9 - path: "" - content: "r0: bool = true;" - - mode: Private - type_: - IntegerType: U8 - name: "{\"name\":\"r1\",\"span\":\"{\\\"line_start\\\":13,\\\"line_stop\\\":13,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r1: u8 = 2u8;\\\"}\"}" - value: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 13 - line_stop: 13 - col_start: 13 - col_stop: 16 - path: "" - content: "r1: u8 = 2u8;" - span: - line_start: 13 - line_stop: 13 - col_start: 5 - col_stop: 7 - path: "" - content: "r1: u8 = 2u8;" - - mode: Private - type_: Field - name: "{\"name\":\"r2\",\"span\":\"{\\\"line_start\\\":14,\\\"line_stop\\\":14,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r2: field = 0field;\\\"}\"}" - value: - Value: - Field: - - "0" - - span: - line_start: 14 - line_stop: 14 - col_start: 13 - col_stop: 19 - path: "" - content: "r2: field = 0field;" - span: - line_start: 14 - line_stop: 14 - col_start: 5 - col_stop: 10 - path: "" - content: "r2: field = 0field;" - - mode: Private - type_: Group - name: "{\"name\":\"r3\",\"span\":\"{\\\"line_start\\\":15,\\\"line_stop\\\":15,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r3: group = (0, 1)group;\\\"}\"}" - value: - Value: - Group: - Tuple: - x: - Number: - - "0" - - span: - line_start: 15 - line_stop: 15 - col_start: 14 - col_stop: 15 - path: "" - content: "r3: group = (0, 1)group;" - y: - Number: - - "1" - - span: - line_start: 15 - line_stop: 15 - col_start: 17 - col_stop: 18 - path: "" - content: "r3: group = (0, 1)group;" - span: - line_start: 15 - line_stop: 15 - col_start: 13 - col_stop: 24 - path: "" - content: "r3: group = (0, 1)group;" - span: - line_start: 15 - line_stop: 15 - col_start: 5 - col_stop: 10 - path: "" - content: "r3: group = (0, 1)group;" - - mode: Private - type_: Address - name: "{\"name\":\"r4\",\"span\":\"{\\\"line_start\\\":16,\\\"line_stop\\\":16,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;\\\"}\"}" - value: - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 - - span: - line_start: 16 - line_stop: 16 - col_start: 15 - col_stop: 78 - path: "" - content: "r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - span: - line_start: 16 - line_stop: 16 - col_start: 5 - col_stop: 12 - path: "" - content: "r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - - mode: Private - type_: - IntegerType: I8 - name: "{\"name\":\"r4\",\"span\":\"{\\\"line_start\\\":17,\\\"line_stop\\\":17,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r4: i8 = -1i8;\\\"}\"}" - value: - Unary: - inner: - Value: - Integer: - - I8 - - "1" - - span: - line_start: 17 - line_stop: 17 - col_start: 11 - col_stop: 14 - path: "" - content: "r4: i8 = -1i8;" - op: Negate - span: - line_start: 17 - line_stop: 17 - col_start: 10 - col_stop: 14 - path: "" - content: "r4: i8 = -1i8;" - span: - line_start: 17 - line_stop: 17 - col_start: 5 - col_stop: 7 - path: "" - content: "r4: i8 = -1i8;" - span: - line_start: 11 - line_stop: 11 - col_start: 2 - col_stop: 11 - path: "" - content: "[registers]" diff --git a/tests/expectations/parser/parser/inputs/input_constant_public_fail.leo.out b/tests/expectations/parser/parser/inputs/input_constant_public_fail.leo.out deleted file mode 100644 index f618c2ebbb..0000000000 --- a/tests/expectations/parser/parser/inputs/input_constant_public_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Input -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'ident', got 'public'\n --> test:4:10\n |\n 4 | constant public a: bool = true; \n | ^^^^^^" diff --git a/tests/expectations/parser/parser/inputs/input_fail.leo.out b/tests/expectations/parser/parser/inputs/input_fail.leo.out deleted file mode 100644 index 5f8bf95de3..0000000000 --- a/tests/expectations/parser/parser/inputs/input_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Input -expectation: Fail -outputs: - - "Error [EPAR0370000]: main\n --> test:3:1\n |\n 3 | main\n | ^^^^" diff --git a/tests/expectations/parser/parser/inputs/input_public.leo.out b/tests/expectations/parser/parser/inputs/input_public.leo.out deleted file mode 100644 index bc227b0b1c..0000000000 --- a/tests/expectations/parser/parser/inputs/input_public.leo.out +++ /dev/null @@ -1,343 +0,0 @@ ---- -namespace: Input -expectation: Pass -outputs: - - sections: - - name: main - definitions: - - mode: Public - type_: Boolean - name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"public a: bool = true; \\\"}\"}" - value: - Value: - Boolean: - - "true" - - span: - line_start: 4 - line_stop: 4 - col_start: 19 - col_stop: 23 - path: "" - content: "public a: bool = true; " - span: - line_start: 4 - line_stop: 4 - col_start: 11 - col_stop: 15 - path: "" - content: "public a: bool = true; " - - mode: Public - type_: - IntegerType: U8 - name: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"public b: u8 = 2u8; \\\"}\"}" - value: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 5 - line_stop: 5 - col_start: 19 - col_stop: 22 - path: "" - content: "public b: u8 = 2u8; " - span: - line_start: 5 - line_stop: 5 - col_start: 11 - col_stop: 13 - path: "" - content: "public b: u8 = 2u8; " - - mode: Public - type_: Field - name: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"public c: field = 0field; \\\"}\"}" - value: - Value: - Field: - - "0" - - span: - line_start: 6 - line_stop: 6 - col_start: 19 - col_stop: 25 - path: "" - content: "public c: field = 0field; " - span: - line_start: 6 - line_stop: 6 - col_start: 11 - col_stop: 16 - path: "" - content: "public c: field = 0field; " - - mode: Public - type_: Group - name: "{\"name\":\"d\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"public d: group = (0, 1)group; \\\"}\"}" - value: - Value: - Group: - Tuple: - x: - Number: - - "0" - - span: - line_start: 7 - line_stop: 7 - col_start: 20 - col_stop: 21 - path: "" - content: "public d: group = (0, 1)group; " - y: - Number: - - "1" - - span: - line_start: 7 - line_stop: 7 - col_start: 23 - col_stop: 24 - path: "" - content: "public d: group = (0, 1)group; " - span: - line_start: 7 - line_stop: 7 - col_start: 19 - col_stop: 30 - path: "" - content: "public d: group = (0, 1)group; " - span: - line_start: 7 - line_stop: 7 - col_start: 11 - col_stop: 16 - path: "" - content: "public d: group = (0, 1)group; " - - mode: Public - type_: Address - name: "{\"name\":\"e\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"public e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;\\\"}\"}" - value: - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 - - span: - line_start: 8 - line_stop: 8 - col_start: 21 - col_stop: 84 - path: "" - content: "public e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - span: - line_start: 8 - line_stop: 8 - col_start: 11 - col_stop: 18 - path: "" - content: "public e: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - - mode: Public - type_: - IntegerType: I8 - name: "{\"name\":\"f\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"public f: i8 = -2i8;\\\"}\"}" - value: - Unary: - inner: - Value: - Integer: - - I8 - - "2" - - span: - line_start: 9 - line_stop: 9 - col_start: 20 - col_stop: 23 - path: "" - content: "public f: i8 = -2i8;" - op: Negate - span: - line_start: 9 - line_stop: 9 - col_start: 19 - col_stop: 23 - path: "" - content: "public f: i8 = -2i8;" - span: - line_start: 9 - line_stop: 9 - col_start: 11 - col_stop: 13 - path: "" - content: "public f: i8 = -2i8;" - span: - line_start: 3 - line_stop: 3 - col_start: 2 - col_stop: 6 - path: "" - content: "[main]" - - name: registers - definitions: - - mode: Private - type_: Boolean - name: "{\"name\":\"r0\",\"span\":\"{\\\"line_start\\\":12,\\\"line_stop\\\":12,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r0: bool = true; \\\"}\"}" - value: - Value: - Boolean: - - "true" - - span: - line_start: 12 - line_stop: 12 - col_start: 13 - col_stop: 17 - path: "" - content: "r0: bool = true; " - span: - line_start: 12 - line_stop: 12 - col_start: 5 - col_stop: 9 - path: "" - content: "r0: bool = true; " - - mode: Private - type_: - IntegerType: U8 - name: "{\"name\":\"r1\",\"span\":\"{\\\"line_start\\\":13,\\\"line_stop\\\":13,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r1: u8 = 2u8; \\\"}\"}" - value: - Value: - Integer: - - U8 - - "2" - - span: - line_start: 13 - line_stop: 13 - col_start: 13 - col_stop: 16 - path: "" - content: "r1: u8 = 2u8; " - span: - line_start: 13 - line_stop: 13 - col_start: 5 - col_stop: 7 - path: "" - content: "r1: u8 = 2u8; " - - mode: Private - type_: Field - name: "{\"name\":\"r2\",\"span\":\"{\\\"line_start\\\":14,\\\"line_stop\\\":14,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r2: field = 0field; \\\"}\"}" - value: - Value: - Field: - - "0" - - span: - line_start: 14 - line_stop: 14 - col_start: 13 - col_stop: 19 - path: "" - content: "r2: field = 0field; " - span: - line_start: 14 - line_stop: 14 - col_start: 5 - col_stop: 10 - path: "" - content: "r2: field = 0field; " - - mode: Private - type_: Group - name: "{\"name\":\"r3\",\"span\":\"{\\\"line_start\\\":15,\\\"line_stop\\\":15,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r3: group = (0, 1)group; \\\"}\"}" - value: - Value: - Group: - Tuple: - x: - Number: - - "0" - - span: - line_start: 15 - line_stop: 15 - col_start: 14 - col_stop: 15 - path: "" - content: "r3: group = (0, 1)group; " - y: - Number: - - "1" - - span: - line_start: 15 - line_stop: 15 - col_start: 17 - col_stop: 18 - path: "" - content: "r3: group = (0, 1)group; " - span: - line_start: 15 - line_stop: 15 - col_start: 13 - col_stop: 24 - path: "" - content: "r3: group = (0, 1)group; " - span: - line_start: 15 - line_stop: 15 - col_start: 5 - col_stop: 10 - path: "" - content: "r3: group = (0, 1)group; " - - mode: Private - type_: Address - name: "{\"name\":\"r4\",\"span\":\"{\\\"line_start\\\":16,\\\"line_stop\\\":16,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;\\\"}\"}" - value: - Value: - Address: - - aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 - - span: - line_start: 16 - line_stop: 16 - col_start: 15 - col_stop: 78 - path: "" - content: "r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - span: - line_start: 16 - line_stop: 16 - col_start: 5 - col_stop: 12 - path: "" - content: "r4: address = aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8;" - - mode: Private - type_: - IntegerType: I8 - name: "{\"name\":\"r4\",\"span\":\"{\\\"line_start\\\":17,\\\"line_stop\\\":17,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"r4: i8 = -1i8;\\\"}\"}" - value: - Unary: - inner: - Value: - Integer: - - I8 - - "1" - - span: - line_start: 17 - line_stop: 17 - col_start: 11 - col_stop: 14 - path: "" - content: "r4: i8 = -1i8;" - op: Negate - span: - line_start: 17 - line_stop: 17 - col_start: 10 - col_stop: 14 - path: "" - content: "r4: i8 = -1i8;" - span: - line_start: 17 - line_stop: 17 - col_start: 5 - col_stop: 7 - path: "" - content: "r4: i8 = -1i8;" - span: - line_start: 11 - line_stop: 11 - col_start: 2 - col_stop: 11 - path: "" - content: "[registers]" diff --git a/tests/expectations/parser/parser/inputs/input_public_constant_fail.leo.out b/tests/expectations/parser/parser/inputs/input_public_constant_fail.leo.out deleted file mode 100644 index a1a24549d6..0000000000 --- a/tests/expectations/parser/parser/inputs/input_public_constant_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Input -expectation: Fail -outputs: - - "Error [EPAR0370042]: A parameter cannot be both public and const.\n --> test:4:1\n |\n 4 | public constant a: bool = true;\n | ^^^^^^^^^^^^^^^" diff --git a/tests/expectations/parser/parser/program/backslash_eof.leo.out b/tests/expectations/parser/parser/program/backslash_eof.leo.out deleted file mode 100644 index 9fe177028c..0000000000 --- a/tests/expectations/parser/parser/program/backslash_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `\\`." diff --git a/tests/expectations/parser/parser/program/bidi_comment_2_fail.leo.out b/tests/expectations/parser/parser/program/bidi_comment_2_fail.leo.out deleted file mode 100644 index 7a30e47e4a..0000000000 --- a/tests/expectations/parser/parser/program/bidi_comment_2_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370044]: Unicode bidi override code point encountered." diff --git a/tests/expectations/parser/parser/program/bidi_comment_fail.leo.out b/tests/expectations/parser/parser/program/bidi_comment_fail.leo.out deleted file mode 100644 index 7a30e47e4a..0000000000 --- a/tests/expectations/parser/parser/program/bidi_comment_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370044]: Unicode bidi override code point encountered." diff --git a/tests/expectations/parser/parser/program/dollar_eof.leo.out b/tests/expectations/parser/parser/program/dollar_eof.leo.out deleted file mode 100644 index 1d418a4b25..0000000000 --- a/tests/expectations/parser/parser/program/dollar_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `$`." diff --git a/tests/expectations/parser/parser/program/escape_u8_eof.leo.out b/tests/expectations/parser/parser/program/escape_u8_eof.leo.out deleted file mode 100644 index 2973be8cc8..0000000000 --- a/tests/expectations/parser/parser/program/escape_u8_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `\\1u8`." diff --git a/tests/expectations/parser/parser/program/hex_eof.leo.out b/tests/expectations/parser/parser/program/hex_eof.leo.out deleted file mode 100644 index f8cd3c63e8..0000000000 --- a/tests/expectations/parser/parser/program/hex_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." diff --git a/tests/expectations/parser/parser/program/pipe_eof.leo.out b/tests/expectations/parser/parser/program/pipe_eof.leo.out deleted file mode 100644 index 5c1018440c..0000000000 --- a/tests/expectations/parser/parser/program/pipe_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370023]: Expected more characters to lex but found none." diff --git a/tests/expectations/parser/parser/program/q_eof.leo.out b/tests/expectations/parser/parser/program/q_eof.leo.out deleted file mode 100644 index 185a49721f..0000000000 --- a/tests/expectations/parser/parser/program/q_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370025]: Expected a closed string but found ``." diff --git a/tests/expectations/parser/parser/program/sq_eof.leo.out b/tests/expectations/parser/parser/program/sq_eof.leo.out deleted file mode 100644 index 5c1018440c..0000000000 --- a/tests/expectations/parser/parser/program/sq_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370023]: Expected more characters to lex but found none." diff --git a/tests/expectations/parser/parser/program/tilde_eof.leo.out b/tests/expectations/parser/parser/program/tilde_eof.leo.out deleted file mode 100644 index 02b455d02b..0000000000 --- a/tests/expectations/parser/parser/program/tilde_eof.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370030]: Could not lex the following content: `~`." diff --git a/tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.leo.out b/tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.leo.out deleted file mode 100644 index 5c1018440c..0000000000 --- a/tests/expectations/parser/parser/program/unclosed_unicode_eof_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370023]: Expected more characters to lex but found none." diff --git a/tests/expectations/parser/parser/serialize/one_plus_one.leo.out b/tests/expectations/parser/parser/serialize/one_plus_one.leo.out deleted file mode 100644 index 7812751117..0000000000 --- a/tests/expectations/parser/parser/serialize/one_plus_one.leo.out +++ /dev/null @@ -1,30 +0,0 @@ ---- -namespace: Serialize -expectation: Pass -outputs: - - name: "" - expected_input: [] - functions: - "{\"name\":\"main\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main() -> u8 {\\\"}\"}": - identifier: "{\"name\":\"main\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"function main() -> u8 {\\\"}\"}" - input: [] - const_: false - output: - IntegerType: U8 - core_mapping: ~ - block: - statements: - - Return: - expression: - Binary: - left: - Value: - Integer: - - U8 - - "1" - right: - Value: - Integer: - - U8 - - "1" - op: Add diff --git a/tests/expectations/parser/parser/serialize/parser_error.leo.out b/tests/expectations/parser/parser/serialize/parser_error.leo.out deleted file mode 100644 index 62f5bf28f9..0000000000 --- a/tests/expectations/parser/parser/serialize/parser_error.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Serialize -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected 'function', 'test' -- got 'invalid'\n --> test:3:1\n |\n 3 | invalid\n | ^^^^^^^" diff --git a/tests/expectations/parser/parser/statement/assign.leo.out b/tests/expectations/parser/parser/statement/assign.leo.out deleted file mode 100644 index b87db92545..0000000000 --- a/tests/expectations/parser/parser/statement/assign.leo.out +++ /dev/null @@ -1,89 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = expr;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 2 - path: "" - content: x = expr; - value: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: x = expr; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 2 - path: "" - content: x = x+y; - value: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: x = x+y; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: x = x+y; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = x();\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 2 - path: "" - content: x = x(); - value: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x = x();\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 8 - path: "" - content: x = x(); - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: x = x(); diff --git a/tests/expectations/parser/parser/statement/assign_fail.leo.out b/tests/expectations/parser/parser/statement/assign_fail.leo.out deleted file mode 100644 index f41b61429d..0000000000 --- a/tests/expectations/parser/parser/statement/assign_fail.leo.out +++ /dev/null @@ -1,18 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::y = y;\n | ^" - - "Error [EPAR0370032]: Could not parse the implicit value: 5.\n --> test:1:1\n |\n 1 | 5 = y;\n | ^" - - "Error [EPAR0370011]: invalid assignment target\n --> test:1:1\n |\n 1 | x + x = y;\n | ^^^^^" - - "Error [EPAR0370011]: invalid assignment target\n --> test:1:1\n |\n 1 | -x = y;\n | ^^" - - "Error [EPAR0370011]: invalid assignment target\n --> test:1:1\n |\n 1 | !x = y;\n | ^^" - - "Error [EPAR0370011]: invalid assignment target\n --> test:1:1\n |\n 1 | a? x : x = y;\n | ^^^^^^^^" - - "Error [EPAR0370005]: expected ; -- got 'as'\n --> test:1:3\n |\n 1 | x as u32 = y;\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [x, x, x] = y;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [x; 3] = y;\n | ^" - - "Error [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:1\n |\n 1 | (x, x, x) = y;\n | ^^^^^^^^^" - - "Error [EPAR0370005]: expected ; -- got '{'\n --> test:1:3\n |\n 1 | x {x: y, y: z} = y;\n | ^" - - "Error [EPAR0370011]: invalid assignment target\n --> test:1:1\n |\n 1 | x() = y;\n | ^^^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got 'y'\n --> test:1:3\n |\n 1 | x.y() = y;\n | ^" - - "Error [EPAR0370030]: Could not lex the following content: `🦀 = y;`." diff --git a/tests/expectations/parser/parser/statement/block.leo.out b/tests/expectations/parser/parser/statement/block.leo.out deleted file mode 100644 index c469fbdf47..0000000000 --- a/tests/expectations/parser/parser/statement/block.leo.out +++ /dev/null @@ -1,147 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 3 - path: "" - content: "{}" - - Block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 2 - line_stop: 2 - col_start: 8 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 1 - line_stop: 3 - col_start: 1 - col_stop: 2 - path: "" - content: "{\n ...\n}" - - Block: - statements: - - Block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 2 - col_stop: 4 - path: "" - content: "{{}}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: "{{}}" - - Block: - statements: - - Block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 3 - line_stop: 3 - col_start: 8 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 3 - line_stop: 3 - col_start: 1 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 2 - line_stop: 4 - col_start: 1 - col_stop: 2 - path: "" - content: "{\n ...\n}" - span: - line_start: 1 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "{\n ...\n ...\n ...\n}" - - Block: - statements: - - Conditional: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":2,\\\"line_stop\\\":2,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x {\\\"}\"}" - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 3 - line_stop: 3 - col_start: 8 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 3 - line_stop: 3 - col_start: 1 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 2 - line_stop: 4 - col_start: 6 - col_stop: 2 - path: "" - content: "if x {\n ...\n}" - next: ~ - span: - line_start: 2 - line_stop: 4 - col_start: 1 - col_stop: 2 - path: "" - content: "if x {\n ...\n}" - span: - line_start: 1 - line_stop: 5 - col_start: 1 - col_stop: 2 - path: "" - content: "{\n ...\n ...\n ...\n}" diff --git a/tests/expectations/parser/parser/statement/conditional.leo.out b/tests/expectations/parser/parser/statement/conditional.leo.out deleted file mode 100644 index 2b4a24e511..0000000000 --- a/tests/expectations/parser/parser/statement/conditional.leo.out +++ /dev/null @@ -1,248 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Conditional: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x {\\\"}\"}" - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 2 - line_stop: 2 - col_start: 8 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 1 - line_stop: 3 - col_start: 6 - col_stop: 2 - path: "" - content: "if x {\n ...\n}" - next: ~ - span: - line_start: 1 - line_stop: 3 - col_start: 1 - col_stop: 2 - path: "" - content: "if x {\n ...\n}" - - Conditional: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if (x) {\\\"}\"}" - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 2 - line_stop: 2 - col_start: 8 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 1 - line_stop: 3 - col_start: 8 - col_stop: 2 - path: "" - content: "if (x) {\n ...\n}" - next: ~ - span: - line_start: 1 - line_stop: 3 - col_start: 1 - col_stop: 2 - path: "" - content: "if (x) {\n ...\n}" - - Conditional: - condition: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if (x) {} else {}\\\"}\"}" - block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 10 - path: "" - content: "if (x) {} else {}" - next: - Block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 16 - col_stop: 18 - path: "" - content: "if (x) {} else {}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "if (x) {} else {}" - - Conditional: - condition: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x+y {} else if x+z {} else {}\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x+y {} else if x+z {} else {}\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 4 - col_stop: 7 - path: "" - content: "if x+y {} else if x+z {} else {}" - block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 8 - col_stop: 10 - path: "" - content: "if x+y {} else if x+z {} else {}" - next: - Conditional: - condition: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x+y {} else if x+z {} else {}\\\"}\"}" - right: - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x+y {} else if x+z {} else {}\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: "if x+y {} else if x+z {} else {}" - block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 23 - col_stop: 25 - path: "" - content: "if x+y {} else if x+z {} else {}" - next: - Block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 31 - col_stop: 33 - path: "" - content: "if x+y {} else if x+z {} else {}" - span: - line_start: 1 - line_stop: 1 - col_start: 16 - col_stop: 33 - path: "" - content: "if x+y {} else if x+z {} else {}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 33 - path: "" - content: "if x+y {} else if x+z {} else {}" - - Conditional: - condition: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x+y {\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"if x+y {\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 4 - col_stop: 7 - path: "" - content: "if x+y {" - block: - statements: - - Expression: - expression: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":2,\\\"line_stop\\\":2,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"expr;\\\"}\"}" - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 5 - path: "" - content: expr; - - Return: - expression: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 3 - line_stop: 3 - col_start: 8 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 3 - line_stop: 3 - col_start: 1 - col_stop: 11 - path: "" - content: return 0u8; - span: - line_start: 1 - line_stop: 4 - col_start: 8 - col_stop: 2 - path: "" - content: "if x+y {\n ...\n ...\n}" - next: ~ - span: - line_start: 1 - line_stop: 4 - col_start: 1 - col_stop: 2 - path: "" - content: "if x+y {\n ...\n ...\n}" diff --git a/tests/expectations/parser/parser/statement/conditional_fail.leo.out b/tests/expectations/parser/parser/statement/conditional_fail.leo.out deleted file mode 100644 index 1150138dbb..0000000000 --- a/tests/expectations/parser/parser/statement/conditional_fail.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:23\n |\n 1 | if true {} else let x = 2;\n | ^" diff --git a/tests/expectations/parser/parser/statement/console.leo.out b/tests/expectations/parser/parser/statement/console.leo.out deleted file mode 100644 index ac03e47b00..0000000000 --- a/tests/expectations/parser/parser/statement/console.leo.out +++ /dev/null @@ -1,149 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Console: - function: - Assert: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.assert(x);\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: console.assert(x); - - Console: - function: - Error: - string: - - Scalar: 123 - - Scalar: 125 - parameters: - - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}\\\\\\\", x);\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 23 - path: "" - content: "console.error(\"{}\", x);" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 23 - path: "" - content: "console.error(\"{}\", x);" - - Console: - function: - Error: - string: - - Scalar: 123 - - Scalar: 125 - - Scalar: 123 - - Scalar: 125 - parameters: - - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":23,\\\"col_stop\\\":24,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 28 - path: "" - content: "console.error(\"{}{}\", x, y);" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 28 - path: "" - content: "console.error(\"{}{}\", x, y);" - - Console: - function: - Error: - string: - - Scalar: 120 - parameters: [] - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 19 - path: "" - content: "console.error(\"x\");" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "console.error(\"x\");" - - Console: - function: - Log: - string: - - Scalar: 123 - - Scalar: 125 - parameters: - - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}\\\\\\\", x);\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 12 - col_stop: 21 - path: "" - content: "console.log(\"{}\", x);" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 21 - path: "" - content: "console.log(\"{}\", x);" - - Console: - function: - Log: - string: - - Scalar: 123 - - Scalar: 125 - - Scalar: 123 - - Scalar: 125 - parameters: - - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":24,\\\"col_stop\\\":25,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 12 - col_stop: 26 - path: "" - content: "console.log(\"{}{}\", x, y);" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 26 - path: "" - content: "console.log(\"{}{}\", x, y);" - - Console: - function: - Log: - string: - - Scalar: 120 - parameters: [] - span: - line_start: 1 - line_stop: 1 - col_start: 12 - col_stop: 17 - path: "" - content: "console.log(\"x\");" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "console.log(\"x\");" diff --git a/tests/expectations/parser/parser/statement/console_fail.leo.out b/tests/expectations/parser/parser/statement/console_fail.leo.out deleted file mode 100644 index af7d33fe51..0000000000 --- a/tests/expectations/parser/parser/statement/console_fail.leo.out +++ /dev/null @@ -1,7 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370044]: Unicode bidi override code point encountered." - - "Error [EPAR0370009]: unexpected string: expected 'formatted string', got '1'\n --> test:1:13\n |\n 1 | console.log(1);\n | ^" - - "Error [EPAR0370007]: unexpected identifier: expected 'assert', 'error', 'log' -- got 'test'\n --> test:1:9\n |\n 1 | console.test();\n | ^^^^" diff --git a/tests/expectations/parser/parser/statement/definition.leo.out b/tests/expectations/parser/parser/statement/definition.leo.out deleted file mode 100644 index 7e5a3f1037..0000000000 --- a/tests/expectations/parser/parser/statement/definition.leo.out +++ /dev/null @@ -1,399 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = expr;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = expr;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u16 = x+y;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u16 = x+y;" - type_: - IntegerType: U16 - value: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u16 = x+y;\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u16 = x+y;\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: "let x: u16 = x+y;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u16 = x+y;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = x();\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = x();" - type_: - IntegerType: U8 - value: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = x();\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 16 - path: "" - content: "let x: u8 = x();" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "let x: u8 = x();" - - Definition: - declaration_type: Const - variable_names: - - mutable: false - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i8 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 8 - path: "" - content: "const x: i8 = expr;" - type_: - IntegerType: I8 - value: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":15,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i8 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "const x: i8 = expr;" - - Definition: - declaration_type: Const - variable_names: - - mutable: false - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i16 = x+y;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 8 - path: "" - content: "const x: i16 = x+y;" - type_: - IntegerType: I16 - value: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i16 = x+y;\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i16 = x+y;\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 16 - col_stop: 19 - path: "" - content: "const x: i16 = x+y;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "const x: i16 = x+y;" - - Definition: - declaration_type: Const - variable_names: - - mutable: false - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i8 = x();\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 8 - path: "" - content: "const x: i8 = x();" - type_: - IntegerType: I8 - value: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":15,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: i8 = x();\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 18 - path: "" - content: "const x: i8 = x();" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "const x: i8 = x();" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u32 = expr;" - type_: - IntegerType: U32 - value: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u32 = expr;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = x+y;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u32 = x+y;" - type_: - IntegerType: U32 - value: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = x+y;\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = x+y;\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: "let x: u32 = x+y;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u32 = x+y;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = x();\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u32 = x();" - type_: - IntegerType: U32 - value: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u32 = x();\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: "let x: u32 = x();" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u32 = x();" - - Definition: - declaration_type: Const - variable_names: - - mutable: false - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 8 - path: "" - content: "const x: u32 = expr;" - type_: - IntegerType: U32 - value: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":20,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 20 - path: "" - content: "const x: u32 = expr;" - - Definition: - declaration_type: Const - variable_names: - - mutable: false - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = x+y;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 8 - path: "" - content: "const x: u32 = x+y;" - type_: - IntegerType: U32 - value: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = x+y;\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = x+y;\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 16 - col_stop: 19 - path: "" - content: "const x: u32 = x+y;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "const x: u32 = x+y;" - - Definition: - declaration_type: Const - variable_names: - - mutable: false - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = x();\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 7 - col_stop: 8 - path: "" - content: "const x: u32 = x();" - type_: - IntegerType: U32 - value: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"const x: u32 = x();\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 16 - col_stop: 19 - path: "" - content: "const x: u32 = x();" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "const x: u32 = x();" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: address = aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: address = aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53;" - type_: Address - value: - Value: - Address: - - aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53 - - span: - line_start: 1 - line_stop: 1 - col_start: 18 - col_stop: 81 - path: "" - content: "let x: address = aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 81 - path: "" - content: "let x: address = aleo15u4r0gzjtqzepkgurgn7p3u5kkhs9p74rx6aun3uh2s5std6759svgmg53;" diff --git a/tests/expectations/parser/parser/statement/definition_fail.leo.out b/tests/expectations/parser/parser/statement/definition_fail.leo.out deleted file mode 100644 index 48074c2ff5..0000000000 --- a/tests/expectations/parser/parser/statement/definition_fail.leo.out +++ /dev/null @@ -1,48 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x = expr;\n | ^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:11\n |\n 1 | let mut x = expr;\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x = ();\n | ^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:11\n |\n 1 | let mut x = ();\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x = x+y;\n | ^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:11\n |\n 1 | let mut x = x+y;\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x = (x,y);\n | ^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:11\n |\n 1 | let mut x = (x,y);\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x = x();\n | ^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:11\n |\n 1 | let mut x = x();\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x = expr;\n | ^^^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:13\n |\n 1 | const mut x = expr;\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x = ();\n | ^^^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:13\n |\n 1 | const mut x = ();\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x = x+y;\n | ^^^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:13\n |\n 1 | const mut x = x+y;\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x = (x,y);\n | ^^^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:13\n |\n 1 | const mut x = (x,y);\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x = x();\n | ^^^^^^^^^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:13\n |\n 1 | const mut x = x();\n | ^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x: u32 = expr;\n | ^^^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x: u32 = ();\n | ^^^^^^^\nError [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:18\n |\n 1 | let mut x: u32 = ();\n | ^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x: u32 = x+y;\n | ^^^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x: u32 = (x,y);\n | ^^^^^^^\nError [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:18\n |\n 1 | let mut x: u32 = (x,y);\n | ^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | let mut x: u32 = x();\n | ^^^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x: u32 = expr;\n | ^^^^^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x: u32 = ();\n | ^^^^^^^^^\nError [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:20\n |\n 1 | const mut x: u32 = ();\n | ^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x: u32 = x+y;\n | ^^^^^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x: u32 = (x,y);\n | ^^^^^^^^^\nError [EPAR0370005]: expected A valid expression. -- got 'A tuple expression.'\n --> test:1:20\n |\n 1 | const mut x: u32 = (x,y);\n | ^^^^^" - - "Error [EPAR0370014]: let mut = ... is deprecated. `let` keyword implies mutabality by default.\n --> test:1:1\n |\n 1 | const mut x: u32 = x();\n | ^^^^^^^^^" - - "Error [EPAR0370009]: unexpected string: expected 'ident', got ','\n --> test:1:10\n |\n 1 | let (x,y,,) = ();\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'ident', got ','\n --> test:1:6\n |\n 1 | let (,x,y) = ();\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'ident', got ','\n --> test:1:8\n |\n 1 | let (x,,y) = ();\n | ^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got '['\n --> test:1:8\n |\n 1 | let x: [u8; (2,,)] = [[0,0], [0,0]];\n | ^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got 'const'\n --> test:1:8\n |\n 1 | let x: const = expr;\n | ^^^^^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got 'let'\n --> test:1:10\n |\n 1 | const x: let = expr;\n | ^^^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got 'mut'\n --> test:1:8\n |\n 1 | let x: mut = expr;\n | ^^^" - - "Error [EPAR0370009]: unexpected string: expected 'ident', got ''\n --> test:1:1\n |\n 1 | let\n | ^^^" - - "Error [EPAR0370005]: expected : -- got ''\n --> test:1:5\n |\n 1 | let x\n | ^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got ''\n --> test:1:6\n |\n 1 | let x:\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = (a, y]);\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'ident', got '='\n --> test:1:5\n |\n 1 | let = 1u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'ident', got ';'\n --> test:1:4\n |\n 1 | let;\n | ^" - - "Error [EPAR0370005]: expected : -- got '1'\n --> test:1:7\n |\n 1 | let x 1u8;\n | ^" - - "Error [EPAR0370005]: expected = -- got ';'\n --> test:1:10\n |\n 1 | let x: u8;\n | ^" - - "Error [EPAR0370005]: expected = -- got ''\n --> test:1:8\n |\n 1 | let x: u8\n | ^^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got '='\n --> test:1:8\n |\n 1 | let x: = 1;\n | ^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got '['\n --> test:1:8\n |\n 1 | let x: [u8] = 1;\n | ^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got '['\n --> test:1:8\n |\n 1 | let x: [u8;\n | ^" - - "Error [EPAR0370005]: expected 'i8', 'i16', 'i32', 'i64', 'i128', 'u8', 'u16', 'u32', 'u64', 'u128', 'field', 'group', 'address', 'bool', 'char' -- got '['\n --> test:1:8\n |\n 1 | let x: [u8; 1u8] = [1,\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ']'\n --> test:1:15\n |\n 1 | let dbg: u8 = ];\n | ^" - - "Error [EPAR0370030]: Could not lex the following content: `🦀: u8 = 0;`." - - "Error [EPAR0370039]: do not put parens around single variable names\n --> test:1:6\n |\n 1 | let (x) = ...;\n | ^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:9\n |\n 1 | let (x) = ...;\n | ^" - - "Error [EPAR0370039]: do not put parens around single variable names\n --> test:1:6\n |\n 1 | let (x,) = ...;\n | ^\nError [EPAR0370005]: expected : -- got '='\n --> test:1:10\n |\n 1 | let (x,) = ...;\n | ^" diff --git a/tests/expectations/parser/parser/statement/expression.leo.out b/tests/expectations/parser/parser/statement/expression.leo.out deleted file mode 100644 index 06cbb5ad23..0000000000 --- a/tests/expectations/parser/parser/statement/expression.leo.out +++ /dev/null @@ -1,56 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Expression: - expression: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: expr; - - Expression: - expression: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x+y;\\\"}\"}" - right: - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x+y;\\\"}\"}" - op: Add - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: x+y; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: x+y; - - Expression: - expression: - Call: - function: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x();\\\"}\"}" - arguments: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: x(); - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: x(); diff --git a/tests/expectations/parser/parser/statement/expression_fail.leo.out b/tests/expectations/parser/parser/statement/expression_fail.leo.out deleted file mode 100644 index e6d0ae895d..0000000000 --- a/tests/expectations/parser/parser/statement/expression_fail.leo.out +++ /dev/null @@ -1,10 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ']'\n --> test:1:2\n |\n 1 | (];\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [);\n | ^" - - "Error [EPAR0370030]: Could not lex the following content: `\\y;`." - - "Error [EPAR0370041]: Found the char `;`, but expected `|`" - - "Error [EPAR0370005]: expected ; -- got '['\n --> test:1:2\n |\n 1 | x[};\n | ^" - - "Error [EPAR0370005]: expected ) -- got ']'\n --> test:1:6\n |\n 1 | (x, y];\n | ^" diff --git a/tests/expectations/parser/parser/statement/hex_int_fail.leo.out b/tests/expectations/parser/parser/statement/hex_int_fail.leo.out deleted file mode 100644 index dde7d447e2..0000000000 --- a/tests/expectations/parser/parser/statement/hex_int_fail.leo.out +++ /dev/null @@ -1,7 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." - - "Error [EPAR0370036]: A hex number `0x..` was provided but hex is not allowed." diff --git a/tests/expectations/parser/parser/statement/iteration.leo.out b/tests/expectations/parser/parser/statement/iteration.leo.out deleted file mode 100644 index 274ddb2488..0000000000 --- a/tests/expectations/parser/parser/statement/iteration.leo.out +++ /dev/null @@ -1,231 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Iteration: - variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"for x: u8 in 0u8..7u8 {}\\\"}\"}" - type_: - IntegerType: U8 - start: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 1 - line_stop: 1 - col_start: 14 - col_stop: 17 - path: "" - content: "for x: u8 in 0u8..7u8 {}" - stop: - Value: - Integer: - - U8 - - "7" - - span: - line_start: 1 - line_stop: 1 - col_start: 19 - col_stop: 22 - path: "" - content: "for x: u8 in 0u8..7u8 {}" - inclusive: false - block: - statements: [] - span: - line_start: 1 - line_stop: 1 - col_start: 23 - col_stop: 25 - path: "" - content: "for x: u8 in 0u8..7u8 {}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 25 - path: "" - content: "for x: u8 in 0u8..7u8 {}" - - Iteration: - variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"for x: i64 in 0i64..7i64 {\\\"}\"}" - type_: - IntegerType: I64 - start: - Value: - Integer: - - I64 - - "0" - - span: - line_start: 1 - line_stop: 1 - col_start: 15 - col_stop: 19 - path: "" - content: "for x: i64 in 0i64..7i64 {" - stop: - Value: - Integer: - - I64 - - "7" - - span: - line_start: 1 - line_stop: 1 - col_start: 21 - col_stop: 25 - path: "" - content: "for x: i64 in 0i64..7i64 {" - inclusive: false - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 2 - line_stop: 2 - col_start: 8 - col_stop: 11 - path: "" - content: return 1u8; - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 11 - path: "" - content: return 1u8; - span: - line_start: 1 - line_stop: 3 - col_start: 26 - col_stop: 2 - path: "" - content: "for x: i64 in 0i64..7i64 {\n ...\n}" - span: - line_start: 1 - line_stop: 3 - col_start: 1 - col_stop: 2 - path: "" - content: "for x: i64 in 0i64..7i64 {\n ...\n}" - - Iteration: - variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"for x: field in 0field..99u8 {\\\"}\"}" - type_: Field - start: - Value: - Field: - - "0" - - span: - line_start: 1 - line_stop: 1 - col_start: 17 - col_stop: 23 - path: "" - content: "for x: field in 0field..99u8 {" - stop: - Value: - Integer: - - U8 - - "99" - - span: - line_start: 1 - line_stop: 1 - col_start: 25 - col_stop: 29 - path: "" - content: "for x: field in 0field..99u8 {" - inclusive: false - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 2 - line_stop: 2 - col_start: 8 - col_stop: 11 - path: "" - content: return 1u8; - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 11 - path: "" - content: return 1u8; - span: - line_start: 1 - line_stop: 3 - col_start: 30 - col_stop: 2 - path: "" - content: "for x: field in 0field..99u8 {\n ...\n}" - span: - line_start: 1 - line_stop: 3 - col_start: 1 - col_stop: 2 - path: "" - content: "for x: field in 0field..99u8 {\n ...\n}" - - Iteration: - variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"for x: bool in 0u8..Self {\\\"}\"}" - type_: Boolean - start: - Value: - Integer: - - U8 - - "0" - - span: - line_start: 1 - line_stop: 1 - col_start: 16 - col_stop: 19 - path: "" - content: "for x: bool in 0u8..Self {" - stop: - Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":25,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"for x: bool in 0u8..Self {\\\"}\"}" - inclusive: false - block: - statements: - - Return: - expression: - Value: - Integer: - - U8 - - "1" - - span: - line_start: 2 - line_stop: 2 - col_start: 8 - col_stop: 11 - path: "" - content: return 1u8; - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 11 - path: "" - content: return 1u8; - span: - line_start: 1 - line_stop: 3 - col_start: 26 - col_stop: 2 - path: "" - content: "for x: bool in 0u8..Self {\n ...\n}" - span: - line_start: 1 - line_stop: 3 - col_start: 1 - col_stop: 2 - path: "" - content: "for x: bool in 0u8..Self {\n ...\n}" diff --git a/tests/expectations/parser/parser/statement/let_mut_recover.leo.out b/tests/expectations/parser/parser/statement/let_mut_recover.leo.out deleted file mode 100644 index acb14a5c3f..0000000000 --- a/tests/expectations/parser/parser/statement/let_mut_recover.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected -> -- got '{'\n --> test:3:16\n |\n 3 | function foo() {\n | ^" diff --git a/tests/expectations/parser/parser/statement/return.leo.out b/tests/expectations/parser/parser/statement/return.leo.out deleted file mode 100644 index 581eca080f..0000000000 --- a/tests/expectations/parser/parser/statement/return.leo.out +++ /dev/null @@ -1,34 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Return: - expression: - Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":12,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"return expr;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 12 - path: "" - content: return expr; - - Return: - expression: - Value: - Integer: - - U8 - - "5" - - span: - line_start: 2 - line_stop: 2 - col_start: 1 - col_stop: 4 - path: "" - content: 5u8; - span: - line_start: 1 - line_stop: 2 - col_start: 1 - col_stop: 4 - path: "" - content: "return\n5u8;" diff --git a/tests/expectations/parser/parser/statement/return_fail.leo.out b/tests/expectations/parser/parser/statement/return_fail.leo.out deleted file mode 100644 index 945e961690..0000000000 --- a/tests/expectations/parser/parser/statement/return_fail.leo.out +++ /dev/null @@ -1,7 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ''\n --> test:1:1\n |\n 1 | return\n | ^^^^^^" - - "Error [EPAR0370032]: Could not parse the implicit value: 5.\n --> test:1:8\n |\n 1 | return 5\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:2:1\n |\n 2 | if x {}\n | ^^" diff --git a/tests/expectations/parser/parser/unreachable/define.leo.out b/tests/expectations/parser/parser/unreachable/define.leo.out deleted file mode 100644 index 3c3046ebcc..0000000000 --- a/tests/expectations/parser/parser/unreachable/define.leo.out +++ /dev/null @@ -1,50 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ';'\n --> test:1:1\n |\n 1 | ; x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '.'\n --> test:1:1\n |\n 1 | . x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:8\n |\n 1 | import x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ','\n --> test:1:1\n |\n 1 | , x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '['\n --> test:1:1\n |\n 1 | [ x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ']'\n --> test:1:1\n |\n 1 | ] x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ''\n --> test:1:11\n |\n 1 | { x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '}'\n --> test:1:1\n |\n 1 | } x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ) -- got '='\n --> test:1:5\n |\n 1 | ( x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ')'\n --> test:1:1\n |\n 1 | ) x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ':'\n --> test:1:1\n |\n 1 | : x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ':'\n --> test:1:1\n |\n 1 | :: x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '?'\n --> test:1:1\n |\n 1 | ? x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '_'\n --> test:1:1\n |\n 1 | _ x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:1\n |\n 1 | = x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '=='\n --> test:1:1\n |\n 1 | == x = 10u8;\n | ^^" - - "Error [EPAR0370011]: invalid assignment target\n --> test:1:1\n |\n 1 | ! x = 10u8;\n | ^^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '!='\n --> test:1:1\n |\n 1 | != x = 10u8;\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '>'\n --> test:1:1\n |\n 1 | > x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '>='\n --> test:1:1\n |\n 1 | >= x = 10u8;\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '<'\n --> test:1:1\n |\n 1 | < x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '<='\n --> test:1:1\n |\n 1 | <= x = 10u8;\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '>'\n --> test:1:1\n |\n 1 | > x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '..'\n --> test:1:1\n |\n 1 | .. x = 10u8;\n | ^^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:4\n |\n 1 | as x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected . -- got 'x'\n --> test:1:9\n |\n 1 | console x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | for x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected { -- got '='\n --> test:1:6\n |\n 1 | if x = 10u8;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'else'\n --> test:1:1\n |\n 1 | else x = 10u8;\n | ^^^^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:4\n |\n 1 | i8 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:5\n |\n 1 | i16 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:5\n |\n 1 | i32 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:5\n |\n 1 | i64 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:6\n |\n 1 | i128 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:4\n |\n 1 | u8 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:5\n |\n 1 | u16 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:5\n |\n 1 | u32 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:5\n |\n 1 | u64 x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:6\n |\n 1 | u128 x = 10u8;\n | ^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370005]: expected ; -- got '='\n --> test:1:10\n |\n 1 | return x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:6\n |\n 1 | self x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:6\n |\n 1 | Self x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:6\n |\n 1 | true x = 10u8;\n | ^" - - "Error [EPAR0370005]: expected ; -- got 'x'\n --> test:1:7\n |\n 1 | false x = 10u8;\n | ^" - - "Error [EPAR0370032]: Could not parse the implicit value: 0.\n --> test:1:1\n |\n 1 | 0 x = 10u8;\n | ^" diff --git a/tests/expectations/parser/parser/unreachable/eat_ident.leo.out b/tests/expectations/parser/parser/unreachable/eat_ident.leo.out deleted file mode 100644 index 5c1018440c..0000000000 --- a/tests/expectations/parser/parser/unreachable/eat_ident.leo.out +++ /dev/null @@ -1,5 +0,0 @@ ---- -namespace: Parse -expectation: Fail -outputs: - - "Error [EPAR0370023]: Expected more characters to lex but found none." diff --git a/tests/expectations/parser/parser/unreachable/eat_int.leo.out b/tests/expectations/parser/parser/unreachable/eat_int.leo.out deleted file mode 100644 index 881cd8dfbe..0000000000 --- a/tests/expectations/parser/parser/unreachable/eat_int.leo.out +++ /dev/null @@ -1,56 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '-'\n --> test:1:3\n |\n 1 | x.-12\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_.\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_import\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_,\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_*\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_+\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_-\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_/\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_[\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_]\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_{\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_}\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_(\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_)\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_:\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_::\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_?\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0__\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_==\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_!\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_!=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_>\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_>=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_<\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_<=\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_>\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_..\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_as\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_console\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_const\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_let\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_for\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_if\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_else\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_i8\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_i16\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_i32\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_i64\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_i128\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_u8\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_u16\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_u32\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_u64\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_u128\n | ^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_return\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_self\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_Self\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_true\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '0'\n --> test:1:3\n |\n 1 | x.0_false\n | ^" diff --git a/tests/expectations/parser/parser/unreachable/equality_and_order_expression.leo.out b/tests/expectations/parser/parser/unreachable/equality_and_order_expression.leo.out deleted file mode 100644 index 2fb078335f..0000000000 --- a/tests/expectations/parser/parser/unreachable/equality_and_order_expression.leo.out +++ /dev/null @@ -1,56 +0,0 @@ ---- -namespace: ParseExpression -expectation: Fail -outputs: - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 ; {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 . {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 import {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 , {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 * {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 + {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 - {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 / {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 [ {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 ] {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 { {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 } {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 ( {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 ) {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 : {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 :: {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 ? {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 _ {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 = {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 == {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 ! {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 != {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 > {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 >= {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 < {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 <= {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 > {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 .. {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 as {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 console {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 const {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 let {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 for {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 if {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 else {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 i8 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 i16 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 i32 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 i64 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 i128 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 u8 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 u16 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 u32 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 u64 {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 u128 {}\n | ^^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 return {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 self {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 Self {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 true {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 false {}\n | ^^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got 'if'\n --> test:1:1\n |\n 1 | if 10 0 {}\n | ^^" diff --git a/tests/expectations/parser/parser/unreachable/expect_ident.leo.out b/tests/expectations/parser/parser/unreachable/expect_ident.leo.out deleted file mode 100644 index 8041c9b1fd..0000000000 --- a/tests/expectations/parser/parser/unreachable/expect_ident.leo.out +++ /dev/null @@ -1,56 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::;\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::.\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::import\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::,\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::*\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::+\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::-\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::/\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::[\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::]\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::{\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::}\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::(\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::)\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x:::\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::::\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::?\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::_\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::=\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::==\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::!\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::!=\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::>\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::>=\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::<\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::<=\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::>\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::..\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::as\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::console\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::const\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::let\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::for\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::if\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::else\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::i8\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::i16\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::i32\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::i64\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::i128\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::u8\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::u16\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::u32\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::u64\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::u128\n | ^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::return\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::self\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::Self\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::true\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::false\n | ^" - - "Error [EPAR0370005]: expected ; -- got ':'\n --> test:1:2\n |\n 1 | x::0\n | ^" diff --git a/tests/expectations/parser/parser/unreachable/math_op_fail.leo.out b/tests/expectations/parser/parser/unreachable/math_op_fail.leo.out deleted file mode 100644 index 43623c7643..0000000000 --- a/tests/expectations/parser/parser/unreachable/math_op_fail.leo.out +++ /dev/null @@ -1,59 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a ; b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a import b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a , b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a [ b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a ] b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a { b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a } b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a ( b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a ) b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a : b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a ? b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a _ b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a = b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a ! b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a .. b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a console b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a const b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a let b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a for b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a if b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a else b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a i8 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a i16 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a i32 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a i64 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a i128 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a u8 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a u16 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a u32 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a u64 b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a u128 b;\n | ^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a return b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a self b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a Self b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a true b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a false b;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a 0 b;\n | ^" - - "did not consume all input: '=' @ 1:3-4\n'b' @ 1:4-5\n';' @ 1:5-6\n" - - "Error [EPAR0370009]: unexpected string: expected 'int or ident', got '='\n --> test:1:3\n |\n 1 | x.=b;\n | ^" - - "Error [EPAR0370005]: expected ; -- got ','\n --> test:1:2\n |\n 1 | x,=b; // 43\n | ^" - - "Error [EPAR0370005]: expected ; -- got '['\n --> test:1:2\n |\n 1 | x[=b;\n | ^" - - "Error [EPAR0370005]: expected ; -- got ']'\n --> test:1:2\n |\n 1 | x]=b;\n | ^" - - "Error [EPAR0370005]: expected ; -- got '{'\n --> test:1:2\n |\n 1 | x{=b;\n | ^" - - "Error [EPAR0370005]: expected ; -- got '}'\n --> test:1:2\n |\n 1 | x}=b;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ';'\n --> test:1:4\n |\n 1 | x=(;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ')'\n --> test:1:3\n |\n 1 | x=);\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ':'\n --> test:1:3\n |\n 1 | x=:;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got ':'\n --> test:1:3\n |\n 1 | x=::;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:3\n |\n 1 | x?=b;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:4\n |\n 1 | x!==b;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:4\n |\n 1 | x>==b;\n | ^" - - "Error [EPAR0370009]: unexpected string: expected 'expression', got '='\n --> test:1:4\n |\n 1 | x<==b;\n | ^" - - "Error [EPAR0370005]: expected ; -- got '..'\n --> test:1:2\n |\n 1 | x..=b;\n | ^^" - - "Error [EPAR0370023]: Expected more characters to lex but found none." diff --git a/tests/expectations/parser/parser/unreachable/math_op_pass.leo.out b/tests/expectations/parser/parser/unreachable/math_op_pass.leo.out deleted file mode 100644 index 56e4be83a3..0000000000 --- a/tests/expectations/parser/parser/unreachable/math_op_pass.leo.out +++ /dev/null @@ -1,800 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a == b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a == b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a == b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a == b;\\\"}\"}" - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 19 - path: "" - content: "let x: u8 = a == b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "let x: u8 = a == b;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a != b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a != b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a != b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a != b;\\\"}\"}" - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 19 - path: "" - content: "let x: u8 = a != b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "let x: u8 = a != b;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a > b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a > b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a > b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a > b;\\\"}\"}" - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 18 - path: "" - content: "let x: u8 = a > b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = a > b;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a >= b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a >= b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a >= b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a >= b;\\\"}\"}" - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 19 - path: "" - content: "let x: u8 = a >= b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "let x: u8 = a >= b;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a < b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a < b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a < b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a < b;\\\"}\"}" - op: Lt - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 18 - path: "" - content: "let x: u8 = a < b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = a < b;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a <= b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a <= b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a <= b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a <= b;\\\"}\"}" - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 19 - path: "" - content: "let x: u8 = a <= b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "let x: u8 = a <= b;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a > b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a > b;" - type_: - IntegerType: U8 - value: - Binary: - left: - Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a > b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a > b;\\\"}\"}" - op: Gt - span: - line_start: 1 - line_stop: 1 - col_start: 13 - col_stop: 18 - path: "" - content: "let x: u8 = a > b;" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = a > b;" - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"x_\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x_=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 3 - path: "" - content: x_=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x_=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x_=b; - - Expression: - expression: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x==b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x==b;\\\"}\"}" - op: Eq - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x==b; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x==b; - - Expression: - expression: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x!=b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x!=b;\\\"}\"}" - op: Ne - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x!=b; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x!=b; - - Expression: - expression: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x>=b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x>=b;\\\"}\"}" - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x>=b; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x>=b; - - Expression: - expression: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x<=b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x<=b;\\\"}\"}" - op: Le - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x<=b; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x<=b; - - Expression: - expression: - Binary: - left: - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x>=b;\\\"}\"}" - right: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x>=b;\\\"}\"}" - op: Ge - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x>=b; - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x>=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xconsole\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xconsole=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: xconsole=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xconsole=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 11 - path: "" - content: xconsole=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xconst\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xconst=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xconst=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xconst=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: xconst=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xlet\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xlet=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xlet=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xlet=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xlet=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xfor\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xfor=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xfor=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xfor=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xfor=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xif\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xif=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: xif=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xif=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xif=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xelse\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xelse=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xelse=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xelse=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: xelse=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xi8\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi8=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: xi8=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi8=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xi8=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xi16\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi16=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xi16=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi16=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xi16=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xi32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi32=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xi32=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi32=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xi32=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xi64\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi64=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xi64=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi64=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xi64=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xi128\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi128=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xi128=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xi128=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: xi128=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xu8\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu8=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 4 - path: "" - content: xu8=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu8=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xu8=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xu16\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu16=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xu16=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu16=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xu16=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xu32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu32=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xu32=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu32=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xu32=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xu64\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu64=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: xu64=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu64=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xu64=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xu128\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu128=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xu128=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xu128=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: xu128=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xreturn\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xreturn=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: xreturn=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xreturn=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 10 - path: "" - content: xreturn=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xtrue\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xtrue=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 6 - path: "" - content: xtrue=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xtrue=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 8 - path: "" - content: xtrue=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"xfalse\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xfalse=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 7 - path: "" - content: xfalse=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"xfalse=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 9 - path: "" - content: xfalse=b; - - Assign: - operation: Assign - assignee: - identifier: "{\"name\":\"x0\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x0=b;\\\"}\"}" - accesses: [] - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 3 - path: "" - content: x0=b; - value: - Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"x0=b;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 5 - path: "" - content: x0=b; diff --git a/tests/expectations/parser/parser/unreachable/postfix_fail.leo.out b/tests/expectations/parser/parser/unreachable/postfix_fail.leo.out deleted file mode 100644 index fed5d32151..0000000000 --- a/tests/expectations/parser/parser/unreachable/postfix_fail.leo.out +++ /dev/null @@ -1,24 +0,0 @@ ---- -namespace: ParseStatement -expectation: Fail -outputs: - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a;;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a.;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a,;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a[;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a];\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a{;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a};\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a);\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a:;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a?;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a=;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a==;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a!;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a!=;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a>;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a>=;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a<;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a<=;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a>;\n | ^" - - "Error [EPAR0370005]: expected : -- got '='\n --> test:1:7\n |\n 1 | let x = a..;\n | ^" diff --git a/tests/expectations/parser/parser/unreachable/postfix_pass.leo.out b/tests/expectations/parser/parser/unreachable/postfix_pass.leo.out deleted file mode 100644 index f274e7c5f3..0000000000 --- a/tests/expectations/parser/parser/unreachable/postfix_pass.leo.out +++ /dev/null @@ -1,598 +0,0 @@ ---- -namespace: ParseStatement -expectation: Pass -outputs: - - Expression: - expression: - Value: - String: - - [] - - span: - line_start: 0 - line_stop: 0 - col_start: 0 - col_stop: 0 - path: "" - content: "" - span: - line_start: 0 - line_stop: 0 - col_start: 0 - col_stop: 0 - path: "" - content: "" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aimport;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aimport;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aimport\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":20,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aimport;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 20 - path: "" - content: "let x: u8 = aimport;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a_;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a_;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"a_\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":15,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a_;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: "let x: u8 = a_;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aas;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aas;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aas\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aas;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "let x: u8 = aas;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aconsole;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aconsole;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aconsole\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":21,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aconsole;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 21 - path: "" - content: "let x: u8 = aconsole;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aconst;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aconst;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aconst\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aconst;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "let x: u8 = aconst;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = alet;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = alet;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"alet\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = alet;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = alet;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = afor;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = afor;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"afor\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = afor;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = afor;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aif;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aif;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aif\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aif;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "let x: u8 = aif;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aelse;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aelse;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aelse\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aelse;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = aelse;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai8;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = ai8;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"ai8\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai8;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "let x: u8 = ai8;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai16;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = ai16;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"ai16\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai16;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = ai16;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai32;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = ai32;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"ai32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai32;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = ai32;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai64;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = ai64;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"ai64\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai64;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = ai64;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai128;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = ai128;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"ai128\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = ai128;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = ai128;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au8;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = au8;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"au8\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au8;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 16 - path: "" - content: "let x: u8 = au8;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au16;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = au16;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"au16\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au16;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = au16;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au32;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = au32;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"au32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au32;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = au32;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au64;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = au64;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"au64\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au64;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 17 - path: "" - content: "let x: u8 = au64;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au128;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = au128;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"au128\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = au128;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = au128;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = areturn;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = areturn;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"areturn\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":20,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = areturn;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 20 - path: "" - content: "let x: u8 = areturn;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aself;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aself;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aself\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aself;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = aself;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aSelf;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = aSelf;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"aSelf\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = aSelf;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = aSelf;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = atrue;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = atrue;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"atrue\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":18,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = atrue;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 18 - path: "" - content: "let x: u8 = atrue;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = afalse;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = afalse;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"afalse\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":19,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = afalse;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 19 - path: "" - content: "let x: u8 = afalse;" - - Definition: - declaration_type: Let - variable_names: - - mutable: true - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a0;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 5 - col_stop: 6 - path: "" - content: "let x: u8 = a0;" - type_: - IntegerType: U8 - value: - Identifier: "{\"name\":\"a0\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":15,\\\"path\\\":\\\"\\\",\\\"content\\\":\\\"let x: u8 = a0;\\\"}\"}" - span: - line_start: 1 - line_stop: 1 - col_start: 1 - col_stop: 15 - path: "" - content: "let x: u8 = a0;"