remove full path from span outputs

This commit is contained in:
Protryon 2021-04-06 06:57:46 -07:00
parent 899b8b3efd
commit aa4c97c9fd
84 changed files with 2964 additions and 2948 deletions

View File

@ -426,13 +426,29 @@ pub fn parser_tests() {
let mut expectation_path = path.clone(); let mut expectation_path = path.clone();
expectation_path += ".out"; expectation_path += ".out";
let expectations: Option<TestExpectation> = if std::path::Path::new(&expectation_path).exists() { let expectations: Option<TestExpectation> = if std::path::Path::new(&expectation_path).exists() {
let raw = std::fs::read_to_string(&expectation_path).expect("failed to read expectations file"); if std::env::var("CLEAR_LEO_TEST_EXPECTATIONS")
Some(serde_yaml::from_str(&raw).expect("invalid yaml in expectations file")) .unwrap_or_default()
.trim()
.len()
> 0
{
None
} else {
let raw = std::fs::read_to_string(&expectation_path).expect("failed to read expectations file");
Some(serde_yaml::from_str(&raw).expect("invalid yaml in expectations file"))
}
} else { } else {
None None
}; };
let mut errors = vec![]; let mut errors = vec![];
let new_outputs = run_test(&config, &path, &content, expectations.as_ref(), &mut errors); let raw_path = Path::new(&path);
let new_outputs = run_test(
&config,
raw_path.file_name().unwrap_or_default().to_str().unwrap_or_default(),
&content,
expectations.as_ref(),
&mut errors,
);
if errors.is_empty() { if errors.is_empty() {
if expectations.is_none() { if expectations.is_none() {
outputs.push((expectation_path, TestExpectation { outputs.push((expectation_path, TestExpectation {

View File

@ -6,12 +6,12 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"big_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"big_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: members:
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo\\\",\\\"content\\\":\\\" function x() -> Self {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"big_self.leo\\\",\\\"content\\\":\\\" function x() -> Self {\\\"}\"}"
input: [] input: []
output: SelfType output: SelfType
block: block:
@ -19,34 +19,34 @@ outputs:
- Return: - Return:
expression: expression:
CircuitInit: CircuitInit:
name: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":16,\\\"col_stop\\\":20,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo\\\",\\\"content\\\":\\\" return Self {};\\\"}\"}" name: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":16,\\\"col_stop\\\":20,\\\"path\\\":\\\"big_self.leo\\\",\\\"content\\\":\\\" return Self {};\\\"}\"}"
members: [] members: []
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 16 col_start: 16
col_stop: 23 col_stop: 23
path: /home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo path: big_self.leo
content: " return Self {};" content: " return Self {};"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 9 col_start: 9
col_stop: 23 col_stop: 23
path: /home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo path: big_self.leo
content: " return Self {};" content: " return Self {};"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 26 col_start: 26
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo path: big_self.leo
content: " function x() -> Self {\n...\n }" content: " function x() -> Self {\n...\n }"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/big_self.leo path: big_self.leo
content: " function x() -> Self {\n...\n }" content: " function x() -> Self {\n...\n }"
functions: {} functions: {}

View File

@ -6,7 +6,7 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/empty.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"empty.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/empty.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"empty.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: [] members: []
functions: {} functions: {}

View File

@ -6,18 +6,18 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"field_and_functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"field_and_functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: members:
- CircuitVariable: - CircuitVariable:
- "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo\\\",\\\"content\\\":\\\" x: u32,\\\"}\"}" - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"field_and_functions.leo\\\",\\\"content\\\":\\\" x: u32,\\\"}\"}"
- IntegerType: U32 - IntegerType: U32
- CircuitVariable: - CircuitVariable:
- "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo\\\",\\\"content\\\":\\\" y: u32,\\\"}\"}" - "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"field_and_functions.leo\\\",\\\"content\\\":\\\" y: u32,\\\"}\"}"
- IntegerType: U32 - IntegerType: U32
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo\\\",\\\"content\\\":\\\" function x() {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"field_and_functions.leo\\\",\\\"content\\\":\\\" function x() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -31,32 +31,32 @@ outputs:
line_stop: 7 line_stop: 7
col_start: 16 col_start: 16
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 7 line_start: 7
line_stop: 7 line_stop: 7
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 6 line_start: 6
line_stop: 8 line_stop: 8
col_start: 18 col_start: 18
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " function x() {\n...\n }" content: " function x() {\n...\n }"
span: span:
line_start: 6 line_start: 6
line_stop: 8 line_stop: 8
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " function x() {\n...\n }" content: " function x() {\n...\n }"
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo\\\",\\\"content\\\":\\\" function y() {\\\"}\"}" identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"field_and_functions.leo\\\",\\\"content\\\":\\\" function y() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -70,27 +70,27 @@ outputs:
line_stop: 10 line_stop: 10
col_start: 16 col_start: 16
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 10 line_start: 10
line_stop: 10 line_stop: 10
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 9 line_start: 9
line_stop: 11 line_stop: 11
col_start: 18 col_start: 18
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " function y() {\n...\n }" content: " function y() {\n...\n }"
span: span:
line_start: 9 line_start: 9
line_stop: 11 line_stop: 11
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/field_and_functions.leo path: field_and_functions.leo
content: " function y() {\n...\n }" content: " function y() {\n...\n }"
functions: {} functions: {}

View File

@ -6,13 +6,13 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/fields.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"fields.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/fields.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"fields.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: members:
- CircuitVariable: - CircuitVariable:
- "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/fields.leo\\\",\\\"content\\\":\\\" x: u32,\\\"}\"}" - "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"fields.leo\\\",\\\"content\\\":\\\" x: u32,\\\"}\"}"
- IntegerType: U32 - IntegerType: U32
- CircuitVariable: - CircuitVariable:
- "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/fields.leo\\\",\\\"content\\\":\\\" y: u32,\\\"}\"}" - "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"fields.leo\\\",\\\"content\\\":\\\" y: u32,\\\"}\"}"
- IntegerType: U32 - IntegerType: U32
functions: {} functions: {}

View File

@ -6,12 +6,12 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"functions.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: members:
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo\\\",\\\"content\\\":\\\" function x() {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"functions.leo\\\",\\\"content\\\":\\\" function x() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -25,32 +25,32 @@ outputs:
line_stop: 5 line_stop: 5
col_start: 16 col_start: 16
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 18 col_start: 18
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " function x() {\n...\n }" content: " function x() {\n...\n }"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " function x() {\n...\n }" content: " function x() {\n...\n }"
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo\\\",\\\"content\\\":\\\" function y() {\\\"}\"}" identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"functions.leo\\\",\\\"content\\\":\\\" function y() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -64,27 +64,27 @@ outputs:
line_stop: 8 line_stop: 8
col_start: 16 col_start: 16
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 8 line_start: 8
line_stop: 8 line_stop: 8
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " return ();" content: " return ();"
span: span:
line_start: 7 line_start: 7
line_stop: 9 line_stop: 9
col_start: 18 col_start: 18
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " function y() {\n...\n }" content: " function y() {\n...\n }"
span: span:
line_start: 7 line_start: 7
line_stop: 9 line_stop: 9
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/functions.leo path: functions.leo
content: " function y() {\n...\n }" content: " function y() {\n...\n }"
functions: {} functions: {}

View File

@ -6,14 +6,14 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"mut_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"mut_self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: members:
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo\\\",\\\"content\\\":\\\" function x(mut self) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"mut_self.leo\\\",\\\"content\\\":\\\" function x(mut self) {\\\"}\"}"
input: input:
- MutSelfKeyword: "{\"name\":\"mut self\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":16,\\\"col_stop\\\":24,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo\\\",\\\"content\\\":\\\" function x(mut self) {\\\"}\"}" - MutSelfKeyword: "{\"name\":\"mut self\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":16,\\\"col_stop\\\":24,\\\"path\\\":\\\"mut_self.leo\\\",\\\"content\\\":\\\" function x(mut self) {\\\"}\"}"
output: ~ output: ~
block: block:
statements: statements:
@ -26,27 +26,27 @@ outputs:
line_stop: 5 line_stop: 5
col_start: 16 col_start: 16
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo path: mut_self.leo
content: " return ();" content: " return ();"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo path: mut_self.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 26 col_start: 26
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo path: mut_self.leo
content: " function x(mut self) {\n...\n }" content: " function x(mut self) {\n...\n }"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/mut_self.leo path: mut_self.leo
content: " function x(mut self) {\n...\n }" content: " function x(mut self) {\n...\n }"
functions: {} functions: {}

View File

@ -6,14 +6,14 @@ outputs:
expected_input: [] expected_input: []
imports: [] imports: []
circuits: circuits:
"{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}": "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}":
circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}" circuit_name: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"self.leo\\\",\\\"content\\\":\\\"circuit X {\\\"}\"}"
members: members:
- CircuitFunction: - CircuitFunction:
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/self.leo\\\",\\\"content\\\":\\\" function x(self) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"self.leo\\\",\\\"content\\\":\\\" function x(self) {\\\"}\"}"
input: input:
- SelfKeyword: "{\"name\":\"self\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":16,\\\"col_stop\\\":20,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/circuits/self.leo\\\",\\\"content\\\":\\\" function x(self) {\\\"}\"}" - SelfKeyword: "{\"name\":\"self\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":16,\\\"col_stop\\\":20,\\\"path\\\":\\\"self.leo\\\",\\\"content\\\":\\\" function x(self) {\\\"}\"}"
output: ~ output: ~
block: block:
statements: statements:
@ -26,27 +26,27 @@ outputs:
line_stop: 5 line_stop: 5
col_start: 16 col_start: 16
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/self.leo path: self.leo
content: " return ();" content: " return ();"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/circuits/self.leo path: self.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 22 col_start: 22
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/self.leo path: self.leo
content: " function x(self) {\n...\n }" content: " function x(self) {\n...\n }"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/circuits/self.leo path: self.leo
content: " function x(self) {\n...\n }" content: " function x(self) {\n...\n }"
functions: {} functions: {}

View File

@ -4,7 +4,7 @@ expectation: Pass
outputs: outputs:
- ArrayAccess: - ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[0]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[0]\\\"}\"}"
index: index:
Value: Value:
Implicit: Implicit:
@ -13,18 +13,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0]" content: "x[0]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0]" content: "x[0]"
- ArrayAccess: - ArrayAccess:
array: array:
Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"X[1]\\\"}\"}" Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"X[1]\\\"}\"}"
index: index:
Value: Value:
Implicit: Implicit:
@ -33,18 +33,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "X[1]" content: "X[1]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "X[1]" content: "X[1]"
- ArrayAccess: - ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[0u8]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[0u8]\\\"}\"}"
index: index:
Value: Value:
Integer: Integer:
@ -54,20 +54,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0u8]" content: "x[0u8]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0u8]" content: "x[0u8]"
- ArrayAccess: - ArrayAccess:
array: array:
ArrayAccess: ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[1u8][2u8]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[1u8][2u8]\\\"}\"}"
index: index:
Value: Value:
Integer: Integer:
@ -77,14 +77,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[1u8][2u8]" content: "x[1u8][2u8]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[1u8][2u8]" content: "x[1u8][2u8]"
index: index:
Value: Value:
@ -95,14 +95,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[1u8][2u8]" content: "x[1u8][2u8]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[1u8][2u8]" content: "x[1u8][2u8]"
- ArrayAccess: - ArrayAccess:
array: array:
@ -110,39 +110,39 @@ outputs:
array: array:
ArrayAccess: ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}"
index: index:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[x][y][z]" content: "x[x][y][z]"
index: index:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[x][y][z]" content: "x[x][y][z]"
index: index:
Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}" Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x][y][z]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[x][y][z]" content: "x[x][y][z]"
- Call: - Call:
function: function:
ArrayAccess: ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[0]()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[0]()\\\"}\"}"
index: index:
Value: Value:
Implicit: Implicit:
@ -151,14 +151,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0]()" content: "x[0]()"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0]()" content: "x[0]()"
arguments: [] arguments: []
span: span:
@ -166,20 +166,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[0]()" content: "x[0]()"
- ArrayAccess: - ArrayAccess:
array: array:
Call: Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x()[0]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x()[0]\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x()[0]" content: "x()[0]"
index: index:
Value: Value:
@ -189,14 +189,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x()[0]" content: "x()[0]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x()[0]" content: "x()[0]"
- Call: - Call:
function: function:
@ -204,32 +204,32 @@ outputs:
circuit: circuit:
Call: Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}"
arguments: arguments:
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x(y)::y(x)" content: "x(y)::y(x)"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x(y)::y(x)" content: "x(y)::y(x)"
arguments: arguments:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x(y)::y(x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x(y)::y(x)" content: "x(y)::y(x)"
- ArrayAccess: - ArrayAccess:
array: array:
@ -237,15 +237,15 @@ outputs:
tuple: tuple:
ArrayAccess: ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x].0[x]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x].0[x]\\\"}\"}"
index: index:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x].0[x]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x].0[x]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[x].0[x]" content: "x[x].0[x]"
index: index:
value: "0" value: "0"
@ -254,14 +254,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[x].0[x]" content: "x[x].0[x]"
index: index:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo\\\",\\\"content\\\":\\\"x[x].0[x]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"array_access.leo\\\",\\\"content\\\":\\\"x[x].0[x]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_access.leo path: array_access.leo
content: "x[x].0[x]" content: "x[x].0[x]"

View File

@ -4,7 +4,7 @@ expectation: Pass
outputs: outputs:
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..]\\\"}\"}"
left: ~ left: ~
right: ~ right: ~
span: span:
@ -12,11 +12,11 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..]" content: "x[..]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[1..]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[1..]\\\"}\"}"
left: left:
Value: Value:
Implicit: Implicit:
@ -25,7 +25,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[1..]" content: "x[1..]"
right: ~ right: ~
span: span:
@ -33,11 +33,11 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[1..]" content: "x[1..]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..1]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..1]\\\"}\"}"
left: ~ left: ~
right: right:
Value: Value:
@ -47,18 +47,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..1]" content: "x[..1]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..1]" content: "x[..1]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[1..1]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[1..1]\\\"}\"}"
left: left:
Value: Value:
Implicit: Implicit:
@ -67,7 +67,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[1..1]" content: "x[1..1]"
right: right:
Value: Value:
@ -77,18 +77,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[1..1]" content: "x[1..1]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[1..1]" content: "x[1..1]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[0..100]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[0..100]\\\"}\"}"
left: left:
Value: Value:
Implicit: Implicit:
@ -97,7 +97,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0..100]" content: "x[0..100]"
right: right:
Value: Value:
@ -107,20 +107,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0..100]" content: "x[0..100]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0..100]" content: "x[0..100]"
- ArrayAccess: - ArrayAccess:
array: array:
ArrayAccess: ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[323452345.2345234523453453][323452345.2345234523453453]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[323452345.2345234523453453][323452345.2345234523453453]\\\"}\"}"
index: index:
TupleAccess: TupleAccess:
tuple: tuple:
@ -131,7 +131,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[323452345.2345234523453453][323452345.2345234523453453]" content: "x[323452345.2345234523453453][323452345.2345234523453453]"
index: index:
value: "2345234523453453" value: "2345234523453453"
@ -140,14 +140,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 29 col_stop: 29
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[323452345.2345234523453453][323452345.2345234523453453]" content: "x[323452345.2345234523453453][323452345.2345234523453453]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 30 col_stop: 30
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[323452345.2345234523453453][323452345.2345234523453453]" content: "x[323452345.2345234523453453][323452345.2345234523453453]"
index: index:
TupleAccess: TupleAccess:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 31 col_start: 31
col_stop: 40 col_stop: 40
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[323452345.2345234523453453][323452345.2345234523453453]" content: "x[323452345.2345234523453453][323452345.2345234523453453]"
index: index:
value: "2345234523453453" value: "2345234523453453"
@ -168,18 +168,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 31 col_start: 31
col_stop: 57 col_stop: 57
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[323452345.2345234523453453][323452345.2345234523453453]" content: "x[323452345.2345234523453453][323452345.2345234523453453]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 58 col_stop: 58
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[323452345.2345234523453453][323452345.2345234523453453]" content: "x[323452345.2345234523453453][323452345.2345234523453453]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[0u8..1u8]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[0u8..1u8]\\\"}\"}"
left: left:
Value: Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0u8..1u8]" content: "x[0u8..1u8]"
right: right:
Value: Value:
@ -200,18 +200,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0u8..1u8]" content: "x[0u8..1u8]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0u8..1u8]" content: "x[0u8..1u8]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[0u8..]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[0u8..]\\\"}\"}"
left: left:
Value: Value:
Integer: Integer:
@ -221,7 +221,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0u8..]" content: "x[0u8..]"
right: ~ right: ~
span: span:
@ -229,11 +229,11 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[0u8..]" content: "x[0u8..]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..0u8]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..0u8]\\\"}\"}"
left: ~ left: ~
right: right:
Value: Value:
@ -244,18 +244,18 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..0u8]" content: "x[..0u8]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..0u8]" content: "x[..0u8]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..]\\\"}\"}"
left: ~ left: ~
right: ~ right: ~
span: span:
@ -263,22 +263,22 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..]" content: "x[..]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..]\\\"}\"}"
left: left:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..]\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..]\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y..]" content: "x[x.y..]"
right: ~ right: ~
span: span:
@ -286,116 +286,116 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y..]" content: "x[x.y..]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..y.x]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..y.x]\\\"}\"}"
left: ~ left: ~
right: right:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..y.x]\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..y.x]\\\"}\"}"
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[..y.x]\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[..y.x]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..y.x]" content: "x[..y.x]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[..y.x]" content: "x[..y.x]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}"
left: left:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y..y.x]" content: "x[x.y..y.x]"
right: right:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}"
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y..y.x]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y..y.x]" content: "x[x.y..y.x]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y..y.x]" content: "x[x.y..y.x]"
- ArrayRangeAccess: - ArrayRangeAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
left: left:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y.x..y.x.y]" content: "x[x.y.x..y.x.y]"
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y.x..y.x.y]" content: "x[x.y.x..y.x.y]"
right: right:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y.x..y.x.y]" content: "x[x.y.x..y.x.y]"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"array_range_access.leo\\\",\\\"content\\\":\\\"x[x.y.x..y.x.y]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y.x..y.x.y]" content: "x[x.y.x..y.x.y]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/array_range_access.leo path: array_range_access.leo
content: "x[x.y.x..y.x.y]" content: "x[x.y.x..y.x.y]"

View File

@ -4,77 +4,77 @@ expectation: Pass
outputs: outputs:
- Call: - Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x()\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: x() content: x()
- Call: - Call:
function: function:
Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"X()\\\"}\"}" Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"X()\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: X() content: X()
- Call: - Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(y)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(y)\\\"}\"}"
arguments: arguments:
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(y)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(y)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: x(y) content: x(y)
- Call: - Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}"
arguments: arguments:
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}"
- Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}" - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(y, z)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x(y, z)" content: "x(y, z)"
- Call: - Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}"
arguments: arguments:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}"
- Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}" - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x(x, y, z)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x(x, y, z)" content: "x(x, y, z)"
- Call: - Call:
function: function:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x::y()" content: "x::y()"
arguments: [] arguments: []
span: span:
@ -82,35 +82,35 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x::y()" content: "x::y()"
- Call: - Call:
function: function:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x::y(x)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x::y(x)\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x::y(x)\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x::y(x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x::y(x)" content: "x::y(x)"
arguments: arguments:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x::y(x)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x::y(x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x::y(x)" content: "x::y(x)"
- Call: - Call:
function: function:
TupleAccess: TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x.0(x)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x.0(x)\\\"}\"}"
index: index:
value: "0" value: "0"
span: span:
@ -118,22 +118,22 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: x.0(x) content: x.0(x)
arguments: arguments:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x.0(x)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x.0(x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: x.0(x) content: x.0(x)
- Call: - Call:
function: function:
ArrayAccess: ArrayAccess:
array: array:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x[0](x)\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x[0](x)\\\"}\"}"
index: index:
Value: Value:
Implicit: Implicit:
@ -142,21 +142,21 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x[0](x)" content: "x[0](x)"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x[0](x)" content: "x[0](x)"
arguments: arguments:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo\\\",\\\"content\\\":\\\"x[0](x)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"call.leo\\\",\\\"content\\\":\\\"x[0](x)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/call.leo path: call.leo
content: "x[0](x)" content: "x[0](x)"

View File

@ -4,59 +4,59 @@ expectation: Pass
outputs: outputs:
- CircuitMemberAccess: - CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y content: x.y
- CircuitMemberAccess: - CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"X.Y\\\"}\"}" Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"X.Y\\\"}\"}"
name: "{\"name\":\"Y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"X.Y\\\"}\"}" name: "{\"name\":\"Y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"X.Y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: X.Y content: X.Y
- CircuitMemberAccess: - CircuitMemberAccess:
circuit: circuit:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y.z\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y.z\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y.z\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y.z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y.z content: x.y.z
name: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y.z\\\"}\"}" name: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y.z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y.z content: x.y.z
- Call: - Call:
function: function:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y()\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y()\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y()\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y() content: x.y()
arguments: [] arguments: []
span: span:
@ -64,20 +64,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y() content: x.y()
- TupleAccess: - TupleAccess:
tuple: tuple:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y.0\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y.0\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y.0\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y.0\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y.0 content: x.y.0
index: index:
value: "0" value: "0"
@ -86,20 +86,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: x.y.0 content: x.y.0
- ArrayAccess: - ArrayAccess:
array: array:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y[1]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y[1]\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo\\\",\\\"content\\\":\\\"x.y[1]\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit.leo\\\",\\\"content\\\":\\\"x.y[1]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: "x.y[1]" content: "x.y[1]"
index: index:
Value: Value:
@ -109,12 +109,12 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: "x.y[1]" content: "x.y[1]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit.leo path: circuit.leo
content: "x.y[1]" content: "x.y[1]"

View File

@ -4,59 +4,59 @@ expectation: Pass
outputs: outputs:
- CircuitStaticFunctionAccess: - CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y" content: "x::y"
- CircuitStaticFunctionAccess: - CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"X::Y\\\"}\"}" Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"X::Y\\\"}\"}"
name: "{\"name\":\"Y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"X::Y\\\"}\"}" name: "{\"name\":\"Y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"X::Y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "X::Y" content: "X::Y"
- CircuitStaticFunctionAccess: - CircuitStaticFunctionAccess:
circuit: circuit:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y::z\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y::z\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y::z\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y::z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y::z" content: "x::y::z"
name: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y::z\\\"}\"}" name: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y::z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y::z" content: "x::y::z"
- Call: - Call:
function: function:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y()\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y()" content: "x::y()"
arguments: [] arguments: []
span: span:
@ -64,20 +64,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y()" content: "x::y()"
- TupleAccess: - TupleAccess:
tuple: tuple:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y.0\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y.0\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y.0\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y.0\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y.0" content: "x::y.0"
index: index:
value: "0" value: "0"
@ -86,20 +86,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y.0" content: "x::y.0"
- ArrayAccess: - ArrayAccess:
array: array:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y[1]\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y[1]\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo\\\",\\\"content\\\":\\\"x::y[1]\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_static.leo\\\",\\\"content\\\":\\\"x::y[1]\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y[1]" content: "x::y[1]"
index: index:
Value: Value:
@ -109,12 +109,12 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y[1]" content: "x::y[1]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/circuit_static.leo path: circuit_static.leo
content: "x::y[1]" content: "x::y[1]"

View File

@ -4,7 +4,7 @@ expectation: Pass
outputs: outputs:
- TupleAccess: - TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo\\\",\\\"content\\\":\\\"x.0\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"x.0\\\"}\"}"
index: index:
value: "0" value: "0"
span: span:
@ -12,11 +12,11 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.0 content: x.0
- TupleAccess: - TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo\\\",\\\"content\\\":\\\"x.1\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"x.1\\\"}\"}"
index: index:
value: "1" value: "1"
span: span:
@ -24,11 +24,11 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.1 content: x.1
- TupleAccess: - TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo\\\",\\\"content\\\":\\\"x.2\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"x.2\\\"}\"}"
index: index:
value: "2" value: "2"
span: span:
@ -36,13 +36,13 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.2 content: x.2
- TupleAccess: - TupleAccess:
tuple: tuple:
TupleAccess: TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo\\\",\\\"content\\\":\\\"x.0.0\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"x.0.0\\\"}\"}"
index: index:
value: "0" value: "0"
span: span:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.0.0 content: x.0.0
index: index:
value: "0" value: "0"
@ -59,13 +59,13 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.0.0 content: x.0.0
- TupleAccess: - TupleAccess:
tuple: tuple:
TupleAccess: TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo\\\",\\\"content\\\":\\\"x.1.1\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"x.1.1\\\"}\"}"
index: index:
value: "1" value: "1"
span: span:
@ -73,7 +73,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.1.1 content: x.1.1
index: index:
value: "1" value: "1"
@ -82,13 +82,13 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.1.1 content: x.1.1
- TupleAccess: - TupleAccess:
tuple: tuple:
TupleAccess: TupleAccess:
tuple: tuple:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo\\\",\\\"content\\\":\\\"x.2.2\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"x.2.2\\\"}\"}"
index: index:
value: "2" value: "2"
span: span:
@ -96,7 +96,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.2.2 content: x.2.2
index: index:
value: "2" value: "2"
@ -105,5 +105,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/access/tuple.leo path: tuple.leo
content: x.2.2 content: x.2.2

View File

@ -12,7 +12,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0u8; 1]" content: "[0u8; 1]"
dimensions: dimensions:
- value: "1" - value: "1"
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0u8; 1]" content: "[0u8; 1]"
- ArrayInit: - ArrayInit:
element: element:
@ -32,7 +32,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; 1]" content: "[0; 1]"
dimensions: dimensions:
- value: "1" - value: "1"
@ -41,7 +41,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; 1]" content: "[0; 1]"
- ArrayInit: - ArrayInit:
element: element:
@ -52,7 +52,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; (1)]" content: "[0; (1)]"
dimensions: dimensions:
- value: "1" - value: "1"
@ -61,7 +61,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; (1)]" content: "[0; (1)]"
- ArrayInit: - ArrayInit:
element: element:
@ -72,7 +72,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; (1, 2)]" content: "[0; (1, 2)]"
dimensions: dimensions:
- value: "1" - value: "1"
@ -82,7 +82,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; (1, 2)]" content: "[0; (1, 2)]"
- ArrayInit: - ArrayInit:
element: element:
@ -93,7 +93,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; (1, 2, 3)]" content: "[0; (1, 2, 3)]"
dimensions: dimensions:
- value: "1" - value: "1"
@ -104,7 +104,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[0; (1, 2, 3)]" content: "[0; (1, 2, 3)]"
- ArrayInit: - ArrayInit:
element: element:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[[[0; 3]; 2]; 1]" content: "[[[0; 3]; 2]; 1]"
dimensions: dimensions:
- value: "3" - value: "3"
@ -128,7 +128,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[[[0; 3]; 2]; 1]" content: "[[[0; 3]; 2]; 1]"
dimensions: dimensions:
- value: "2" - value: "2"
@ -137,7 +137,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[[[0; 3]; 2]; 1]" content: "[[[0; 3]; 2]; 1]"
dimensions: dimensions:
- value: "1" - value: "1"
@ -146,5 +146,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_init.leo path: array_init.leo
content: "[[[0; 3]; 2]; 1]" content: "[[[0; 3]; 2]; 1]"

View File

@ -13,7 +13,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0u8, 1, 2, 3]" content: "[0u8, 1, 2, 3]"
- Expression: - Expression:
Value: Value:
@ -23,7 +23,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0u8, 1, 2, 3]" content: "[0u8, 1, 2, 3]"
- Expression: - Expression:
Value: Value:
@ -33,7 +33,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0u8, 1, 2, 3]" content: "[0u8, 1, 2, 3]"
- Expression: - Expression:
Value: Value:
@ -43,14 +43,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0u8, 1, 2, 3]" content: "[0u8, 1, 2, 3]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0u8, 1, 2, 3]" content: "[0u8, 1, 2, 3]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -62,14 +62,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[1]" content: "[1]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[1]" content: "[1]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -82,14 +82,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[1u8]" content: "[1u8]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[1u8]" content: "[1u8]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -102,14 +102,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[1u8,]" content: "[1u8,]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[1u8,]" content: "[1u8,]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -121,7 +121,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0, 1,]" content: "[0, 1,]"
- Expression: - Expression:
Value: Value:
@ -131,14 +131,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0, 1,]" content: "[0, 1,]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0, 1,]" content: "[0, 1,]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0,1,]" content: "[0,1,]"
- Expression: - Expression:
Value: Value:
@ -160,14 +160,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0,1,]" content: "[0,1,]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[0,1,]" content: "[0,1,]"
- ArrayInline: - ArrayInline:
elements: [] elements: []
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[]" content: "[]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -191,7 +191,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
- Expression: - Expression:
Value: Value:
@ -201,7 +201,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
- Expression: - Expression:
Value: Value:
@ -211,14 +211,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
- Expression: - Expression:
ArrayInline: ArrayInline:
@ -231,7 +231,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
- Expression: - Expression:
Value: Value:
@ -241,7 +241,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
- Expression: - Expression:
Value: Value:
@ -251,21 +251,21 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[1,2,3],[1,2,3]]" content: "[[1,2,3],[1,2,3]]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -277,14 +277,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[]]" content: "[[]]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[]]" content: "[[]]"
- ArrayInline: - ArrayInline:
elements: elements:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[], []]" content: "[[], []]"
- Expression: - Expression:
ArrayInline: ArrayInline:
@ -306,12 +306,12 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[], []]" content: "[[], []]"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/array_inline.leo path: array_inline.leo
content: "[[], []]" content: "[[], []]"

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 1 content: 1 + 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 1 content: 1 + 1
op: Add op: Add
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 1 content: 1 + 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 2+3 content: 2+3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 2+3 content: 2+3
op: Add op: Add
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 2+3 content: 2+3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
op: Add op: Add
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
op: Add op: Add
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
op: Mul op: Mul
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
op: Mul op: Mul
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
op: Add op: Add
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
op: Add op: Add
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
op: Sub op: Sub
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Mul op: Mul
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Mul op: Mul
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Add op: Add
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 21 col_start: 21
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Mul op: Mul
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Sub op: Sub
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/add.leo path: add.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true && false content: true && false
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true && false content: true && false
op: And op: And
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true && false content: true && false
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: false&&true content: false&&true
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: false&&true content: false&&true
op: And op: And
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: false&&true content: false&&true
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true&&false&&true content: true&&false&&true
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true&&false&&true content: true&&false&&true
op: And op: And
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true&&false&&true content: true&&false&&true
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true&&false&&true content: true&&false&&true
op: And op: And
span: span:
@ -107,5 +107,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/and.leo path: and.leo
content: true&&false&&true content: true&&false&&true

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 1 content: 1 / 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 1 content: 1 / 1
op: Div op: Div
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 1 content: 1 / 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 2/3 content: 2/3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 2/3 content: 2/3
op: Div op: Div
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 2/3 content: 2/3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 2 / 3 content: 1 / 2 / 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 2 / 3 content: 1 / 2 / 3
op: Div op: Div
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 2 / 3 content: 1 / 2 / 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 2 / 3 content: 1 / 2 / 3
op: Div op: Div
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 / 2 / 3 content: 1 / 2 / 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4
op: Pow op: Pow
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4
op: Pow op: Pow
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4
op: Div op: Div
span: span:
@ -176,5 +176,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/div.leo path: div.leo
content: 1 ** 2 / 3 ** 4 content: 1 ** 2 / 3 ** 4

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 1 content: 1 == 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 1 content: 1 == 1
op: Eq op: Eq
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 1 content: 1 == 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 2==3 content: 2==3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 2==3 content: 2==3
op: Eq op: Eq
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 2==3 content: 2==3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
op: Eq op: Eq
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
op: Eq op: Eq
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
op: Lt op: Lt
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
op: Lt op: Lt
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
op: Eq op: Eq
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 content: 1 < 2 == 3 < 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
op: Eq op: Eq
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
op: Eq op: Eq
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 == 2 == 3 content: 1 == 2 == 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
op: Lt op: Lt
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
op: Lt op: Lt
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
op: Eq op: Eq
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 23 col_start: 23
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
op: Lt op: Lt
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6
op: Eq op: Eq
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/eq.leo path: eq.leo
content: 1 < 2 == 3 < 4 == 5 < 6 content: 1 < 2 == 3 < 4 == 5 < 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 1 content: 1 ** 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 1 content: 1 ** 1
op: Pow op: Pow
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 1 content: 1 ** 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 2**3 content: 2**3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 2**3 content: 2**3
op: Pow op: Pow
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 2**3 content: 2**3
- Binary: - Binary:
left: left:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 2 ** 3 content: 1 ** 2 ** 3
right: right:
Binary: Binary:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 2 ** 3 content: 1 ** 2 ** 3
right: right:
Value: Value:
@ -91,7 +91,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 2 ** 3 content: 1 ** 2 ** 3
op: Pow op: Pow
span: span:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 2 ** 3 content: 1 ** 2 ** 3
op: Pow op: Pow
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 ** 2 ** 3 content: 1 ** 2 ** 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 content: 1 as i8 ** 3 as i8
target_type: target_type:
IntegerType: I8 IntegerType: I8
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 content: 1 as i8 ** 3 as i8
right: right:
Cast: Cast:
@ -141,7 +141,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 content: 1 as i8 ** 3 as i8
target_type: target_type:
IntegerType: I8 IntegerType: I8
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 12 col_start: 12
col_stop: 19 col_stop: 19
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 content: 1 as i8 ** 3 as i8
op: Pow op: Pow
span: span:
@ -158,7 +158,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 19 col_stop: 19
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 content: 1 as i8 ** 3 as i8
- Binary: - Binary:
left: left:
@ -171,7 +171,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
target_type: target_type:
IntegerType: I8 IntegerType: I8
@ -180,7 +180,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
right: right:
Binary: Binary:
@ -194,7 +194,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
target_type: target_type:
IntegerType: I8 IntegerType: I8
@ -203,7 +203,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 12 col_start: 12
col_stop: 19 col_stop: 19
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
right: right:
Cast: Cast:
@ -215,7 +215,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 23 col_start: 23
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
target_type: target_type:
IntegerType: I8 IntegerType: I8
@ -224,7 +224,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 23 col_start: 23
col_stop: 30 col_stop: 30
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
op: Pow op: Pow
span: span:
@ -232,7 +232,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 12 col_start: 12
col_stop: 30 col_stop: 30
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8
op: Pow op: Pow
span: span:
@ -240,5 +240,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 30 col_stop: 30
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/exp.leo path: exp.leo
content: 1 as i8 ** 3 as i8 ** 5 as i8 content: 1 as i8 ** 3 as i8 ** 5 as i8

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 1 content: 1 > 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 1 content: 1 > 1
op: Gt op: Gt
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 1 content: 1 > 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 2>3 content: 2>3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 2>3 content: 2>3
op: Gt op: Gt
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 2>3 content: 2>3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
op: Gt op: Gt
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
op: Gt op: Gt
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
op: Add op: Add
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
op: Add op: Add
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
op: Gt op: Gt
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 content: 1 + 2 > 3 + 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
op: Gt op: Gt
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
op: Gt op: Gt
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 > 2 > 3 content: 1 > 2 > 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
op: Add op: Add
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
op: Add op: Add
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
op: Gt op: Gt
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 21 col_start: 21
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
op: Add op: Add
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6
op: Gt op: Gt
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gt.leo path: gt.leo
content: 1 + 2 > 3 + 4 > 5 + 6 content: 1 + 2 > 3 + 4 > 5 + 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 1 content: 1 >= 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 1 content: 1 >= 1
op: Ge op: Ge
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 1 content: 1 >= 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 2 >= 3 content: 2 >= 3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 2 >= 3 content: 2 >= 3
op: Ge op: Ge
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 2 >= 3 content: 2 >= 3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
op: Ge op: Ge
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
op: Ge op: Ge
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
op: Add op: Add
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
op: Add op: Add
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
op: Ge op: Ge
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 content: 1 + 2 >= 3 + 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
op: Ge op: Ge
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
op: Ge op: Ge
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 >= 2 >= 3 content: 1 >= 2 >= 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
op: Add op: Add
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
op: Add op: Add
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
op: Ge op: Ge
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 23 col_start: 23
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
op: Add op: Add
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6
op: Ge op: Ge
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/gte.leo path: gte.leo
content: 1 + 2 >= 3 + 4 >= 5 + 6 content: 1 + 2 >= 3 + 4 >= 5 + 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 1 content: 1 < 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 1 content: 1 < 1
op: Lt op: Lt
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 1 content: 1 < 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 2<3 content: 2<3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 2<3 content: 2<3
op: Lt op: Lt
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 2<3 content: 2<3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
op: Lt op: Lt
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
op: Lt op: Lt
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
op: Add op: Add
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
op: Add op: Add
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
op: Lt op: Lt
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 content: 1 + 2 < 3 + 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
op: Lt op: Lt
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
op: Lt op: Lt
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 < 2 < 3 content: 1 < 2 < 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
op: Add op: Add
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
op: Add op: Add
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
op: Lt op: Lt
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 21 col_start: 21
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
op: Add op: Add
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6
op: Lt op: Lt
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lt.leo path: lt.leo
content: 1 + 2 < 3 + 4 < 5 + 6 content: 1 + 2 < 3 + 4 < 5 + 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 1 content: 1 <= 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 1 content: 1 <= 1
op: Le op: Le
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 1 content: 1 <= 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 2 <= 3 content: 2 <= 3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 2 <= 3 content: 2 <= 3
op: Le op: Le
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 2 <= 3 content: 2 <= 3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
op: Le op: Le
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
op: Le op: Le
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
op: Add op: Add
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
op: Add op: Add
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
op: Le op: Le
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 content: 1 + 2 <= 3 + 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
op: Le op: Le
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
op: Le op: Le
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 <= 2 <= 3 content: 1 <= 2 <= 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
op: Add op: Add
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
op: Add op: Add
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
op: Le op: Le
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 23 col_start: 23
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
op: Add op: Add
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6
op: Le op: Le
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/lte.leo path: lte.leo
content: 1 + 2 <= 3 + 4 <= 5 + 6 content: 1 + 2 <= 3 + 4 <= 5 + 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 1 content: 1 * 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 1 content: 1 * 1
op: Mul op: Mul
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 1 content: 1 * 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 2*3 content: 2*3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 2*3 content: 2*3
op: Mul op: Mul
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 2*3 content: 2*3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 2 * 3 content: 1 * 2 * 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 2 * 3 content: 1 * 2 * 3
op: Mul op: Mul
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 2 * 3 content: 1 * 2 * 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 2 * 3 content: 1 * 2 * 3
op: Mul op: Mul
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 * 2 * 3 content: 1 * 2 * 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
op: Pow op: Pow
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
op: Pow op: Pow
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
op: Mul op: Mul
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 content: 1 ** 2 * 3 ** 4
- Binary: - Binary:
left: left:
@ -191,7 +191,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
right: right:
Value: Value:
@ -201,7 +201,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
op: Pow op: Pow
span: span:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
right: right:
Binary: Binary:
@ -221,7 +221,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
right: right:
Value: Value:
@ -231,7 +231,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
op: Pow op: Pow
span: span:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
op: Mul op: Mul
span: span:
@ -247,7 +247,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
right: right:
Binary: Binary:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
right: right:
Value: Value:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 24 col_start: 24
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
op: Pow op: Pow
span: span:
@ -277,7 +277,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6
op: Div op: Div
span: span:
@ -285,5 +285,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/mul.leo path: mul.leo
content: 1 ** 2 * 3 ** 4 / 5 ** 6 content: 1 ** 2 * 3 ** 4 / 5 ** 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 1 content: 1 != 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 1 content: 1 != 1
op: Ne op: Ne
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 1 content: 1 != 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 2!=3 content: 2!=3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 2!=3 content: 2!=3
op: Ne op: Ne
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 2!=3 content: 2!=3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
op: Ne op: Ne
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
op: Ne op: Ne
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
op: Lt op: Lt
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
op: Lt op: Lt
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
op: Ne op: Ne
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 content: 1 < 2 != 3 < 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
op: Ne op: Ne
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 11 col_start: 11
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
op: Ne op: Ne
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 != 2 != 3 content: 1 != 2 != 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
op: Lt op: Lt
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 14 col_start: 14
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
op: Lt op: Lt
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
op: Ne op: Ne
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 23 col_start: 23
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
op: Lt op: Lt
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 19 col_start: 19
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6
op: Ne op: Ne
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 24 col_stop: 24
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/ne.leo path: ne.leo
content: 1 < 2 != 3 < 4 != 5 < 6 content: 1 < 2 != 3 < 4 != 5 < 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 1 content: 1 + 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 1 content: 1 + 1
op: Add op: Add
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 1 content: 1 + 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 2+3 content: 2+3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 2+3 content: 2+3
op: Add op: Add
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 2+3 content: 2+3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
op: Add op: Add
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
op: Add op: Add
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 + 3 content: 1 + 2 + 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
op: Mul op: Mul
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
op: Mul op: Mul
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
op: Add op: Add
span: span:
@ -176,7 +176,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 content: 1 * 2 + 3 * 4
- Binary: - Binary:
left: left:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
right: right:
Value: Value:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
op: Add op: Add
span: span:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
right: right:
Value: Value:
@ -217,7 +217,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
op: Sub op: Sub
span: span:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 + 2 - 3 content: 1 + 2 - 3
- Binary: - Binary:
left: left:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Value: Value:
@ -250,7 +250,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Mul op: Mul
span: span:
@ -258,7 +258,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Binary: Binary:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Value: Value:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Mul op: Mul
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Add op: Add
span: span:
@ -296,7 +296,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Binary: Binary:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
right: right:
Value: Value:
@ -318,7 +318,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 21 col_start: 21
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Mul op: Mul
span: span:
@ -326,7 +326,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 17 col_start: 17
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6
op: Sub op: Sub
span: span:
@ -334,5 +334,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/or.leo path: or.leo
content: 1 * 2 + 3 * 4 - 5 * 6 content: 1 * 2 + 3 * 4 - 5 * 6

View File

@ -11,7 +11,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 1 content: 1 - 1
right: right:
Value: Value:
@ -21,7 +21,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 1 content: 1 - 1
op: Sub op: Sub
span: span:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 1 content: 1 - 1
- Binary: - Binary:
left: left:
@ -40,7 +40,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 2-3 content: 2-3
right: right:
Value: Value:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 2-3 content: 2-3
op: Sub op: Sub
span: span:
@ -58,7 +58,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 2-3 content: 2-3
- Binary: - Binary:
left: left:
@ -71,7 +71,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 2 - 3 content: 1 - 2 - 3
right: right:
Value: Value:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 2 - 3 content: 1 - 2 - 3
op: Sub op: Sub
span: span:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 2 - 3 content: 1 - 2 - 3
right: right:
Value: Value:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 2 - 3 content: 1 - 2 - 3
op: Sub op: Sub
span: span:
@ -107,7 +107,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 - 2 - 3 content: 1 - 2 - 3
- Binary: - Binary:
left: left:
@ -120,7 +120,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4
right: right:
Value: Value:
@ -130,7 +130,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4
op: Mul op: Mul
span: span:
@ -138,7 +138,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4
right: right:
Binary: Binary:
@ -150,7 +150,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4
right: right:
Value: Value:
@ -160,7 +160,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4
op: Mul op: Mul
span: span:
@ -168,7 +168,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4
op: Sub op: Sub
span: span:
@ -176,5 +176,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/binary/sub.leo path: sub.leo
content: 1 * 2 - 3 * 4 content: 1 * 2 - 3 * 4

View File

@ -4,7 +4,7 @@ expectation: Pass
outputs: outputs:
- Cast: - Cast:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x as u8\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x as u8\\\"}\"}"
target_type: target_type:
IntegerType: U8 IntegerType: U8
span: span:
@ -12,23 +12,23 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x as u8 content: x as u8
- Cast: - Cast:
inner: inner:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"y as id\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"y as id\\\"}\"}"
target_type: target_type:
Circuit: "{\"name\":\"id\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"y as id\\\"}\"}" Circuit: "{\"name\":\"id\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":8,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"y as id\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: y as id content: y as id
- Cast: - Cast:
inner: inner:
Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"z as u32\\\"}\"}" Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"z as u32\\\"}\"}"
target_type: target_type:
IntegerType: U32 IntegerType: U32
span: span:
@ -36,11 +36,11 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: z as u32 content: z as u32
- Cast: - Cast:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x as i128\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x as i128\\\"}\"}"
target_type: target_type:
IntegerType: I128 IntegerType: I128
span: span:
@ -48,13 +48,13 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x as i128 content: x as i128
- Cast: - Cast:
inner: inner:
Cast: Cast:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x as u8 as u128\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x as u8 as u128\\\"}\"}"
target_type: target_type:
IntegerType: U8 IntegerType: U8
span: span:
@ -62,7 +62,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x as u8 as u128 content: x as u8 as u128
target_type: target_type:
IntegerType: U128 IntegerType: U128
@ -71,39 +71,39 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x as u8 as u128 content: x as u8 as u128
- Cast: - Cast:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x as field\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x as field\\\"}\"}"
target_type: Field target_type: Field
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x as field content: x as field
- Cast: - Cast:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x as group\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x as group\\\"}\"}"
target_type: Group target_type: Group
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x as group content: x as group
- Binary: - Binary:
left: left:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x ** y as u32 ** z\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x ** y as u32 ** z\\\"}\"}"
right: right:
Binary: Binary:
left: left:
Cast: Cast:
inner: inner:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x ** y as u32 ** z\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x ** y as u32 ** z\\\"}\"}"
target_type: target_type:
IntegerType: U32 IntegerType: U32
span: span:
@ -111,17 +111,17 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x ** y as u32 ** z content: x ** y as u32 ** z
right: right:
Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"x ** y as u32 ** z\\\"}\"}" Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"x ** y as u32 ** z\\\"}\"}"
op: Pow op: Pow
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 19 col_stop: 19
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x ** y as u32 ** z content: x ** y as u32 ** z
op: Pow op: Pow
span: span:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 19 col_stop: 19
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: x ** y as u32 ** z content: x ** y as u32 ** z
- Value: - Value:
Implicit: Implicit:
@ -144,14 +144,14 @@ outputs:
inner: inner:
Unary: Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"!x as u32\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"!x as u32\\\"}\"}"
op: Not op: Not
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: "!x as u32" content: "!x as u32"
target_type: target_type:
IntegerType: U32 IntegerType: U32
@ -160,20 +160,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: "!x as u32" content: "!x as u32"
- Cast: - Cast:
inner: inner:
Unary: Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/cast.leo\\\",\\\"content\\\":\\\"-x as u32\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"cast.leo\\\",\\\"content\\\":\\\"-x as u32\\\"}\"}"
op: Negate op: Negate
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: "-x as u32" content: "-x as u32"
target_type: target_type:
IntegerType: U32 IntegerType: U32
@ -182,5 +182,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/cast.leo path: cast.leo
content: "-x as u32" content: "-x as u32"

View File

@ -3,111 +3,111 @@ ns: ParseExpression
expectation: Pass expectation: Pass
outputs: outputs:
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x {}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x {}\\\"}\"}"
members: [] members: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x {}" content: "x {}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x {y}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x {y}\\\"}\"}"
members: members:
- identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x {y}\\\"}\"}" - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x {y}\\\"}\"}"
expression: ~ expression: ~
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x {y}" content: "x {y}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y}\\\"}\"}"
members: members:
- identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y}\\\"}\"}" - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y}\\\"}\"}"
expression: ~ expression: ~
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x{y}" content: "x{y}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{}\\\"}\"}"
members: [] members: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x{}" content: "x{}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: y}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: y}\\\"}\"}"
members: members:
- identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: y}\\\"}\"}" - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: y}\\\"}\"}"
expression: expression:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: y}\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: y}\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x{y: y}" content: "x{y: y}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x}\\\"}\"}"
members: members:
- identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x}\\\"}\"}" - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x}\\\"}\"}"
expression: expression:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x}\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x}\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x{y: x}" content: "x{y: x}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x,}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x,}\\\"}\"}"
members: members:
- identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x,}\\\"}\"}" - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x,}\\\"}\"}"
expression: expression:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x,}\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y: x,}\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x{y: x,}" content: "x{y: x,}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}" name: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}"
members: members:
- identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}" - identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}"
expression: expression:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}"
- identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}" - identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}"
expression: expression:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"x{y:x, x:y,}\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "x{y:x, x:y,}" content: "x{y:x, x:y,}"
- CircuitInit: - CircuitInit:
name: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo\\\",\\\"content\\\":\\\"Self {}\\\"}\"}" name: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"circuit_init.leo\\\",\\\"content\\\":\\\"Self {}\\\"}\"}"
members: [] members: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/circuit_init.leo path: circuit_init.leo
content: "Self {}" content: "Self {}"

View File

@ -2,22 +2,22 @@
ns: ParseExpression ns: ParseExpression
expectation: Pass expectation: Pass
outputs: outputs:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"x\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"x\\\"}\"}"
- Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"X\\\"}\"}" - Identifier: "{\"name\":\"X\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"X\\\"}\"}"
- Identifier: "{\"name\":\"xxx\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"xxx\\\"}\"}" - Identifier: "{\"name\":\"xxx\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"xxx\\\"}\"}"
- Identifier: "{\"name\":\"XXX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"XXX\\\"}\"}" - Identifier: "{\"name\":\"XXX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":4,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"XXX\\\"}\"}"
- Identifier: "{\"name\":\"x1\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"x1\\\"}\"}" - Identifier: "{\"name\":\"x1\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":3,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"x1\\\"}\"}"
- Identifier: "{\"name\":\"xu32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"xu32\\\"}\"}" - Identifier: "{\"name\":\"xu32\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"xu32\\\"}\"}"
- Identifier: "{\"name\":\"testx\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"testx\\\"}\"}" - Identifier: "{\"name\":\"testx\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"testx\\\"}\"}"
- Identifier: "{\"name\":\"truex\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"truex\\\"}\"}" - Identifier: "{\"name\":\"truex\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"truex\\\"}\"}"
- Identifier: "{\"name\":\"TRUE\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"TRUE\\\"}\"}" - Identifier: "{\"name\":\"TRUE\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"TRUE\\\"}\"}"
- Identifier: "{\"name\":\"testX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"testX\\\"}\"}" - Identifier: "{\"name\":\"testX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"testX\\\"}\"}"
- Identifier: "{\"name\":\"letX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"letX\\\"}\"}" - Identifier: "{\"name\":\"letX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"letX\\\"}\"}"
- Identifier: "{\"name\":\"constX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"constX\\\"}\"}" - Identifier: "{\"name\":\"constX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"constX\\\"}\"}"
- Identifier: "{\"name\":\"test_test\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"test_test\\\"}\"}" - Identifier: "{\"name\":\"test_test\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":10,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"test_test\\\"}\"}"
- Identifier: "{\"name\":\"self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"self\\\"}\"}" - Identifier: "{\"name\":\"self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"self\\\"}\"}"
- Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"Self\\\"}\"}" - Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"Self\\\"}\"}"
- Identifier: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"input\\\"}\"}" - Identifier: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"input\\\"}\"}"
- Identifier: "{\"name\":\"selfX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"selfX\\\"}\"}" - Identifier: "{\"name\":\"selfX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"selfX\\\"}\"}"
- Identifier: "{\"name\":\"SelfX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"SelfX\\\"}\"}" - Identifier: "{\"name\":\"SelfX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":6,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"SelfX\\\"}\"}"
- Identifier: "{\"name\":\"inputX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ident.leo\\\",\\\"content\\\":\\\"inputX\\\"}\"}" - Identifier: "{\"name\":\"inputX\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":7,\\\"path\\\":\\\"ident.leo\\\",\\\"content\\\":\\\"inputX\\\"}\"}"

View File

@ -9,7 +9,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 64 col_stop: 64
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8 content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8
- Value: - Value:
Address: Address:
@ -18,7 +18,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 64 col_stop: 64
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j9 content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j9
- Value: - Value:
Address: Address:
@ -27,7 +27,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 64 col_stop: 64
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d9 content: aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d9
- Value: - Value:
Address: Address:
@ -36,7 +36,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 64 col_stop: 64
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: aleo1aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8st content: aleo1aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8st
- Value: - Value:
Address: Address:
@ -45,7 +45,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 73 col_stop: 73
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8) content: address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8)
- Value: - Value:
Address: Address:
@ -54,7 +54,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 73 col_stop: 73
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j9) content: address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j9)
- Value: - Value:
Address: Address:
@ -63,7 +63,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 73 col_stop: 73
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d9) content: address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57d9)
- Value: - Value:
Address: Address:
@ -72,5 +72,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 73 col_stop: 73
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/address_parse.leo path: address_parse.leo
content: address(aleo1aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8st) content: address(aleo1aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8st)

View File

@ -9,7 +9,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/bool_parse.leo path: bool_parse.leo
content: "true" content: "true"
- Value: - Value:
Boolean: Boolean:
@ -18,5 +18,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/bool_parse.leo path: bool_parse.leo
content: "false" content: "false"

View File

@ -12,7 +12,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, _)group" content: "(+, _)group"
- Value: - Value:
Group: Group:
@ -24,7 +24,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(_, -)group" content: "(_, -)group"
- Value: - Value:
Group: Group:
@ -36,7 +36,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, -)group" content: "(+, -)group"
- Value: - Value:
Group: Group:
@ -48,7 +48,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-, +)group" content: "(-, +)group"
- Value: - Value:
Group: Group:
@ -60,7 +60,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, +)group" content: "(+, +)group"
- Value: - Value:
Group: Group:
@ -72,7 +72,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-, -)group" content: "(-, -)group"
- Value: - Value:
Group: Group:
@ -84,7 +84,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(_, _)group" content: "(_, _)group"
- Value: - Value:
Group: Group:
@ -96,7 +96,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123,-456)group" content: "(123,-456)group"
y: y:
Number: Number:
@ -105,14 +105,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123,-456)group" content: "(123,-456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123,-456)group" content: "(123,-456)group"
- Value: - Value:
Group: Group:
@ -124,7 +124,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-123,456)group" content: "(-123,456)group"
y: y:
Number: Number:
@ -133,14 +133,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-123,456)group" content: "(-123,456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-123,456)group" content: "(-123,456)group"
- Value: - Value:
Group: Group:
@ -152,7 +152,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-123,456)group" content: "(-123,456)group"
y: y:
Number: Number:
@ -161,14 +161,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-123,456)group" content: "(-123,456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-123,456)group" content: "(-123,456)group"
- Value: - Value:
Group: Group:
@ -180,7 +180,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, _)group" content: "(123, _)group"
y: Inferred y: Inferred
span: span:
@ -188,7 +188,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, _)group" content: "(123, _)group"
- Value: - Value:
Group: Group:
@ -200,7 +200,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, -)group" content: "(123, -)group"
y: SignLow y: SignLow
span: span:
@ -208,7 +208,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, -)group" content: "(123, -)group"
- Value: - Value:
Group: Group:
@ -220,7 +220,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, -)group" content: "(123, -)group"
y: SignLow y: SignLow
span: span:
@ -228,7 +228,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, -)group" content: "(123, -)group"
- Value: - Value:
Group: Group:
@ -240,7 +240,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, +)group" content: "(123, +)group"
y: SignHigh y: SignHigh
span: span:
@ -248,7 +248,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, +)group" content: "(123, +)group"
- Value: - Value:
Group: Group:
@ -260,7 +260,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, +)group" content: "(123, +)group"
y: SignHigh y: SignHigh
span: span:
@ -268,7 +268,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, +)group" content: "(123, +)group"
- Value: - Value:
Group: Group:
@ -280,7 +280,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, -)group" content: "(123, -)group"
y: SignLow y: SignLow
span: span:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, -)group" content: "(123, -)group"
- Value: - Value:
Group: Group:
@ -300,7 +300,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, _)group" content: "(123, _)group"
y: Inferred y: Inferred
span: span:
@ -308,7 +308,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, _)group" content: "(123, _)group"
- Value: - Value:
Group: Group:
@ -321,14 +321,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, 345)group" content: "(+, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, 345)group" content: "(+, 345)group"
- Value: - Value:
Group: Group:
@ -341,14 +341,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(_, 345)group" content: "(_, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(_, 345)group" content: "(_, 345)group"
- Value: - Value:
Group: Group:
@ -361,14 +361,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, 345)group" content: "(+, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, 345)group" content: "(+, 345)group"
- Value: - Value:
Group: Group:
@ -381,14 +381,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-, 345)group" content: "(-, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-, 345)group" content: "(-, 345)group"
- Value: - Value:
Group: Group:
@ -401,14 +401,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, 345)group" content: "(+, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(+, 345)group" content: "(+, 345)group"
- Value: - Value:
Group: Group:
@ -421,14 +421,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-, 345)group" content: "(-, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(-, 345)group" content: "(-, 345)group"
- Value: - Value:
Group: Group:
@ -441,14 +441,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(_, 345)group" content: "(_, 345)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(_, 345)group" content: "(_, 345)group"
- Value: - Value:
Group: Group:
@ -460,7 +460,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -469,14 +469,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
- Value: - Value:
Group: Group:
@ -488,7 +488,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -497,14 +497,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
- Value: - Value:
Group: Group:
@ -516,7 +516,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -525,14 +525,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
- Value: - Value:
Group: Group:
@ -544,7 +544,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -553,14 +553,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
- Value: - Value:
Group: Group:
@ -572,7 +572,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -581,14 +581,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
- Value: - Value:
Group: Group:
@ -600,7 +600,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -609,14 +609,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
- Value: - Value:
Group: Group:
@ -628,7 +628,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
y: y:
Number: Number:
@ -637,12 +637,12 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 7 col_start: 7
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/group.leo path: group.leo
content: "(123, 456)group" content: "(123, 456)group"

View File

@ -9,7 +9,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 123field content: 123field
- Value: - Value:
Implicit: Implicit:
@ -18,7 +18,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: "123" content: "123"
- Value: - Value:
Field: Field:
@ -27,7 +27,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 456field content: 456field
- Value: - Value:
Field: Field:
@ -36,7 +36,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 86 col_stop: 86
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802field content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802field
- Value: - Value:
Field: Field:
@ -45,7 +45,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 406 col_stop: 406
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802field content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802field
- Value: - Value:
Field: Field:
@ -54,7 +54,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 340130024field content: 340130024field
- Value: - Value:
Field: Field:
@ -63,7 +63,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 158951116field content: 158951116field
- Value: - Value:
Field: Field:
@ -72,7 +72,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 155529659field content: 155529659field
- Value: - Value:
Field: Field:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 642023166field content: 642023166field
- Value: - Value:
Field: Field:
@ -90,7 +90,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 228481736field content: 228481736field
- Value: - Value:
Field: Field:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 469712960field content: 469712960field
- Value: - Value:
Field: Field:
@ -108,7 +108,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 929437719field content: 929437719field
- Value: - Value:
Field: Field:
@ -117,7 +117,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 721072814field content: 721072814field
- Value: - Value:
Field: Field:
@ -126,7 +126,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 363254789field content: 363254789field
- Value: - Value:
Field: Field:
@ -135,7 +135,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 906732565field content: 906732565field
- Value: - Value:
Field: Field:
@ -144,7 +144,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 288246391field content: 288246391field
- Value: - Value:
Field: Field:
@ -153,7 +153,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 724940549field content: 724940549field
- Value: - Value:
Field: Field:
@ -162,7 +162,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 487101620field content: 487101620field
- Value: - Value:
Field: Field:
@ -171,7 +171,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 261373583field content: 261373583field
- Value: - Value:
Field: Field:
@ -180,7 +180,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 891163927field content: 891163927field
- Value: - Value:
Field: Field:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 743967544field content: 743967544field
- Value: - Value:
Field: Field:
@ -198,7 +198,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 8372586field content: 8372586field
- Value: - Value:
Field: Field:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 461793278field content: 461793278field
- Value: - Value:
Field: Field:
@ -216,7 +216,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 806307045field content: 806307045field
- Value: - Value:
Field: Field:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 122764546field content: 122764546field
- Value: - Value:
Field: Field:
@ -234,7 +234,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 356336181field content: 356336181field
- Value: - Value:
Field: Field:
@ -243,7 +243,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 158370903field content: 158370903field
- Value: - Value:
Field: Field:
@ -252,7 +252,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 774460877field content: 774460877field
- Value: - Value:
Field: Field:
@ -261,7 +261,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 557174131field content: 557174131field
- Value: - Value:
Field: Field:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 492401267field content: 492401267field
- Value: - Value:
Field: Field:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 893445620field content: 893445620field
- Value: - Value:
Field: Field:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 957757048field content: 957757048field
- Value: - Value:
Field: Field:
@ -297,7 +297,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 721540649field content: 721540649field
- Value: - Value:
Field: Field:
@ -306,7 +306,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 390746493field content: 390746493field
- Value: - Value:
Field: Field:
@ -315,7 +315,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 211251725field content: 211251725field
- Value: - Value:
Field: Field:
@ -324,7 +324,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 938266114field content: 938266114field
- Value: - Value:
Field: Field:
@ -333,7 +333,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 156985870field content: 156985870field
- Value: - Value:
Field: Field:
@ -342,7 +342,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 703831126field content: 703831126field
- Value: - Value:
Field: Field:
@ -351,7 +351,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 729964155field content: 729964155field
- Value: - Value:
Field: Field:
@ -360,7 +360,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 988151305field content: 988151305field
- Value: - Value:
Field: Field:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 320872435field content: 320872435field
- Value: - Value:
Field: Field:
@ -378,7 +378,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 719287167field content: 719287167field
- Value: - Value:
Field: Field:
@ -387,7 +387,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 152289486field content: 152289486field
- Value: - Value:
Field: Field:
@ -396,7 +396,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 740067975field content: 740067975field
- Value: - Value:
Field: Field:
@ -405,7 +405,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 728627816field content: 728627816field
- Value: - Value:
Field: Field:
@ -414,7 +414,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 385008978field content: 385008978field
- Value: - Value:
Field: Field:
@ -423,7 +423,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 553967635field content: 553967635field
- Value: - Value:
Field: Field:
@ -432,7 +432,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 71980713field content: 71980713field
- Value: - Value:
Field: Field:
@ -441,7 +441,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 519444716field content: 519444716field
- Value: - Value:
Field: Field:
@ -450,7 +450,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 116499965field content: 116499965field
- Value: - Value:
Field: Field:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 717422268field content: 717422268field
- Value: - Value:
Field: Field:
@ -468,7 +468,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 18966279field content: 18966279field
- Value: - Value:
Field: Field:
@ -477,7 +477,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 22458638field content: 22458638field
- Value: - Value:
Field: Field:
@ -486,7 +486,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 857282620field content: 857282620field
- Value: - Value:
Field: Field:
@ -495,7 +495,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 920675898field content: 920675898field
- Value: - Value:
Field: Field:
@ -504,7 +504,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 762235516field content: 762235516field
- Value: - Value:
Field: Field:
@ -513,7 +513,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 469018377field content: 469018377field
- Value: - Value:
Field: Field:
@ -522,7 +522,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 199986521field content: 199986521field
- Value: - Value:
Field: Field:
@ -531,7 +531,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 536679358field content: 536679358field
- Value: - Value:
Field: Field:
@ -540,7 +540,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 591399452field content: 591399452field
- Value: - Value:
Field: Field:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 83083158field content: 83083158field
- Value: - Value:
Field: Field:
@ -558,7 +558,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 599449051field content: 599449051field
- Value: - Value:
Field: Field:
@ -567,7 +567,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 445442318field content: 445442318field
- Value: - Value:
Field: Field:
@ -576,7 +576,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 585486590field content: 585486590field
- Value: - Value:
Field: Field:
@ -585,7 +585,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 209278800field content: 209278800field
- Value: - Value:
Field: Field:
@ -594,7 +594,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 873568117field content: 873568117field
- Value: - Value:
Field: Field:
@ -603,7 +603,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 664470940field content: 664470940field
- Value: - Value:
Field: Field:
@ -612,7 +612,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 465262783field content: 465262783field
- Value: - Value:
Field: Field:
@ -621,7 +621,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 605652874field content: 605652874field
- Value: - Value:
Field: Field:
@ -630,7 +630,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 376803940field content: 376803940field
- Value: - Value:
Field: Field:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 965247040field content: 965247040field
- Value: - Value:
Field: Field:
@ -648,7 +648,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 598474509field content: 598474509field
- Value: - Value:
Field: Field:
@ -657,7 +657,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 845119918field content: 845119918field
- Value: - Value:
Field: Field:
@ -666,7 +666,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 648159133field content: 648159133field
- Value: - Value:
Field: Field:
@ -675,7 +675,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 669051032field content: 669051032field
- Value: - Value:
Field: Field:
@ -684,7 +684,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 800600261field content: 800600261field
- Value: - Value:
Field: Field:
@ -693,7 +693,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 434689764field content: 434689764field
- Value: - Value:
Field: Field:
@ -702,7 +702,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 520060080field content: 520060080field
- Value: - Value:
Field: Field:
@ -711,7 +711,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 804659385field content: 804659385field
- Value: - Value:
Field: Field:
@ -720,7 +720,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 537828058field content: 537828058field
- Value: - Value:
Field: Field:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 716600292field content: 716600292field
- Value: - Value:
Field: Field:
@ -738,7 +738,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 387020273field content: 387020273field
- Value: - Value:
Field: Field:
@ -747,7 +747,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 199375617field content: 199375617field
- Value: - Value:
Field: Field:
@ -756,7 +756,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 680337189field content: 680337189field
- Value: - Value:
Field: Field:
@ -765,7 +765,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 818479931field content: 818479931field
- Value: - Value:
Field: Field:
@ -774,7 +774,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 893693281field content: 893693281field
- Value: - Value:
Field: Field:
@ -783,7 +783,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 87377802field content: 87377802field
- Value: - Value:
Field: Field:
@ -792,7 +792,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 84699261field content: 84699261field
- Value: - Value:
Field: Field:
@ -801,7 +801,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 292826090field content: 292826090field
- Value: - Value:
Field: Field:
@ -810,7 +810,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 569171405field content: 569171405field
- Value: - Value:
Field: Field:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 387436237field content: 387436237field
- Value: - Value:
Field: Field:
@ -828,7 +828,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 150682190field content: 150682190field
- Value: - Value:
Field: Field:
@ -837,7 +837,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 888770419field content: 888770419field
- Value: - Value:
Field: Field:
@ -846,7 +846,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 824696431field content: 824696431field
- Value: - Value:
Field: Field:
@ -855,7 +855,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 765659803field content: 765659803field
- Value: - Value:
Field: Field:
@ -864,7 +864,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 270163693field content: 270163693field
- Value: - Value:
Field: Field:
@ -873,7 +873,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 427940240field content: 427940240field
- Value: - Value:
Field: Field:
@ -882,7 +882,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 504997332field content: 504997332field
- Value: - Value:
Field: Field:
@ -891,7 +891,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 337808338field content: 337808338field
- Value: - Value:
Field: Field:
@ -900,7 +900,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 907200008field content: 907200008field
- Value: - Value:
Field: Field:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 757177889field content: 757177889field
- Value: - Value:
Field: Field:
@ -918,7 +918,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 696697188field content: 696697188field
- Value: - Value:
Field: Field:
@ -927,7 +927,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 41376051field content: 41376051field
- Value: - Value:
Field: Field:
@ -936,7 +936,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 496293518field content: 496293518field
- Value: - Value:
Field: Field:
@ -945,5 +945,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/field.leo path: field.leo
content: 251218820field content: 251218820field

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 123i128 content: 123i128
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 456i128 content: 456i128
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 85 col_stop: 85
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i128 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i128
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 405 col_stop: 405
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i128 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i128
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 340130024i128 content: 340130024i128
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 158951116i128 content: 158951116i128
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 155529659i128 content: 155529659i128
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 642023166i128 content: 642023166i128
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 228481736i128 content: 228481736i128
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 469712960i128 content: 469712960i128
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 929437719i128 content: 929437719i128
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 721072814i128 content: 721072814i128
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 363254789i128 content: 363254789i128
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 906732565i128 content: 906732565i128
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 288246391i128 content: 288246391i128
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 724940549i128 content: 724940549i128
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 487101620i128 content: 487101620i128
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 261373583i128 content: 261373583i128
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 891163927i128 content: 891163927i128
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 743967544i128 content: 743967544i128
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 8372586i128 content: 8372586i128
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 461793278i128 content: 461793278i128
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 806307045i128 content: 806307045i128
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 122764546i128 content: 122764546i128
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 356336181i128 content: 356336181i128
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 158370903i128 content: 158370903i128
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 774460877i128 content: 774460877i128
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 557174131i128 content: 557174131i128
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 492401267i128 content: 492401267i128
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 893445620i128 content: 893445620i128
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 957757048i128 content: 957757048i128
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 721540649i128 content: 721540649i128
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 390746493i128 content: 390746493i128
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 211251725i128 content: 211251725i128
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 938266114i128 content: 938266114i128
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 156985870i128 content: 156985870i128
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 703831126i128 content: 703831126i128
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 729964155i128 content: 729964155i128
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 988151305i128 content: 988151305i128
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 320872435i128 content: 320872435i128
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 719287167i128 content: 719287167i128
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 152289486i128 content: 152289486i128
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 740067975i128 content: 740067975i128
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 728627816i128 content: 728627816i128
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 385008978i128 content: 385008978i128
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 553967635i128 content: 553967635i128
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 71980713i128 content: 71980713i128
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 519444716i128 content: 519444716i128
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 116499965i128 content: 116499965i128
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 717422268i128 content: 717422268i128
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 18966279i128 content: 18966279i128
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 22458638i128 content: 22458638i128
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 857282620i128 content: 857282620i128
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 920675898i128 content: 920675898i128
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 762235516i128 content: 762235516i128
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 469018377i128 content: 469018377i128
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 199986521i128 content: 199986521i128
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 536679358i128 content: 536679358i128
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 591399452i128 content: 591399452i128
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 83083158i128 content: 83083158i128
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 599449051i128 content: 599449051i128
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 445442318i128 content: 445442318i128
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 585486590i128 content: 585486590i128
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 209278800i128 content: 209278800i128
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 873568117i128 content: 873568117i128
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 664470940i128 content: 664470940i128
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 465262783i128 content: 465262783i128
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 605652874i128 content: 605652874i128
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 376803940i128 content: 376803940i128
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 965247040i128 content: 965247040i128
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 598474509i128 content: 598474509i128
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 845119918i128 content: 845119918i128
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 648159133i128 content: 648159133i128
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 669051032i128 content: 669051032i128
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 800600261i128 content: 800600261i128
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 434689764i128 content: 434689764i128
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 520060080i128 content: 520060080i128
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 804659385i128 content: 804659385i128
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 537828058i128 content: 537828058i128
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 716600292i128 content: 716600292i128
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 387020273i128 content: 387020273i128
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 199375617i128 content: 199375617i128
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 680337189i128 content: 680337189i128
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 818479931i128 content: 818479931i128
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 893693281i128 content: 893693281i128
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 87377802i128 content: 87377802i128
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 84699261i128 content: 84699261i128
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 292826090i128 content: 292826090i128
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 569171405i128 content: 569171405i128
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 387436237i128 content: 387436237i128
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 150682190i128 content: 150682190i128
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 888770419i128 content: 888770419i128
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 824696431i128 content: 824696431i128
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 765659803i128 content: 765659803i128
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 270163693i128 content: 270163693i128
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 427940240i128 content: 427940240i128
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 504997332i128 content: 504997332i128
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 337808338i128 content: 337808338i128
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 907200008i128 content: 907200008i128
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 757177889i128 content: 757177889i128
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 696697188i128 content: 696697188i128
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 41376051i128 content: 41376051i128
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 496293518i128 content: 496293518i128
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i128.leo path: i128.leo
content: 251218820i128 content: 251218820i128

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 123i16 content: 123i16
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 456i16 content: 456i16
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 84 col_stop: 84
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i16 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i16
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 404 col_stop: 404
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i16 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i16
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 340130024i16 content: 340130024i16
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 158951116i16 content: 158951116i16
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 155529659i16 content: 155529659i16
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 642023166i16 content: 642023166i16
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 228481736i16 content: 228481736i16
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 469712960i16 content: 469712960i16
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 929437719i16 content: 929437719i16
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 721072814i16 content: 721072814i16
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 363254789i16 content: 363254789i16
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 906732565i16 content: 906732565i16
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 288246391i16 content: 288246391i16
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 724940549i16 content: 724940549i16
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 487101620i16 content: 487101620i16
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 261373583i16 content: 261373583i16
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 891163927i16 content: 891163927i16
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 743967544i16 content: 743967544i16
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 8372586i16 content: 8372586i16
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 461793278i16 content: 461793278i16
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 806307045i16 content: 806307045i16
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 122764546i16 content: 122764546i16
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 356336181i16 content: 356336181i16
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 158370903i16 content: 158370903i16
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 774460877i16 content: 774460877i16
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 557174131i16 content: 557174131i16
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 492401267i16 content: 492401267i16
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 893445620i16 content: 893445620i16
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 957757048i16 content: 957757048i16
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 721540649i16 content: 721540649i16
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 390746493i16 content: 390746493i16
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 211251725i16 content: 211251725i16
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 938266114i16 content: 938266114i16
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 156985870i16 content: 156985870i16
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 703831126i16 content: 703831126i16
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 729964155i16 content: 729964155i16
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 988151305i16 content: 988151305i16
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 320872435i16 content: 320872435i16
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 719287167i16 content: 719287167i16
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 152289486i16 content: 152289486i16
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 740067975i16 content: 740067975i16
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 728627816i16 content: 728627816i16
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 385008978i16 content: 385008978i16
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 553967635i16 content: 553967635i16
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 71980713i16 content: 71980713i16
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 519444716i16 content: 519444716i16
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 116499965i16 content: 116499965i16
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 717422268i16 content: 717422268i16
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 18966279i16 content: 18966279i16
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 22458638i16 content: 22458638i16
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 857282620i16 content: 857282620i16
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 920675898i16 content: 920675898i16
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 762235516i16 content: 762235516i16
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 469018377i16 content: 469018377i16
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 199986521i16 content: 199986521i16
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 536679358i16 content: 536679358i16
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 591399452i16 content: 591399452i16
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 83083158i16 content: 83083158i16
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 599449051i16 content: 599449051i16
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 445442318i16 content: 445442318i16
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 585486590i16 content: 585486590i16
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 209278800i16 content: 209278800i16
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 873568117i16 content: 873568117i16
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 664470940i16 content: 664470940i16
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 465262783i16 content: 465262783i16
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 605652874i16 content: 605652874i16
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 376803940i16 content: 376803940i16
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 965247040i16 content: 965247040i16
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 598474509i16 content: 598474509i16
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 845119918i16 content: 845119918i16
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 648159133i16 content: 648159133i16
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 669051032i16 content: 669051032i16
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 800600261i16 content: 800600261i16
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 434689764i16 content: 434689764i16
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 520060080i16 content: 520060080i16
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 804659385i16 content: 804659385i16
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 537828058i16 content: 537828058i16
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 716600292i16 content: 716600292i16
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 387020273i16 content: 387020273i16
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 199375617i16 content: 199375617i16
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 680337189i16 content: 680337189i16
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 818479931i16 content: 818479931i16
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 893693281i16 content: 893693281i16
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 87377802i16 content: 87377802i16
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 84699261i16 content: 84699261i16
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 292826090i16 content: 292826090i16
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 569171405i16 content: 569171405i16
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 387436237i16 content: 387436237i16
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 150682190i16 content: 150682190i16
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 888770419i16 content: 888770419i16
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 824696431i16 content: 824696431i16
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 765659803i16 content: 765659803i16
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 270163693i16 content: 270163693i16
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 427940240i16 content: 427940240i16
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 504997332i16 content: 504997332i16
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 337808338i16 content: 337808338i16
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 907200008i16 content: 907200008i16
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 757177889i16 content: 757177889i16
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 696697188i16 content: 696697188i16
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 41376051i16 content: 41376051i16
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 496293518i16 content: 496293518i16
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i16.leo path: i16.leo
content: 251218820i16 content: 251218820i16

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 123i32 content: 123i32
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 456i32 content: 456i32
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 84 col_stop: 84
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i32 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i32
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 404 col_stop: 404
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i32 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i32
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 340130024i32 content: 340130024i32
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 158951116i32 content: 158951116i32
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 155529659i32 content: 155529659i32
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 642023166i32 content: 642023166i32
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 228481736i32 content: 228481736i32
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 469712960i32 content: 469712960i32
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 929437719i32 content: 929437719i32
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 721072814i32 content: 721072814i32
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 363254789i32 content: 363254789i32
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 906732565i32 content: 906732565i32
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 288246391i32 content: 288246391i32
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 724940549i32 content: 724940549i32
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 487101620i32 content: 487101620i32
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 261373583i32 content: 261373583i32
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 891163927i32 content: 891163927i32
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 743967544i32 content: 743967544i32
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 8372586i32 content: 8372586i32
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 461793278i32 content: 461793278i32
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 806307045i32 content: 806307045i32
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 122764546i32 content: 122764546i32
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 356336181i32 content: 356336181i32
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 158370903i32 content: 158370903i32
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 774460877i32 content: 774460877i32
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 557174131i32 content: 557174131i32
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 492401267i32 content: 492401267i32
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 893445620i32 content: 893445620i32
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 957757048i32 content: 957757048i32
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 721540649i32 content: 721540649i32
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 390746493i32 content: 390746493i32
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 211251725i32 content: 211251725i32
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 938266114i32 content: 938266114i32
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 156985870i32 content: 156985870i32
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 703831126i32 content: 703831126i32
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 729964155i32 content: 729964155i32
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 988151305i32 content: 988151305i32
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 320872435i32 content: 320872435i32
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 719287167i32 content: 719287167i32
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 152289486i32 content: 152289486i32
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 740067975i32 content: 740067975i32
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 728627816i32 content: 728627816i32
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 385008978i32 content: 385008978i32
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 553967635i32 content: 553967635i32
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 71980713i32 content: 71980713i32
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 519444716i32 content: 519444716i32
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 116499965i32 content: 116499965i32
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 717422268i32 content: 717422268i32
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 18966279i32 content: 18966279i32
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 22458638i32 content: 22458638i32
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 857282620i32 content: 857282620i32
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 920675898i32 content: 920675898i32
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 762235516i32 content: 762235516i32
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 469018377i32 content: 469018377i32
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 199986521i32 content: 199986521i32
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 536679358i32 content: 536679358i32
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 591399452i32 content: 591399452i32
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 83083158i32 content: 83083158i32
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 599449051i32 content: 599449051i32
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 445442318i32 content: 445442318i32
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 585486590i32 content: 585486590i32
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 209278800i32 content: 209278800i32
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 873568117i32 content: 873568117i32
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 664470940i32 content: 664470940i32
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 465262783i32 content: 465262783i32
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 605652874i32 content: 605652874i32
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 376803940i32 content: 376803940i32
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 965247040i32 content: 965247040i32
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 598474509i32 content: 598474509i32
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 845119918i32 content: 845119918i32
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 648159133i32 content: 648159133i32
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 669051032i32 content: 669051032i32
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 800600261i32 content: 800600261i32
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 434689764i32 content: 434689764i32
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 520060080i32 content: 520060080i32
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 804659385i32 content: 804659385i32
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 537828058i32 content: 537828058i32
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 716600292i32 content: 716600292i32
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 387020273i32 content: 387020273i32
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 199375617i32 content: 199375617i32
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 680337189i32 content: 680337189i32
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 818479931i32 content: 818479931i32
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 893693281i32 content: 893693281i32
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 87377802i32 content: 87377802i32
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 84699261i32 content: 84699261i32
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 292826090i32 content: 292826090i32
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 569171405i32 content: 569171405i32
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 387436237i32 content: 387436237i32
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 150682190i32 content: 150682190i32
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 888770419i32 content: 888770419i32
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 824696431i32 content: 824696431i32
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 765659803i32 content: 765659803i32
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 270163693i32 content: 270163693i32
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 427940240i32 content: 427940240i32
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 504997332i32 content: 504997332i32
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 337808338i32 content: 337808338i32
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 907200008i32 content: 907200008i32
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 757177889i32 content: 757177889i32
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 696697188i32 content: 696697188i32
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 41376051i32 content: 41376051i32
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 496293518i32 content: 496293518i32
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i32.leo path: i32.leo
content: 251218820i32 content: 251218820i32

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 123i64 content: 123i64
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 456i64 content: 456i64
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 84 col_stop: 84
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i64 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i64
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 404 col_stop: 404
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i64 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i64
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 340130024i64 content: 340130024i64
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 158951116i64 content: 158951116i64
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 155529659i64 content: 155529659i64
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 642023166i64 content: 642023166i64
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 228481736i64 content: 228481736i64
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 469712960i64 content: 469712960i64
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 929437719i64 content: 929437719i64
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 721072814i64 content: 721072814i64
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 363254789i64 content: 363254789i64
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 906732565i64 content: 906732565i64
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 288246391i64 content: 288246391i64
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 724940549i64 content: 724940549i64
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 487101620i64 content: 487101620i64
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 261373583i64 content: 261373583i64
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 891163927i64 content: 891163927i64
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 743967544i64 content: 743967544i64
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 8372586i64 content: 8372586i64
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 461793278i64 content: 461793278i64
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 806307045i64 content: 806307045i64
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 122764546i64 content: 122764546i64
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 356336181i64 content: 356336181i64
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 158370903i64 content: 158370903i64
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 774460877i64 content: 774460877i64
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 557174131i64 content: 557174131i64
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 492401267i64 content: 492401267i64
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 893445620i64 content: 893445620i64
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 957757048i64 content: 957757048i64
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 721540649i64 content: 721540649i64
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 390746493i64 content: 390746493i64
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 211251725i64 content: 211251725i64
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 938266114i64 content: 938266114i64
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 156985870i64 content: 156985870i64
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 703831126i64 content: 703831126i64
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 729964155i64 content: 729964155i64
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 988151305i64 content: 988151305i64
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 320872435i64 content: 320872435i64
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 719287167i64 content: 719287167i64
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 152289486i64 content: 152289486i64
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 740067975i64 content: 740067975i64
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 728627816i64 content: 728627816i64
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 385008978i64 content: 385008978i64
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 553967635i64 content: 553967635i64
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 71980713i64 content: 71980713i64
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 519444716i64 content: 519444716i64
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 116499965i64 content: 116499965i64
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 717422268i64 content: 717422268i64
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 18966279i64 content: 18966279i64
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 22458638i64 content: 22458638i64
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 857282620i64 content: 857282620i64
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 920675898i64 content: 920675898i64
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 762235516i64 content: 762235516i64
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 469018377i64 content: 469018377i64
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 199986521i64 content: 199986521i64
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 536679358i64 content: 536679358i64
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 591399452i64 content: 591399452i64
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 83083158i64 content: 83083158i64
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 599449051i64 content: 599449051i64
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 445442318i64 content: 445442318i64
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 585486590i64 content: 585486590i64
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 209278800i64 content: 209278800i64
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 873568117i64 content: 873568117i64
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 664470940i64 content: 664470940i64
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 465262783i64 content: 465262783i64
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 605652874i64 content: 605652874i64
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 376803940i64 content: 376803940i64
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 965247040i64 content: 965247040i64
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 598474509i64 content: 598474509i64
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 845119918i64 content: 845119918i64
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 648159133i64 content: 648159133i64
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 669051032i64 content: 669051032i64
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 800600261i64 content: 800600261i64
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 434689764i64 content: 434689764i64
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 520060080i64 content: 520060080i64
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 804659385i64 content: 804659385i64
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 537828058i64 content: 537828058i64
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 716600292i64 content: 716600292i64
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 387020273i64 content: 387020273i64
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 199375617i64 content: 199375617i64
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 680337189i64 content: 680337189i64
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 818479931i64 content: 818479931i64
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 893693281i64 content: 893693281i64
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 87377802i64 content: 87377802i64
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 84699261i64 content: 84699261i64
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 292826090i64 content: 292826090i64
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 569171405i64 content: 569171405i64
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 387436237i64 content: 387436237i64
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 150682190i64 content: 150682190i64
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 888770419i64 content: 888770419i64
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 824696431i64 content: 824696431i64
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 765659803i64 content: 765659803i64
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 270163693i64 content: 270163693i64
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 427940240i64 content: 427940240i64
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 504997332i64 content: 504997332i64
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 337808338i64 content: 337808338i64
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 907200008i64 content: 907200008i64
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 757177889i64 content: 757177889i64
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 696697188i64 content: 696697188i64
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 41376051i64 content: 41376051i64
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 496293518i64 content: 496293518i64
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i64.leo path: i64.leo
content: 251218820i64 content: 251218820i64

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 123i8 content: 123i8
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 456i8 content: 456i8
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 83 col_stop: 83
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i8 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802i8
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 403 col_stop: 403
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i8 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802i8
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 340130024i8 content: 340130024i8
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 158951116i8 content: 158951116i8
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 155529659i8 content: 155529659i8
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 642023166i8 content: 642023166i8
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 228481736i8 content: 228481736i8
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 469712960i8 content: 469712960i8
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 929437719i8 content: 929437719i8
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 721072814i8 content: 721072814i8
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 363254789i8 content: 363254789i8
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 906732565i8 content: 906732565i8
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 288246391i8 content: 288246391i8
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 724940549i8 content: 724940549i8
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 487101620i8 content: 487101620i8
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 261373583i8 content: 261373583i8
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 891163927i8 content: 891163927i8
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 743967544i8 content: 743967544i8
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 8372586i8 content: 8372586i8
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 461793278i8 content: 461793278i8
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 806307045i8 content: 806307045i8
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 122764546i8 content: 122764546i8
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 356336181i8 content: 356336181i8
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 158370903i8 content: 158370903i8
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 774460877i8 content: 774460877i8
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 557174131i8 content: 557174131i8
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 492401267i8 content: 492401267i8
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 893445620i8 content: 893445620i8
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 957757048i8 content: 957757048i8
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 721540649i8 content: 721540649i8
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 390746493i8 content: 390746493i8
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 211251725i8 content: 211251725i8
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 938266114i8 content: 938266114i8
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 156985870i8 content: 156985870i8
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 703831126i8 content: 703831126i8
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 729964155i8 content: 729964155i8
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 988151305i8 content: 988151305i8
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 320872435i8 content: 320872435i8
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 719287167i8 content: 719287167i8
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 152289486i8 content: 152289486i8
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 740067975i8 content: 740067975i8
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 728627816i8 content: 728627816i8
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 385008978i8 content: 385008978i8
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 553967635i8 content: 553967635i8
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 71980713i8 content: 71980713i8
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 519444716i8 content: 519444716i8
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 116499965i8 content: 116499965i8
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 717422268i8 content: 717422268i8
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 18966279i8 content: 18966279i8
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 22458638i8 content: 22458638i8
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 857282620i8 content: 857282620i8
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 920675898i8 content: 920675898i8
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 762235516i8 content: 762235516i8
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 469018377i8 content: 469018377i8
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 199986521i8 content: 199986521i8
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 536679358i8 content: 536679358i8
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 591399452i8 content: 591399452i8
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 83083158i8 content: 83083158i8
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 599449051i8 content: 599449051i8
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 445442318i8 content: 445442318i8
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 585486590i8 content: 585486590i8
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 209278800i8 content: 209278800i8
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 873568117i8 content: 873568117i8
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 664470940i8 content: 664470940i8
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 465262783i8 content: 465262783i8
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 605652874i8 content: 605652874i8
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 376803940i8 content: 376803940i8
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 965247040i8 content: 965247040i8
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 598474509i8 content: 598474509i8
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 845119918i8 content: 845119918i8
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 648159133i8 content: 648159133i8
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 669051032i8 content: 669051032i8
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 800600261i8 content: 800600261i8
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 434689764i8 content: 434689764i8
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 520060080i8 content: 520060080i8
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 804659385i8 content: 804659385i8
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 537828058i8 content: 537828058i8
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 716600292i8 content: 716600292i8
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 387020273i8 content: 387020273i8
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 199375617i8 content: 199375617i8
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 680337189i8 content: 680337189i8
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 818479931i8 content: 818479931i8
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 893693281i8 content: 893693281i8
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 87377802i8 content: 87377802i8
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 84699261i8 content: 84699261i8
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 292826090i8 content: 292826090i8
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 569171405i8 content: 569171405i8
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 387436237i8 content: 387436237i8
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 150682190i8 content: 150682190i8
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 888770419i8 content: 888770419i8
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 824696431i8 content: 824696431i8
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 765659803i8 content: 765659803i8
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 270163693i8 content: 270163693i8
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 427940240i8 content: 427940240i8
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 504997332i8 content: 504997332i8
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 337808338i8 content: 337808338i8
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 907200008i8 content: 907200008i8
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 757177889i8 content: 757177889i8
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 696697188i8 content: 696697188i8
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 41376051i8 content: 41376051i8
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 496293518i8 content: 496293518i8
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/i8.leo path: i8.leo
content: 251218820i8 content: 251218820i8

View File

@ -9,7 +9,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "123" content: "123"
- Value: - Value:
Implicit: Implicit:
@ -18,7 +18,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "123" content: "123"
- Value: - Value:
Implicit: Implicit:
@ -27,7 +27,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "456" content: "456"
- Value: - Value:
Implicit: Implicit:
@ -36,7 +36,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 81 col_stop: 81
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "87377802873778028737780287377802873778028737780287377802873778028737780287377802" content: "87377802873778028737780287377802873778028737780287377802873778028737780287377802"
- Value: - Value:
Implicit: Implicit:
@ -45,7 +45,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 401 col_stop: 401
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802" content: "8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802"
- Value: - Value:
Implicit: Implicit:
@ -54,7 +54,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "340130024" content: "340130024"
- Value: - Value:
Implicit: Implicit:
@ -63,7 +63,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "158951116" content: "158951116"
- Value: - Value:
Implicit: Implicit:
@ -72,7 +72,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "155529659" content: "155529659"
- Value: - Value:
Implicit: Implicit:
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "642023166" content: "642023166"
- Value: - Value:
Implicit: Implicit:
@ -90,7 +90,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "228481736" content: "228481736"
- Value: - Value:
Implicit: Implicit:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "469712960" content: "469712960"
- Value: - Value:
Implicit: Implicit:
@ -108,7 +108,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "929437719" content: "929437719"
- Value: - Value:
Implicit: Implicit:
@ -117,7 +117,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "721072814" content: "721072814"
- Value: - Value:
Implicit: Implicit:
@ -126,7 +126,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "363254789" content: "363254789"
- Value: - Value:
Implicit: Implicit:
@ -135,7 +135,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "906732565" content: "906732565"
- Value: - Value:
Implicit: Implicit:
@ -144,7 +144,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "288246391" content: "288246391"
- Value: - Value:
Implicit: Implicit:
@ -153,7 +153,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "724940549" content: "724940549"
- Value: - Value:
Implicit: Implicit:
@ -162,7 +162,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "487101620" content: "487101620"
- Value: - Value:
Implicit: Implicit:
@ -171,7 +171,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "261373583" content: "261373583"
- Value: - Value:
Implicit: Implicit:
@ -180,7 +180,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "891163927" content: "891163927"
- Value: - Value:
Implicit: Implicit:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "743967544" content: "743967544"
- Value: - Value:
Implicit: Implicit:
@ -198,7 +198,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "8372586" content: "8372586"
- Value: - Value:
Implicit: Implicit:
@ -207,7 +207,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "461793278" content: "461793278"
- Value: - Value:
Implicit: Implicit:
@ -216,7 +216,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "806307045" content: "806307045"
- Value: - Value:
Implicit: Implicit:
@ -225,7 +225,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "122764546" content: "122764546"
- Value: - Value:
Implicit: Implicit:
@ -234,7 +234,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "356336181" content: "356336181"
- Value: - Value:
Implicit: Implicit:
@ -243,7 +243,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "158370903" content: "158370903"
- Value: - Value:
Implicit: Implicit:
@ -252,7 +252,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "774460877" content: "774460877"
- Value: - Value:
Implicit: Implicit:
@ -261,7 +261,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "557174131" content: "557174131"
- Value: - Value:
Implicit: Implicit:
@ -270,7 +270,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "492401267" content: "492401267"
- Value: - Value:
Implicit: Implicit:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "893445620" content: "893445620"
- Value: - Value:
Implicit: Implicit:
@ -288,7 +288,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "957757048" content: "957757048"
- Value: - Value:
Implicit: Implicit:
@ -297,7 +297,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "721540649" content: "721540649"
- Value: - Value:
Implicit: Implicit:
@ -306,7 +306,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "390746493" content: "390746493"
- Value: - Value:
Implicit: Implicit:
@ -315,7 +315,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "211251725" content: "211251725"
- Value: - Value:
Implicit: Implicit:
@ -324,7 +324,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "938266114" content: "938266114"
- Value: - Value:
Implicit: Implicit:
@ -333,7 +333,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "156985870" content: "156985870"
- Value: - Value:
Implicit: Implicit:
@ -342,7 +342,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "703831126" content: "703831126"
- Value: - Value:
Implicit: Implicit:
@ -351,7 +351,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "729964155" content: "729964155"
- Value: - Value:
Implicit: Implicit:
@ -360,7 +360,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "988151305" content: "988151305"
- Value: - Value:
Implicit: Implicit:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "320872435" content: "320872435"
- Value: - Value:
Implicit: Implicit:
@ -378,7 +378,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "719287167" content: "719287167"
- Value: - Value:
Implicit: Implicit:
@ -387,7 +387,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "152289486" content: "152289486"
- Value: - Value:
Implicit: Implicit:
@ -396,7 +396,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "740067975" content: "740067975"
- Value: - Value:
Implicit: Implicit:
@ -405,7 +405,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "728627816" content: "728627816"
- Value: - Value:
Implicit: Implicit:
@ -414,7 +414,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "385008978" content: "385008978"
- Value: - Value:
Implicit: Implicit:
@ -423,7 +423,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "553967635" content: "553967635"
- Value: - Value:
Implicit: Implicit:
@ -432,7 +432,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "71980713" content: "71980713"
- Value: - Value:
Implicit: Implicit:
@ -441,7 +441,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "519444716" content: "519444716"
- Value: - Value:
Implicit: Implicit:
@ -450,7 +450,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "116499965" content: "116499965"
- Value: - Value:
Implicit: Implicit:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "717422268" content: "717422268"
- Value: - Value:
Implicit: Implicit:
@ -468,7 +468,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "18966279" content: "18966279"
- Value: - Value:
Implicit: Implicit:
@ -477,7 +477,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "22458638" content: "22458638"
- Value: - Value:
Implicit: Implicit:
@ -486,7 +486,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "857282620" content: "857282620"
- Value: - Value:
Implicit: Implicit:
@ -495,7 +495,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "920675898" content: "920675898"
- Value: - Value:
Implicit: Implicit:
@ -504,7 +504,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "762235516" content: "762235516"
- Value: - Value:
Implicit: Implicit:
@ -513,7 +513,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "469018377" content: "469018377"
- Value: - Value:
Implicit: Implicit:
@ -522,7 +522,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "199986521" content: "199986521"
- Value: - Value:
Implicit: Implicit:
@ -531,7 +531,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "536679358" content: "536679358"
- Value: - Value:
Implicit: Implicit:
@ -540,7 +540,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "591399452" content: "591399452"
- Value: - Value:
Implicit: Implicit:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "83083158" content: "83083158"
- Value: - Value:
Implicit: Implicit:
@ -558,7 +558,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "599449051" content: "599449051"
- Value: - Value:
Implicit: Implicit:
@ -567,7 +567,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "445442318" content: "445442318"
- Value: - Value:
Implicit: Implicit:
@ -576,7 +576,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "585486590" content: "585486590"
- Value: - Value:
Implicit: Implicit:
@ -585,7 +585,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "209278800" content: "209278800"
- Value: - Value:
Implicit: Implicit:
@ -594,7 +594,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "873568117" content: "873568117"
- Value: - Value:
Implicit: Implicit:
@ -603,7 +603,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "664470940" content: "664470940"
- Value: - Value:
Implicit: Implicit:
@ -612,7 +612,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "465262783" content: "465262783"
- Value: - Value:
Implicit: Implicit:
@ -621,7 +621,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "605652874" content: "605652874"
- Value: - Value:
Implicit: Implicit:
@ -630,7 +630,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "376803940" content: "376803940"
- Value: - Value:
Implicit: Implicit:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "965247040" content: "965247040"
- Value: - Value:
Implicit: Implicit:
@ -648,7 +648,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "598474509" content: "598474509"
- Value: - Value:
Implicit: Implicit:
@ -657,7 +657,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "845119918" content: "845119918"
- Value: - Value:
Implicit: Implicit:
@ -666,7 +666,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "648159133" content: "648159133"
- Value: - Value:
Implicit: Implicit:
@ -675,7 +675,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "669051032" content: "669051032"
- Value: - Value:
Implicit: Implicit:
@ -684,7 +684,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "800600261" content: "800600261"
- Value: - Value:
Implicit: Implicit:
@ -693,7 +693,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "434689764" content: "434689764"
- Value: - Value:
Implicit: Implicit:
@ -702,7 +702,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "520060080" content: "520060080"
- Value: - Value:
Implicit: Implicit:
@ -711,7 +711,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "804659385" content: "804659385"
- Value: - Value:
Implicit: Implicit:
@ -720,7 +720,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "537828058" content: "537828058"
- Value: - Value:
Implicit: Implicit:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "716600292" content: "716600292"
- Value: - Value:
Implicit: Implicit:
@ -738,7 +738,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "387020273" content: "387020273"
- Value: - Value:
Implicit: Implicit:
@ -747,7 +747,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "199375617" content: "199375617"
- Value: - Value:
Implicit: Implicit:
@ -756,7 +756,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "680337189" content: "680337189"
- Value: - Value:
Implicit: Implicit:
@ -765,7 +765,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "818479931" content: "818479931"
- Value: - Value:
Implicit: Implicit:
@ -774,7 +774,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "893693281" content: "893693281"
- Value: - Value:
Implicit: Implicit:
@ -783,7 +783,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "87377802" content: "87377802"
- Value: - Value:
Implicit: Implicit:
@ -792,7 +792,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "84699261" content: "84699261"
- Value: - Value:
Implicit: Implicit:
@ -801,7 +801,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "292826090" content: "292826090"
- Value: - Value:
Implicit: Implicit:
@ -810,7 +810,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "569171405" content: "569171405"
- Value: - Value:
Implicit: Implicit:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "387436237" content: "387436237"
- Value: - Value:
Implicit: Implicit:
@ -828,7 +828,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "150682190" content: "150682190"
- Value: - Value:
Implicit: Implicit:
@ -837,7 +837,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "888770419" content: "888770419"
- Value: - Value:
Implicit: Implicit:
@ -846,7 +846,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "824696431" content: "824696431"
- Value: - Value:
Implicit: Implicit:
@ -855,7 +855,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "765659803" content: "765659803"
- Value: - Value:
Implicit: Implicit:
@ -864,7 +864,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "270163693" content: "270163693"
- Value: - Value:
Implicit: Implicit:
@ -873,7 +873,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "427940240" content: "427940240"
- Value: - Value:
Implicit: Implicit:
@ -882,7 +882,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "504997332" content: "504997332"
- Value: - Value:
Implicit: Implicit:
@ -891,7 +891,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "337808338" content: "337808338"
- Value: - Value:
Implicit: Implicit:
@ -900,7 +900,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "907200008" content: "907200008"
- Value: - Value:
Implicit: Implicit:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "757177889" content: "757177889"
- Value: - Value:
Implicit: Implicit:
@ -918,7 +918,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "696697188" content: "696697188"
- Value: - Value:
Implicit: Implicit:
@ -927,7 +927,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "41376051" content: "41376051"
- Value: - Value:
Implicit: Implicit:
@ -936,7 +936,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "496293518" content: "496293518"
- Value: - Value:
Implicit: Implicit:
@ -945,5 +945,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/implicit.leo path: implicit.leo
content: "251218820" content: "251218820"

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 123group content: 123group
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: "123" content: "123"
- Value: - Value:
Group: Group:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 456group content: 456group
- Value: - Value:
Group: Group:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 86 col_stop: 86
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802group content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802group
- Value: - Value:
Group: Group:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 406 col_stop: 406
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802group content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802group
- Value: - Value:
Group: Group:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 340130024group content: 340130024group
- Value: - Value:
Group: Group:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 158951116group content: 158951116group
- Value: - Value:
Group: Group:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 155529659group content: 155529659group
- Value: - Value:
Group: Group:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 642023166group content: 642023166group
- Value: - Value:
Group: Group:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 228481736group content: 228481736group
- Value: - Value:
Group: Group:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 469712960group content: 469712960group
- Value: - Value:
Group: Group:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 929437719group content: 929437719group
- Value: - Value:
Group: Group:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 721072814group content: 721072814group
- Value: - Value:
Group: Group:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 363254789group content: 363254789group
- Value: - Value:
Group: Group:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 906732565group content: 906732565group
- Value: - Value:
Group: Group:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 288246391group content: 288246391group
- Value: - Value:
Group: Group:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 724940549group content: 724940549group
- Value: - Value:
Group: Group:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 487101620group content: 487101620group
- Value: - Value:
Group: Group:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 261373583group content: 261373583group
- Value: - Value:
Group: Group:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 891163927group content: 891163927group
- Value: - Value:
Group: Group:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 743967544group content: 743967544group
- Value: - Value:
Group: Group:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 8372586group content: 8372586group
- Value: - Value:
Group: Group:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 461793278group content: 461793278group
- Value: - Value:
Group: Group:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 806307045group content: 806307045group
- Value: - Value:
Group: Group:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 122764546group content: 122764546group
- Value: - Value:
Group: Group:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 356336181group content: 356336181group
- Value: - Value:
Group: Group:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 158370903group content: 158370903group
- Value: - Value:
Group: Group:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 774460877group content: 774460877group
- Value: - Value:
Group: Group:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 557174131group content: 557174131group
- Value: - Value:
Group: Group:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 492401267group content: 492401267group
- Value: - Value:
Group: Group:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 893445620group content: 893445620group
- Value: - Value:
Group: Group:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 957757048group content: 957757048group
- Value: - Value:
Group: Group:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 721540649group content: 721540649group
- Value: - Value:
Group: Group:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 390746493group content: 390746493group
- Value: - Value:
Group: Group:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 211251725group content: 211251725group
- Value: - Value:
Group: Group:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 938266114group content: 938266114group
- Value: - Value:
Group: Group:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 156985870group content: 156985870group
- Value: - Value:
Group: Group:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 703831126group content: 703831126group
- Value: - Value:
Group: Group:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 729964155group content: 729964155group
- Value: - Value:
Group: Group:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 988151305group content: 988151305group
- Value: - Value:
Group: Group:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 320872435group content: 320872435group
- Value: - Value:
Group: Group:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 719287167group content: 719287167group
- Value: - Value:
Group: Group:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 152289486group content: 152289486group
- Value: - Value:
Group: Group:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 740067975group content: 740067975group
- Value: - Value:
Group: Group:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 728627816group content: 728627816group
- Value: - Value:
Group: Group:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 385008978group content: 385008978group
- Value: - Value:
Group: Group:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 553967635group content: 553967635group
- Value: - Value:
Group: Group:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 71980713group content: 71980713group
- Value: - Value:
Group: Group:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 519444716group content: 519444716group
- Value: - Value:
Group: Group:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 116499965group content: 116499965group
- Value: - Value:
Group: Group:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 717422268group content: 717422268group
- Value: - Value:
Group: Group:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 18966279group content: 18966279group
- Value: - Value:
Group: Group:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 22458638group content: 22458638group
- Value: - Value:
Group: Group:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 857282620group content: 857282620group
- Value: - Value:
Group: Group:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 920675898group content: 920675898group
- Value: - Value:
Group: Group:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 762235516group content: 762235516group
- Value: - Value:
Group: Group:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 469018377group content: 469018377group
- Value: - Value:
Group: Group:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 199986521group content: 199986521group
- Value: - Value:
Group: Group:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 536679358group content: 536679358group
- Value: - Value:
Group: Group:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 591399452group content: 591399452group
- Value: - Value:
Group: Group:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 83083158group content: 83083158group
- Value: - Value:
Group: Group:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 599449051group content: 599449051group
- Value: - Value:
Group: Group:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 445442318group content: 445442318group
- Value: - Value:
Group: Group:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 585486590group content: 585486590group
- Value: - Value:
Group: Group:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 209278800group content: 209278800group
- Value: - Value:
Group: Group:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 873568117group content: 873568117group
- Value: - Value:
Group: Group:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 664470940group content: 664470940group
- Value: - Value:
Group: Group:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 465262783group content: 465262783group
- Value: - Value:
Group: Group:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 605652874group content: 605652874group
- Value: - Value:
Group: Group:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 376803940group content: 376803940group
- Value: - Value:
Group: Group:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 965247040group content: 965247040group
- Value: - Value:
Group: Group:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 598474509group content: 598474509group
- Value: - Value:
Group: Group:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 845119918group content: 845119918group
- Value: - Value:
Group: Group:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 648159133group content: 648159133group
- Value: - Value:
Group: Group:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 669051032group content: 669051032group
- Value: - Value:
Group: Group:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 800600261group content: 800600261group
- Value: - Value:
Group: Group:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 434689764group content: 434689764group
- Value: - Value:
Group: Group:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 520060080group content: 520060080group
- Value: - Value:
Group: Group:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 804659385group content: 804659385group
- Value: - Value:
Group: Group:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 537828058group content: 537828058group
- Value: - Value:
Group: Group:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 716600292group content: 716600292group
- Value: - Value:
Group: Group:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 387020273group content: 387020273group
- Value: - Value:
Group: Group:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 199375617group content: 199375617group
- Value: - Value:
Group: Group:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 680337189group content: 680337189group
- Value: - Value:
Group: Group:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 818479931group content: 818479931group
- Value: - Value:
Group: Group:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 893693281group content: 893693281group
- Value: - Value:
Group: Group:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 87377802group content: 87377802group
- Value: - Value:
Group: Group:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 84699261group content: 84699261group
- Value: - Value:
Group: Group:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 292826090group content: 292826090group
- Value: - Value:
Group: Group:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 569171405group content: 569171405group
- Value: - Value:
Group: Group:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 387436237group content: 387436237group
- Value: - Value:
Group: Group:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 150682190group content: 150682190group
- Value: - Value:
Group: Group:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 888770419group content: 888770419group
- Value: - Value:
Group: Group:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 824696431group content: 824696431group
- Value: - Value:
Group: Group:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 765659803group content: 765659803group
- Value: - Value:
Group: Group:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 270163693group content: 270163693group
- Value: - Value:
Group: Group:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 427940240group content: 427940240group
- Value: - Value:
Group: Group:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 504997332group content: 504997332group
- Value: - Value:
Group: Group:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 337808338group content: 337808338group
- Value: - Value:
Group: Group:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 907200008group content: 907200008group
- Value: - Value:
Group: Group:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 757177889group content: 757177889group
- Value: - Value:
Group: Group:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 696697188group content: 696697188group
- Value: - Value:
Group: Group:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 41376051group content: 41376051group
- Value: - Value:
Group: Group:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 496293518group content: 496293518group
- Value: - Value:
Group: Group:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/mono_group.leo path: mono_group.leo
content: 251218820group content: 251218820group

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 123u128 content: 123u128
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 456u128 content: 456u128
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 85 col_stop: 85
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u128 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u128
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 405 col_stop: 405
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u128 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u128
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 340130024u128 content: 340130024u128
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 158951116u128 content: 158951116u128
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 155529659u128 content: 155529659u128
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 642023166u128 content: 642023166u128
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 228481736u128 content: 228481736u128
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 469712960u128 content: 469712960u128
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 929437719u128 content: 929437719u128
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 721072814u128 content: 721072814u128
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 363254789u128 content: 363254789u128
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 906732565u128 content: 906732565u128
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 288246391u128 content: 288246391u128
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 724940549u128 content: 724940549u128
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 487101620u128 content: 487101620u128
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 261373583u128 content: 261373583u128
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 891163927u128 content: 891163927u128
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 743967544u128 content: 743967544u128
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 8372586u128 content: 8372586u128
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 461793278u128 content: 461793278u128
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 806307045u128 content: 806307045u128
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 122764546u128 content: 122764546u128
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 356336181u128 content: 356336181u128
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 158370903u128 content: 158370903u128
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 774460877u128 content: 774460877u128
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 557174131u128 content: 557174131u128
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 492401267u128 content: 492401267u128
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 893445620u128 content: 893445620u128
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 957757048u128 content: 957757048u128
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 721540649u128 content: 721540649u128
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 390746493u128 content: 390746493u128
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 211251725u128 content: 211251725u128
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 938266114u128 content: 938266114u128
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 156985870u128 content: 156985870u128
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 703831126u128 content: 703831126u128
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 729964155u128 content: 729964155u128
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 988151305u128 content: 988151305u128
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 320872435u128 content: 320872435u128
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 719287167u128 content: 719287167u128
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 152289486u128 content: 152289486u128
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 740067975u128 content: 740067975u128
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 728627816u128 content: 728627816u128
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 385008978u128 content: 385008978u128
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 553967635u128 content: 553967635u128
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 71980713u128 content: 71980713u128
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 519444716u128 content: 519444716u128
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 116499965u128 content: 116499965u128
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 717422268u128 content: 717422268u128
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 18966279u128 content: 18966279u128
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 22458638u128 content: 22458638u128
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 857282620u128 content: 857282620u128
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 920675898u128 content: 920675898u128
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 762235516u128 content: 762235516u128
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 469018377u128 content: 469018377u128
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 199986521u128 content: 199986521u128
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 536679358u128 content: 536679358u128
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 591399452u128 content: 591399452u128
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 83083158u128 content: 83083158u128
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 599449051u128 content: 599449051u128
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 445442318u128 content: 445442318u128
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 585486590u128 content: 585486590u128
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 209278800u128 content: 209278800u128
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 873568117u128 content: 873568117u128
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 664470940u128 content: 664470940u128
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 465262783u128 content: 465262783u128
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 605652874u128 content: 605652874u128
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 376803940u128 content: 376803940u128
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 965247040u128 content: 965247040u128
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 598474509u128 content: 598474509u128
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 845119918u128 content: 845119918u128
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 648159133u128 content: 648159133u128
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 669051032u128 content: 669051032u128
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 800600261u128 content: 800600261u128
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 434689764u128 content: 434689764u128
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 520060080u128 content: 520060080u128
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 804659385u128 content: 804659385u128
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 537828058u128 content: 537828058u128
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 716600292u128 content: 716600292u128
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 387020273u128 content: 387020273u128
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 199375617u128 content: 199375617u128
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 680337189u128 content: 680337189u128
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 818479931u128 content: 818479931u128
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 893693281u128 content: 893693281u128
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 87377802u128 content: 87377802u128
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 84699261u128 content: 84699261u128
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 292826090u128 content: 292826090u128
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 569171405u128 content: 569171405u128
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 387436237u128 content: 387436237u128
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 150682190u128 content: 150682190u128
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 888770419u128 content: 888770419u128
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 824696431u128 content: 824696431u128
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 765659803u128 content: 765659803u128
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 270163693u128 content: 270163693u128
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 427940240u128 content: 427940240u128
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 504997332u128 content: 504997332u128
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 337808338u128 content: 337808338u128
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 907200008u128 content: 907200008u128
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 757177889u128 content: 757177889u128
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 696697188u128 content: 696697188u128
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 41376051u128 content: 41376051u128
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 496293518u128 content: 496293518u128
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u128.leo path: u128.leo
content: 251218820u128 content: 251218820u128

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 123u8 content: 123u8
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 456u8 content: 456u8
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 83 col_stop: 83
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u8 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u8
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 403 col_stop: 403
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u8 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u8
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 340130024u8 content: 340130024u8
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 158951116u8 content: 158951116u8
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 155529659u8 content: 155529659u8
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 642023166u8 content: 642023166u8
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 228481736u8 content: 228481736u8
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 469712960u8 content: 469712960u8
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 929437719u8 content: 929437719u8
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 721072814u8 content: 721072814u8
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 363254789u8 content: 363254789u8
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 906732565u8 content: 906732565u8
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 288246391u8 content: 288246391u8
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 724940549u8 content: 724940549u8
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 487101620u8 content: 487101620u8
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 261373583u8 content: 261373583u8
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 891163927u8 content: 891163927u8
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 743967544u8 content: 743967544u8
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 8372586u8 content: 8372586u8
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 461793278u8 content: 461793278u8
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 806307045u8 content: 806307045u8
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 122764546u8 content: 122764546u8
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 356336181u8 content: 356336181u8
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 158370903u8 content: 158370903u8
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 774460877u8 content: 774460877u8
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 557174131u8 content: 557174131u8
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 492401267u8 content: 492401267u8
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 893445620u8 content: 893445620u8
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 957757048u8 content: 957757048u8
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 721540649u8 content: 721540649u8
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 390746493u8 content: 390746493u8
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 211251725u8 content: 211251725u8
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 938266114u8 content: 938266114u8
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 156985870u8 content: 156985870u8
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 703831126u8 content: 703831126u8
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 729964155u8 content: 729964155u8
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 988151305u8 content: 988151305u8
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 320872435u8 content: 320872435u8
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 719287167u8 content: 719287167u8
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 152289486u8 content: 152289486u8
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 740067975u8 content: 740067975u8
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 728627816u8 content: 728627816u8
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 385008978u8 content: 385008978u8
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 553967635u8 content: 553967635u8
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 71980713u8 content: 71980713u8
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 519444716u8 content: 519444716u8
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 116499965u8 content: 116499965u8
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 717422268u8 content: 717422268u8
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 18966279u8 content: 18966279u8
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 22458638u8 content: 22458638u8
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 857282620u8 content: 857282620u8
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 920675898u8 content: 920675898u8
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 762235516u8 content: 762235516u8
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 469018377u8 content: 469018377u8
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 199986521u8 content: 199986521u8
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 536679358u8 content: 536679358u8
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 591399452u8 content: 591399452u8
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 83083158u8 content: 83083158u8
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 599449051u8 content: 599449051u8
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 445442318u8 content: 445442318u8
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 585486590u8 content: 585486590u8
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 209278800u8 content: 209278800u8
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 873568117u8 content: 873568117u8
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 664470940u8 content: 664470940u8
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 465262783u8 content: 465262783u8
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 605652874u8 content: 605652874u8
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 376803940u8 content: 376803940u8
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 965247040u8 content: 965247040u8
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 598474509u8 content: 598474509u8
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 845119918u8 content: 845119918u8
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 648159133u8 content: 648159133u8
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 669051032u8 content: 669051032u8
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 800600261u8 content: 800600261u8
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 434689764u8 content: 434689764u8
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 520060080u8 content: 520060080u8
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 804659385u8 content: 804659385u8
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 537828058u8 content: 537828058u8
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 716600292u8 content: 716600292u8
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 387020273u8 content: 387020273u8
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 199375617u8 content: 199375617u8
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 680337189u8 content: 680337189u8
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 818479931u8 content: 818479931u8
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 893693281u8 content: 893693281u8
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 87377802u8 content: 87377802u8
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 84699261u8 content: 84699261u8
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 292826090u8 content: 292826090u8
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 569171405u8 content: 569171405u8
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 387436237u8 content: 387436237u8
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 150682190u8 content: 150682190u8
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 888770419u8 content: 888770419u8
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 824696431u8 content: 824696431u8
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 765659803u8 content: 765659803u8
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 270163693u8 content: 270163693u8
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 427940240u8 content: 427940240u8
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 504997332u8 content: 504997332u8
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 337808338u8 content: 337808338u8
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 907200008u8 content: 907200008u8
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 757177889u8 content: 757177889u8
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 696697188u8 content: 696697188u8
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 41376051u8 content: 41376051u8
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 496293518u8 content: 496293518u8
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u16.leo path: u16.leo
content: 251218820u8 content: 251218820u8

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 123u32 content: 123u32
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 456u32 content: 456u32
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 84 col_stop: 84
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u32 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u32
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 404 col_stop: 404
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u32 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u32
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 340130024u32 content: 340130024u32
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 158951116u32 content: 158951116u32
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 155529659u32 content: 155529659u32
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 642023166u32 content: 642023166u32
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 228481736u32 content: 228481736u32
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 469712960u32 content: 469712960u32
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 929437719u32 content: 929437719u32
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 721072814u32 content: 721072814u32
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 363254789u32 content: 363254789u32
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 906732565u32 content: 906732565u32
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 288246391u32 content: 288246391u32
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 724940549u32 content: 724940549u32
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 487101620u32 content: 487101620u32
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 261373583u32 content: 261373583u32
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 891163927u32 content: 891163927u32
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 743967544u32 content: 743967544u32
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 8372586u32 content: 8372586u32
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 461793278u32 content: 461793278u32
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 806307045u32 content: 806307045u32
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 122764546u32 content: 122764546u32
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 356336181u32 content: 356336181u32
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 158370903u32 content: 158370903u32
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 774460877u32 content: 774460877u32
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 557174131u32 content: 557174131u32
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 492401267u32 content: 492401267u32
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 893445620u32 content: 893445620u32
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 957757048u32 content: 957757048u32
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 721540649u32 content: 721540649u32
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 390746493u32 content: 390746493u32
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 211251725u32 content: 211251725u32
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 938266114u32 content: 938266114u32
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 156985870u32 content: 156985870u32
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 703831126u32 content: 703831126u32
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 729964155u32 content: 729964155u32
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 988151305u32 content: 988151305u32
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 320872435u32 content: 320872435u32
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 719287167u32 content: 719287167u32
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 152289486u32 content: 152289486u32
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 740067975u32 content: 740067975u32
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 728627816u32 content: 728627816u32
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 385008978u32 content: 385008978u32
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 553967635u32 content: 553967635u32
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 71980713u32 content: 71980713u32
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 519444716u32 content: 519444716u32
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 116499965u32 content: 116499965u32
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 717422268u32 content: 717422268u32
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 18966279u32 content: 18966279u32
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 22458638u32 content: 22458638u32
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 857282620u32 content: 857282620u32
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 920675898u32 content: 920675898u32
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 762235516u32 content: 762235516u32
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 469018377u32 content: 469018377u32
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 199986521u32 content: 199986521u32
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 536679358u32 content: 536679358u32
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 591399452u32 content: 591399452u32
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 83083158u32 content: 83083158u32
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 599449051u32 content: 599449051u32
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 445442318u32 content: 445442318u32
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 585486590u32 content: 585486590u32
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 209278800u32 content: 209278800u32
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 873568117u32 content: 873568117u32
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 664470940u32 content: 664470940u32
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 465262783u32 content: 465262783u32
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 605652874u32 content: 605652874u32
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 376803940u32 content: 376803940u32
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 965247040u32 content: 965247040u32
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 598474509u32 content: 598474509u32
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 845119918u32 content: 845119918u32
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 648159133u32 content: 648159133u32
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 669051032u32 content: 669051032u32
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 800600261u32 content: 800600261u32
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 434689764u32 content: 434689764u32
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 520060080u32 content: 520060080u32
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 804659385u32 content: 804659385u32
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 537828058u32 content: 537828058u32
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 716600292u32 content: 716600292u32
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 387020273u32 content: 387020273u32
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 199375617u32 content: 199375617u32
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 680337189u32 content: 680337189u32
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 818479931u32 content: 818479931u32
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 893693281u32 content: 893693281u32
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 87377802u32 content: 87377802u32
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 84699261u32 content: 84699261u32
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 292826090u32 content: 292826090u32
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 569171405u32 content: 569171405u32
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 387436237u32 content: 387436237u32
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 150682190u32 content: 150682190u32
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 888770419u32 content: 888770419u32
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 824696431u32 content: 824696431u32
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 765659803u32 content: 765659803u32
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 270163693u32 content: 270163693u32
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 427940240u32 content: 427940240u32
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 504997332u32 content: 504997332u32
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 337808338u32 content: 337808338u32
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 907200008u32 content: 907200008u32
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 757177889u32 content: 757177889u32
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 696697188u32 content: 696697188u32
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 41376051u32 content: 41376051u32
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 496293518u32 content: 496293518u32
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u32.leo path: u32.leo
content: 251218820u32 content: 251218820u32

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 123u32 content: 123u32
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 456u32 content: 456u32
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 84 col_stop: 84
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u32 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u32
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 404 col_stop: 404
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u32 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u32
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 340130024u32 content: 340130024u32
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 158951116u32 content: 158951116u32
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 155529659u32 content: 155529659u32
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 642023166u32 content: 642023166u32
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 228481736u32 content: 228481736u32
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 469712960u32 content: 469712960u32
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 929437719u32 content: 929437719u32
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 721072814u32 content: 721072814u32
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 363254789u32 content: 363254789u32
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 906732565u32 content: 906732565u32
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 288246391u32 content: 288246391u32
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 724940549u32 content: 724940549u32
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 487101620u32 content: 487101620u32
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 261373583u32 content: 261373583u32
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 891163927u32 content: 891163927u32
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 743967544u32 content: 743967544u32
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 8372586u32 content: 8372586u32
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 461793278u32 content: 461793278u32
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 806307045u32 content: 806307045u32
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 122764546u32 content: 122764546u32
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 356336181u32 content: 356336181u32
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 158370903u32 content: 158370903u32
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 774460877u32 content: 774460877u32
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 557174131u32 content: 557174131u32
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 492401267u32 content: 492401267u32
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 893445620u32 content: 893445620u32
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 957757048u32 content: 957757048u32
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 721540649u32 content: 721540649u32
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 390746493u32 content: 390746493u32
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 211251725u32 content: 211251725u32
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 938266114u32 content: 938266114u32
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 156985870u32 content: 156985870u32
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 703831126u32 content: 703831126u32
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 729964155u32 content: 729964155u32
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 988151305u32 content: 988151305u32
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 320872435u32 content: 320872435u32
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 719287167u32 content: 719287167u32
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 152289486u32 content: 152289486u32
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 740067975u32 content: 740067975u32
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 728627816u32 content: 728627816u32
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 385008978u32 content: 385008978u32
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 553967635u32 content: 553967635u32
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 71980713u32 content: 71980713u32
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 519444716u32 content: 519444716u32
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 116499965u32 content: 116499965u32
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 717422268u32 content: 717422268u32
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 18966279u32 content: 18966279u32
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 22458638u32 content: 22458638u32
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 857282620u32 content: 857282620u32
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 920675898u32 content: 920675898u32
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 762235516u32 content: 762235516u32
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 469018377u32 content: 469018377u32
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 199986521u32 content: 199986521u32
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 536679358u32 content: 536679358u32
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 591399452u32 content: 591399452u32
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 83083158u32 content: 83083158u32
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 599449051u32 content: 599449051u32
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 445442318u32 content: 445442318u32
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 585486590u32 content: 585486590u32
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 209278800u32 content: 209278800u32
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 873568117u32 content: 873568117u32
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 664470940u32 content: 664470940u32
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 465262783u32 content: 465262783u32
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 605652874u32 content: 605652874u32
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 376803940u32 content: 376803940u32
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 965247040u32 content: 965247040u32
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 598474509u32 content: 598474509u32
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 845119918u32 content: 845119918u32
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 648159133u32 content: 648159133u32
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 669051032u32 content: 669051032u32
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 800600261u32 content: 800600261u32
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 434689764u32 content: 434689764u32
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 520060080u32 content: 520060080u32
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 804659385u32 content: 804659385u32
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 537828058u32 content: 537828058u32
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 716600292u32 content: 716600292u32
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 387020273u32 content: 387020273u32
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 199375617u32 content: 199375617u32
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 680337189u32 content: 680337189u32
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 818479931u32 content: 818479931u32
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 893693281u32 content: 893693281u32
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 87377802u32 content: 87377802u32
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 84699261u32 content: 84699261u32
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 292826090u32 content: 292826090u32
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 569171405u32 content: 569171405u32
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 387436237u32 content: 387436237u32
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 150682190u32 content: 150682190u32
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 888770419u32 content: 888770419u32
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 824696431u32 content: 824696431u32
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 765659803u32 content: 765659803u32
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 270163693u32 content: 270163693u32
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 427940240u32 content: 427940240u32
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 504997332u32 content: 504997332u32
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 337808338u32 content: 337808338u32
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 907200008u32 content: 907200008u32
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 757177889u32 content: 757177889u32
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 696697188u32 content: 696697188u32
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 41376051u32 content: 41376051u32
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 496293518u32 content: 496293518u32
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u64.leo path: u64.leo
content: 251218820u32 content: 251218820u32

View File

@ -10,7 +10,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 123u8 content: 123u8
- Value: - Value:
Implicit: Implicit:
@ -19,7 +19,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: "123" content: "123"
- Value: - Value:
Integer: Integer:
@ -29,7 +29,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 456u8 content: 456u8
- Value: - Value:
Integer: Integer:
@ -39,7 +39,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 83 col_stop: 83
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u8 content: 87377802873778028737780287377802873778028737780287377802873778028737780287377802u8
- Value: - Value:
Integer: Integer:
@ -49,7 +49,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 403 col_stop: 403
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u8 content: 8737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802873778028737780287377802u8
- Value: - Value:
Integer: Integer:
@ -59,7 +59,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 340130024u8 content: 340130024u8
- Value: - Value:
Integer: Integer:
@ -69,7 +69,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 158951116u8 content: 158951116u8
- Value: - Value:
Integer: Integer:
@ -79,7 +79,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 155529659u8 content: 155529659u8
- Value: - Value:
Integer: Integer:
@ -89,7 +89,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 642023166u8 content: 642023166u8
- Value: - Value:
Integer: Integer:
@ -99,7 +99,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 228481736u8 content: 228481736u8
- Value: - Value:
Integer: Integer:
@ -109,7 +109,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 469712960u8 content: 469712960u8
- Value: - Value:
Integer: Integer:
@ -119,7 +119,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 929437719u8 content: 929437719u8
- Value: - Value:
Integer: Integer:
@ -129,7 +129,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 721072814u8 content: 721072814u8
- Value: - Value:
Integer: Integer:
@ -139,7 +139,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 363254789u8 content: 363254789u8
- Value: - Value:
Integer: Integer:
@ -149,7 +149,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 906732565u8 content: 906732565u8
- Value: - Value:
Integer: Integer:
@ -159,7 +159,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 288246391u8 content: 288246391u8
- Value: - Value:
Integer: Integer:
@ -169,7 +169,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 724940549u8 content: 724940549u8
- Value: - Value:
Integer: Integer:
@ -179,7 +179,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 487101620u8 content: 487101620u8
- Value: - Value:
Integer: Integer:
@ -189,7 +189,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 261373583u8 content: 261373583u8
- Value: - Value:
Integer: Integer:
@ -199,7 +199,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 891163927u8 content: 891163927u8
- Value: - Value:
Integer: Integer:
@ -209,7 +209,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 743967544u8 content: 743967544u8
- Value: - Value:
Integer: Integer:
@ -219,7 +219,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 8372586u8 content: 8372586u8
- Value: - Value:
Integer: Integer:
@ -229,7 +229,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 461793278u8 content: 461793278u8
- Value: - Value:
Integer: Integer:
@ -239,7 +239,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 806307045u8 content: 806307045u8
- Value: - Value:
Integer: Integer:
@ -249,7 +249,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 122764546u8 content: 122764546u8
- Value: - Value:
Integer: Integer:
@ -259,7 +259,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 356336181u8 content: 356336181u8
- Value: - Value:
Integer: Integer:
@ -269,7 +269,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 158370903u8 content: 158370903u8
- Value: - Value:
Integer: Integer:
@ -279,7 +279,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 774460877u8 content: 774460877u8
- Value: - Value:
Integer: Integer:
@ -289,7 +289,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 557174131u8 content: 557174131u8
- Value: - Value:
Integer: Integer:
@ -299,7 +299,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 492401267u8 content: 492401267u8
- Value: - Value:
Integer: Integer:
@ -309,7 +309,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 893445620u8 content: 893445620u8
- Value: - Value:
Integer: Integer:
@ -319,7 +319,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 957757048u8 content: 957757048u8
- Value: - Value:
Integer: Integer:
@ -329,7 +329,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 721540649u8 content: 721540649u8
- Value: - Value:
Integer: Integer:
@ -339,7 +339,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 390746493u8 content: 390746493u8
- Value: - Value:
Integer: Integer:
@ -349,7 +349,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 211251725u8 content: 211251725u8
- Value: - Value:
Integer: Integer:
@ -359,7 +359,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 938266114u8 content: 938266114u8
- Value: - Value:
Integer: Integer:
@ -369,7 +369,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 156985870u8 content: 156985870u8
- Value: - Value:
Integer: Integer:
@ -379,7 +379,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 703831126u8 content: 703831126u8
- Value: - Value:
Integer: Integer:
@ -389,7 +389,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 729964155u8 content: 729964155u8
- Value: - Value:
Integer: Integer:
@ -399,7 +399,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 988151305u8 content: 988151305u8
- Value: - Value:
Integer: Integer:
@ -409,7 +409,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 320872435u8 content: 320872435u8
- Value: - Value:
Integer: Integer:
@ -419,7 +419,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 719287167u8 content: 719287167u8
- Value: - Value:
Integer: Integer:
@ -429,7 +429,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 152289486u8 content: 152289486u8
- Value: - Value:
Integer: Integer:
@ -439,7 +439,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 740067975u8 content: 740067975u8
- Value: - Value:
Integer: Integer:
@ -449,7 +449,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 728627816u8 content: 728627816u8
- Value: - Value:
Integer: Integer:
@ -459,7 +459,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 385008978u8 content: 385008978u8
- Value: - Value:
Integer: Integer:
@ -469,7 +469,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 553967635u8 content: 553967635u8
- Value: - Value:
Integer: Integer:
@ -479,7 +479,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 71980713u8 content: 71980713u8
- Value: - Value:
Integer: Integer:
@ -489,7 +489,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 519444716u8 content: 519444716u8
- Value: - Value:
Integer: Integer:
@ -499,7 +499,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 116499965u8 content: 116499965u8
- Value: - Value:
Integer: Integer:
@ -509,7 +509,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 717422268u8 content: 717422268u8
- Value: - Value:
Integer: Integer:
@ -519,7 +519,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 18966279u8 content: 18966279u8
- Value: - Value:
Integer: Integer:
@ -529,7 +529,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 22458638u8 content: 22458638u8
- Value: - Value:
Integer: Integer:
@ -539,7 +539,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 857282620u8 content: 857282620u8
- Value: - Value:
Integer: Integer:
@ -549,7 +549,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 920675898u8 content: 920675898u8
- Value: - Value:
Integer: Integer:
@ -559,7 +559,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 762235516u8 content: 762235516u8
- Value: - Value:
Integer: Integer:
@ -569,7 +569,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 469018377u8 content: 469018377u8
- Value: - Value:
Integer: Integer:
@ -579,7 +579,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 199986521u8 content: 199986521u8
- Value: - Value:
Integer: Integer:
@ -589,7 +589,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 536679358u8 content: 536679358u8
- Value: - Value:
Integer: Integer:
@ -599,7 +599,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 591399452u8 content: 591399452u8
- Value: - Value:
Integer: Integer:
@ -609,7 +609,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 83083158u8 content: 83083158u8
- Value: - Value:
Integer: Integer:
@ -619,7 +619,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 599449051u8 content: 599449051u8
- Value: - Value:
Integer: Integer:
@ -629,7 +629,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 445442318u8 content: 445442318u8
- Value: - Value:
Integer: Integer:
@ -639,7 +639,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 585486590u8 content: 585486590u8
- Value: - Value:
Integer: Integer:
@ -649,7 +649,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 209278800u8 content: 209278800u8
- Value: - Value:
Integer: Integer:
@ -659,7 +659,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 873568117u8 content: 873568117u8
- Value: - Value:
Integer: Integer:
@ -669,7 +669,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 664470940u8 content: 664470940u8
- Value: - Value:
Integer: Integer:
@ -679,7 +679,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 465262783u8 content: 465262783u8
- Value: - Value:
Integer: Integer:
@ -689,7 +689,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 605652874u8 content: 605652874u8
- Value: - Value:
Integer: Integer:
@ -699,7 +699,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 376803940u8 content: 376803940u8
- Value: - Value:
Integer: Integer:
@ -709,7 +709,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 965247040u8 content: 965247040u8
- Value: - Value:
Integer: Integer:
@ -719,7 +719,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 598474509u8 content: 598474509u8
- Value: - Value:
Integer: Integer:
@ -729,7 +729,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 845119918u8 content: 845119918u8
- Value: - Value:
Integer: Integer:
@ -739,7 +739,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 648159133u8 content: 648159133u8
- Value: - Value:
Integer: Integer:
@ -749,7 +749,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 669051032u8 content: 669051032u8
- Value: - Value:
Integer: Integer:
@ -759,7 +759,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 800600261u8 content: 800600261u8
- Value: - Value:
Integer: Integer:
@ -769,7 +769,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 434689764u8 content: 434689764u8
- Value: - Value:
Integer: Integer:
@ -779,7 +779,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 520060080u8 content: 520060080u8
- Value: - Value:
Integer: Integer:
@ -789,7 +789,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 804659385u8 content: 804659385u8
- Value: - Value:
Integer: Integer:
@ -799,7 +799,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 537828058u8 content: 537828058u8
- Value: - Value:
Integer: Integer:
@ -809,7 +809,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 716600292u8 content: 716600292u8
- Value: - Value:
Integer: Integer:
@ -819,7 +819,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 387020273u8 content: 387020273u8
- Value: - Value:
Integer: Integer:
@ -829,7 +829,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 199375617u8 content: 199375617u8
- Value: - Value:
Integer: Integer:
@ -839,7 +839,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 680337189u8 content: 680337189u8
- Value: - Value:
Integer: Integer:
@ -849,7 +849,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 818479931u8 content: 818479931u8
- Value: - Value:
Integer: Integer:
@ -859,7 +859,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 893693281u8 content: 893693281u8
- Value: - Value:
Integer: Integer:
@ -869,7 +869,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 87377802u8 content: 87377802u8
- Value: - Value:
Integer: Integer:
@ -879,7 +879,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 84699261u8 content: 84699261u8
- Value: - Value:
Integer: Integer:
@ -889,7 +889,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 292826090u8 content: 292826090u8
- Value: - Value:
Integer: Integer:
@ -899,7 +899,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 569171405u8 content: 569171405u8
- Value: - Value:
Integer: Integer:
@ -909,7 +909,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 387436237u8 content: 387436237u8
- Value: - Value:
Integer: Integer:
@ -919,7 +919,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 150682190u8 content: 150682190u8
- Value: - Value:
Integer: Integer:
@ -929,7 +929,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 888770419u8 content: 888770419u8
- Value: - Value:
Integer: Integer:
@ -939,7 +939,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 824696431u8 content: 824696431u8
- Value: - Value:
Integer: Integer:
@ -949,7 +949,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 765659803u8 content: 765659803u8
- Value: - Value:
Integer: Integer:
@ -959,7 +959,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 270163693u8 content: 270163693u8
- Value: - Value:
Integer: Integer:
@ -969,7 +969,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 427940240u8 content: 427940240u8
- Value: - Value:
Integer: Integer:
@ -979,7 +979,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 504997332u8 content: 504997332u8
- Value: - Value:
Integer: Integer:
@ -989,7 +989,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 337808338u8 content: 337808338u8
- Value: - Value:
Integer: Integer:
@ -999,7 +999,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 907200008u8 content: 907200008u8
- Value: - Value:
Integer: Integer:
@ -1009,7 +1009,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 757177889u8 content: 757177889u8
- Value: - Value:
Integer: Integer:
@ -1019,7 +1019,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 696697188u8 content: 696697188u8
- Value: - Value:
Integer: Integer:
@ -1029,7 +1029,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 41376051u8 content: 41376051u8
- Value: - Value:
Integer: Integer:
@ -1039,7 +1039,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 496293518u8 content: 496293518u8
- Value: - Value:
Integer: Integer:
@ -1049,5 +1049,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/expression/literal/int_parse/u8.leo path: u8.leo
content: 251218820u8 content: 251218820u8

View File

@ -4,69 +4,69 @@ expectation: Pass
outputs: outputs:
- Ternary: - Ternary:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}"
if_true: if_true:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}"
if_false: if_false:
Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}" Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo path: ternary.leo
content: "x ? y : z" content: "x ? y : z"
- Ternary: - Ternary:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}"
if_true: if_true:
Ternary: Ternary:
condition: condition:
Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}"
if_true: if_true:
Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}"
if_false: if_false:
Identifier: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" Identifier: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo path: ternary.leo
content: "x ? a ? b : c : z" content: "x ? a ? b : c : z"
if_false: if_false:
Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}" Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? a ? b : c : z\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo path: ternary.leo
content: "x ? a ? b : c : z" content: "x ? a ? b : c : z"
- Ternary: - Ternary:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}"
if_true: if_true:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}"
if_false: if_false:
Ternary: Ternary:
condition: condition:
Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" Identifier: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}"
if_true: if_true:
Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" Identifier: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":14,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}"
if_false: if_false:
Identifier: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}" Identifier: "{\"name\":\"c\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":17,\\\"col_stop\\\":18,\\\"path\\\":\\\"ternary.leo\\\",\\\"content\\\":\\\"x ? y : a ? b : c\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 9 col_start: 9
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo path: ternary.leo
content: "x ? y : a ? b : c" content: "x ? y : a ? b : c"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/expression/ternary.leo path: ternary.leo
content: "x ? y : a ? b : c" content: "x ? y : a ? b : c"

View File

@ -11,9 +11,9 @@ outputs:
col_stop: 0 col_stop: 0
path: "" path: ""
content: "" content: ""
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x)\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(y)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(y)\\\"}\"}"
- Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(z)\\\"}\"}" - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(z)\\\"}\"}"
- Value: - Value:
Implicit: Implicit:
- "" - ""
@ -23,29 +23,29 @@ outputs:
col_stop: 0 col_stop: 0
path: "" path: ""
content: "" content: ""
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x,)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x,)\\\"}\"}"
- TupleInit: - TupleInit:
elements: elements:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x,y)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x,y)\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x,y)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x,y)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: "(x,y)" content: "(x,y)"
- TupleInit: - TupleInit:
elements: elements:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x,y,z)\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x,y,z)\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x,y,z)\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x,y,z)\\\"}\"}"
- Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo\\\",\\\"content\\\":\\\"(x,y,z)\\\"}\"}" - Identifier: "{\"name\":\"z\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"tuple.leo\\\",\\\"content\\\":\\\"(x,y,z)\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: "(x,y,z)" content: "(x,y,z)"
- TupleInit: - TupleInit:
elements: elements:
@ -56,7 +56,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: "(123,123)" content: "(123,123)"
- Value: - Value:
Implicit: Implicit:
@ -65,14 +65,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: "(123,123)" content: "(123,123)"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: "(123,123)" content: "(123,123)"
- TupleInit: - TupleInit:
elements: [] elements: []
@ -81,7 +81,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: () content: ()
- TupleInit: - TupleInit:
elements: [] elements: []
@ -90,5 +90,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/tuple.leo path: tuple.leo
content: (()) content: (())

View File

@ -4,27 +4,27 @@ expectation: Pass
outputs: outputs:
- Unary: - Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-x\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-x\\\"}\"}"
op: Negate op: Negate
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x" content: "-x"
- Unary: - Unary:
inner: inner:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-x.y\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-x.y\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-x.y\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-x.y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x.y" content: "-x.y"
op: Negate op: Negate
span: span:
@ -32,20 +32,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x.y" content: "-x.y"
- Unary: - Unary:
inner: inner:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-x::y\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-x::y\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-x::y\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-x::y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x::y" content: "-x::y"
op: Negate op: Negate
span: span:
@ -53,20 +53,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x::y" content: "-x::y"
- Unary: - Unary:
inner: inner:
Call: Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-x()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-x()\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x()" content: "-x()"
op: Negate op: Negate
span: span:
@ -74,20 +74,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-x()" content: "-x()"
- Unary: - Unary:
inner: inner:
Unary: Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"--x\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"--x\\\"}\"}"
op: Negate op: Negate
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "--x" content: "--x"
op: Negate op: Negate
span: span:
@ -95,20 +95,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "--x" content: "--x"
- Unary: - Unary:
inner: inner:
Unary: Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo\\\",\\\"content\\\":\\\"-!x\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"negate.leo\\\",\\\"content\\\":\\\"-!x\\\"}\"}"
op: Not op: Not
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-!x" content: "-!x"
op: Negate op: Negate
span: span:
@ -116,5 +116,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/negate.leo path: negate.leo
content: "-!x" content: "-!x"

View File

@ -4,27 +4,27 @@ expectation: Pass
outputs: outputs:
- Unary: - Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!x\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!x\\\"}\"}"
op: Not op: Not
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x" content: "!x"
- Unary: - Unary:
inner: inner:
CircuitMemberAccess: CircuitMemberAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!x.y\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!x.y\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!x.y\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!x.y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x.y" content: "!x.y"
op: Not op: Not
span: span:
@ -32,20 +32,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x.y" content: "!x.y"
- Unary: - Unary:
inner: inner:
CircuitStaticFunctionAccess: CircuitStaticFunctionAccess:
circuit: circuit:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!x::y\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!x::y\\\"}\"}"
name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!x::y\\\"}\"}" name: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!x::y\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x::y" content: "!x::y"
op: Not op: Not
span: span:
@ -53,20 +53,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x::y" content: "!x::y"
- Unary: - Unary:
inner: inner:
Call: Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!x()\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!x()\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x()" content: "!x()"
op: Not op: Not
span: span:
@ -74,20 +74,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!x()" content: "!x()"
- Unary: - Unary:
inner: inner:
Unary: Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!!x\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!!x\\\"}\"}"
op: Not op: Not
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!!x" content: "!!x"
op: Not op: Not
span: span:
@ -95,20 +95,20 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!!x" content: "!!x"
- Unary: - Unary:
inner: inner:
Unary: Unary:
inner: inner:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo\\\",\\\"content\\\":\\\"!-x\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"not.leo\\\",\\\"content\\\":\\\"!-x\\\"}\"}"
op: Negate op: Negate
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!-x" content: "!-x"
op: Not op: Not
span: span:
@ -116,5 +116,5 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/expression/unary/not.leo path: not.leo
content: "!-x" content: "!-x"

View File

@ -7,18 +7,18 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"annotated.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}":
annotations: annotations:
- span: - span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo path: annotated.leo
content: "@test" content: "@test"
name: "{\"name\":\"test\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":2,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo\\\",\\\"content\\\":\\\"@test\\\"}\"}" name: "{\"name\":\"test\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":2,\\\"col_stop\\\":6,\\\"path\\\":\\\"annotated.leo\\\",\\\"content\\\":\\\"@test\\\"}\"}"
arguments: [] arguments: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"annotated.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -32,26 +32,26 @@ outputs:
line_stop: 5 line_stop: 5
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo path: annotated.leo
content: " return ();" content: " return ();"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo path: annotated.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 14 col_start: 14
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo path: annotated.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated.leo path: annotated.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"

View File

@ -7,19 +7,19 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"annotated_param.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}":
annotations: annotations:
- span: - span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo path: annotated_param.leo
content: "@test(test)" content: "@test(test)"
name: "{\"name\":\"test\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":2,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo\\\",\\\"content\\\":\\\"@test(test)\\\"}\"}" name: "{\"name\":\"test\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":2,\\\"col_stop\\\":6,\\\"path\\\":\\\"annotated_param.leo\\\",\\\"content\\\":\\\"@test(test)\\\"}\"}"
arguments: arguments:
- test - test
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"annotated_param.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -33,26 +33,26 @@ outputs:
line_stop: 5 line_stop: 5
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo path: annotated_param.leo
content: " return ();" content: " return ();"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo path: annotated_param.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 14 col_start: 14
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo path: annotated_param.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_param.leo path: annotated_param.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"

View File

@ -7,27 +7,27 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"annotated_twice.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}":
annotations: annotations:
- span: - span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo path: annotated_twice.leo
content: "@test @test2" content: "@test @test2"
name: "{\"name\":\"test\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":2,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo\\\",\\\"content\\\":\\\"@test @test2\\\"}\"}" name: "{\"name\":\"test\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":2,\\\"col_stop\\\":6,\\\"path\\\":\\\"annotated_twice.leo\\\",\\\"content\\\":\\\"@test @test2\\\"}\"}"
arguments: [] arguments: []
- span: - span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 7 col_start: 7
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo path: annotated_twice.leo
content: "@test @test2" content: "@test @test2"
name: "{\"name\":\"test2\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo\\\",\\\"content\\\":\\\"@test @test2\\\"}\"}" name: "{\"name\":\"test2\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":13,\\\"path\\\":\\\"annotated_twice.leo\\\",\\\"content\\\":\\\"@test @test2\\\"}\"}"
arguments: [] arguments: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"annotated_twice.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -41,26 +41,26 @@ outputs:
line_stop: 5 line_stop: 5
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo path: annotated_twice.leo
content: " return ();" content: " return ();"
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo path: annotated_twice.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 14 col_start: 14
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo path: annotated_twice.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"
span: span:
line_start: 4 line_start: 4
line_stop: 6 line_stop: 6
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/annotated_twice.leo path: annotated_twice.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"

View File

@ -7,12 +7,12 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -22,10 +22,10 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(x: u32, const y: i32) {" content: "function x(x: u32, const y: i32) {"
- Variable: - Variable:
identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}" identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(x: u32, const y: i32) {\\\"}\"}"
const_: true const_: true
mutable: false mutable: false
type_: type_:
@ -35,7 +35,7 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 26 col_start: 26
col_stop: 27 col_stop: 27
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(x: u32, const y: i32) {" content: "function x(x: u32, const y: i32) {"
output: ~ output: ~
block: block:
@ -49,35 +49,35 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 34 col_start: 34
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(x: u32, const y: i32) {\n...\n}" content: "function x(x: u32, const y: i32) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(x: u32, const y: i32) {\n...\n}" content: "function x(x: u32, const y: i32) {\n...\n}"
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":18,\\\"col_stop\\\":19,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}"
const_: true const_: true
mutable: false mutable: false
type_: type_:
@ -87,10 +87,10 @@ outputs:
line_stop: 7 line_stop: 7
col_start: 18 col_start: 18
col_stop: 19 col_stop: 19
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(const x: u32, y: i32) {" content: "function x(const x: u32, y: i32) {"
- Variable: - Variable:
identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}" identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"const_param.leo\\\",\\\"content\\\":\\\"function x(const x: u32, y: i32) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -100,7 +100,7 @@ outputs:
line_stop: 7 line_stop: 7
col_start: 26 col_start: 26
col_stop: 27 col_stop: 27
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(const x: u32, y: i32) {" content: "function x(const x: u32, y: i32) {"
output: ~ output: ~
block: block:
@ -114,26 +114,26 @@ outputs:
line_stop: 8 line_stop: 8
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: " return ();" content: " return ();"
span: span:
line_start: 8 line_start: 8
line_stop: 8 line_stop: 8
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: " return ();" content: " return ();"
span: span:
line_start: 7 line_start: 7
line_stop: 9 line_stop: 9
col_start: 34 col_start: 34
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(const x: u32, y: i32) {\n...\n}" content: "function x(const x: u32, y: i32) {\n...\n}"
span: span:
line_start: 7 line_start: 7
line_stop: 9 line_stop: 9
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_param.leo path: const_param.leo
content: "function x(const x: u32, y: i32) {\n...\n}" content: "function x(const x: u32, y: i32) {\n...\n}"

View File

@ -7,11 +7,11 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo\\\",\\\"content\\\":\\\"function x(const self) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"const_self_bad.leo\\\",\\\"content\\\":\\\"function x(const self) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo\\\",\\\"content\\\":\\\"function x(const self) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"const_self_bad.leo\\\",\\\"content\\\":\\\"function x(const self) {\\\"}\"}"
input: input:
- ConstSelfKeyword: "{\"name\":\"const self\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":22,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo\\\",\\\"content\\\":\\\"function x(const self) {\\\"}\"}" - ConstSelfKeyword: "{\"name\":\"const self\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":22,\\\"path\\\":\\\"const_self_bad.leo\\\",\\\"content\\\":\\\"function x(const self) {\\\"}\"}"
output: ~ output: ~
block: block:
statements: statements:
@ -24,26 +24,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo path: const_self_bad.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo path: const_self_bad.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 24 col_start: 24
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo path: const_self_bad.leo
content: "function x(const self) {\n...\n}" content: "function x(const self) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/const_self_bad.leo path: const_self_bad.leo
content: "function x(const self) {\n...\n}" content: "function x(const self) {\n...\n}"

View File

@ -7,9 +7,9 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/empty.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"empty.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/empty.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"empty.leo\\\",\\\"content\\\":\\\"function x() {\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -23,26 +23,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/empty.leo path: empty.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/empty.leo path: empty.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 14 col_start: 14
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/empty.leo path: empty.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/empty.leo path: empty.leo
content: "function x() {\n...\n}" content: "function x() {\n...\n}"

View File

@ -7,9 +7,9 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/empty2.leo\\\",\\\"content\\\":\\\"function x() {}\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"empty2.leo\\\",\\\"content\\\":\\\"function x() {}\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/empty2.leo\\\",\\\"content\\\":\\\"function x() {}\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"empty2.leo\\\",\\\"content\\\":\\\"function x() {}\\\"}\"}"
input: [] input: []
output: ~ output: ~
block: block:
@ -19,12 +19,12 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 14 col_start: 14
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/functions/empty2.leo path: empty2.leo
content: "function x() {}" content: "function x() {}"
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/functions/empty2.leo path: empty2.leo
content: "function x() {}" content: "function x() {}"

View File

@ -7,11 +7,11 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input.leo\\\",\\\"content\\\":\\\"function x(input) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"input.leo\\\",\\\"content\\\":\\\"function x(input) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input.leo\\\",\\\"content\\\":\\\"function x(input) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"input.leo\\\",\\\"content\\\":\\\"function x(input) {\\\"}\"}"
input: input:
- InputKeyword: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":17,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input.leo\\\",\\\"content\\\":\\\"function x(input) {\\\"}\"}" - InputKeyword: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":17,\\\"path\\\":\\\"input.leo\\\",\\\"content\\\":\\\"function x(input) {\\\"}\"}"
output: ~ output: ~
block: block:
statements: statements:
@ -24,26 +24,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/input.leo path: input.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/input.leo path: input.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 19 col_start: 19
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/input.leo path: input.leo
content: "function x(input) {\n...\n}" content: "function x(input) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/input.leo path: input.leo
content: "function x(input) {\n...\n}" content: "function x(input) {\n...\n}"

View File

@ -7,12 +7,12 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -22,9 +22,9 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo path: input_order_bad.leo
content: "function x(x: u32, input) {" content: "function x(x: u32, input) {"
- InputKeyword: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":25,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}" - InputKeyword: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":25,\\\"path\\\":\\\"input_order_bad.leo\\\",\\\"content\\\":\\\"function x(x: u32, input) {\\\"}\"}"
output: ~ output: ~
block: block:
statements: statements:
@ -37,26 +37,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo path: input_order_bad.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo path: input_order_bad.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 27 col_start: 27
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo path: input_order_bad.leo
content: "function x(x: u32, input) {\n...\n}" content: "function x(x: u32, input) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_order_bad.leo path: input_order_bad.leo
content: "function x(x: u32, input) {\n...\n}" content: "function x(x: u32, input) {\n...\n}"

View File

@ -7,13 +7,13 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}"
input: input:
- InputKeyword: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":17,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}" - InputKeyword: "{\"name\":\"input\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":17,\\\"path\\\":\\\"input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}"
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"input_params.leo\\\",\\\"content\\\":\\\"function x(input, x: u32) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -23,7 +23,7 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 19 col_start: 19
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo path: input_params.leo
content: "function x(input, x: u32) {" content: "function x(input, x: u32) {"
output: ~ output: ~
block: block:
@ -37,26 +37,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo path: input_params.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo path: input_params.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 27 col_start: 27
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo path: input_params.leo
content: "function x(input, x: u32) {\n...\n}" content: "function x(input, x: u32) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/input_params.leo path: input_params.leo
content: "function x(input, x: u32) {\n...\n}" content: "function x(input, x: u32) {\n...\n}"

View File

@ -7,12 +7,12 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo\\\",\\\"content\\\":\\\"function x(x: [u8; 12]) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"param_array.leo\\\",\\\"content\\\":\\\"function x(x: [u8; 12]) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo\\\",\\\"content\\\":\\\"function x(x: [u8; 12]) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"param_array.leo\\\",\\\"content\\\":\\\"function x(x: [u8; 12]) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo\\\",\\\"content\\\":\\\"function x(x: [u8; 12]) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"param_array.leo\\\",\\\"content\\\":\\\"function x(x: [u8; 12]) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -24,7 +24,7 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo path: param_array.leo
content: "function x(x: [u8; 12]) {" content: "function x(x: [u8; 12]) {"
output: ~ output: ~
block: block:
@ -38,26 +38,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo path: param_array.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo path: param_array.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 25 col_start: 25
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo path: param_array.leo
content: "function x(x: [u8; 12]) {\n...\n}" content: "function x(x: [u8; 12]) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_array.leo path: param_array.leo
content: "function x(x: [u8; 12]) {\n...\n}" content: "function x(x: [u8; 12]) {\n...\n}"

View File

@ -7,22 +7,22 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
Circuit: "{\"name\":\"MyCircuit\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":15,\\\"col_stop\\\":24,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}" Circuit: "{\"name\":\"MyCircuit\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":15,\\\"col_stop\\\":24,\\\"path\\\":\\\"param_circuit.leo\\\",\\\"content\\\":\\\"function x(x: MyCircuit) {\\\"}\"}"
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo path: param_circuit.leo
content: "function x(x: MyCircuit) {" content: "function x(x: MyCircuit) {"
output: ~ output: ~
block: block:
@ -36,26 +36,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo path: param_circuit.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo path: param_circuit.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 26 col_start: 26
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo path: param_circuit.leo
content: "function x(x: MyCircuit) {\n...\n}" content: "function x(x: MyCircuit) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_circuit.leo path: param_circuit.leo
content: "function x(x: MyCircuit) {\n...\n}" content: "function x(x: MyCircuit) {\n...\n}"

View File

@ -7,12 +7,12 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo\\\",\\\"content\\\":\\\"function x(x: (u32, i32)) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"param_tuple.leo\\\",\\\"content\\\":\\\"function x(x: (u32, i32)) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo\\\",\\\"content\\\":\\\"function x(x: (u32, i32)) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"param_tuple.leo\\\",\\\"content\\\":\\\"function x(x: (u32, i32)) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo\\\",\\\"content\\\":\\\"function x(x: (u32, i32)) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"param_tuple.leo\\\",\\\"content\\\":\\\"function x(x: (u32, i32)) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -24,7 +24,7 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo path: param_tuple.leo
content: "function x(x: (u32, i32)) {" content: "function x(x: (u32, i32)) {"
output: ~ output: ~
block: block:
@ -38,26 +38,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo path: param_tuple.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo path: param_tuple.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 27 col_start: 27
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo path: param_tuple.leo
content: "function x(x: (u32, i32)) {\n...\n}" content: "function x(x: (u32, i32)) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/param_tuple.leo path: param_tuple.leo
content: "function x(x: (u32, i32)) {\n...\n}" content: "function x(x: (u32, i32)) {\n...\n}"

View File

@ -7,12 +7,12 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -22,10 +22,10 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/params.leo path: params.leo
content: "function x(x: u32, y: i32) {" content: "function x(x: u32, y: i32) {"
- Variable: - Variable:
identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":21,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}" identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":21,\\\"path\\\":\\\"params.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -35,7 +35,7 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 20 col_start: 20
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/functions/params.leo path: params.leo
content: "function x(x: u32, y: i32) {" content: "function x(x: u32, y: i32) {"
output: ~ output: ~
block: block:
@ -49,26 +49,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/params.leo path: params.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/params.leo path: params.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 28 col_start: 28
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/params.leo path: params.leo
content: "function x(x: u32, y: i32) {\n...\n}" content: "function x(x: u32, y: i32) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/params.leo path: params.leo
content: "function x(x: u32, y: i32) {\n...\n}" content: "function x(x: u32, y: i32) {\n...\n}"

View File

@ -7,12 +7,12 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo\\\",\\\"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\\\":\\\"params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}"
input: input:
- Variable: - Variable:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":12,\\\"col_stop\\\":13,\\\"path\\\":\\\"params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -22,10 +22,10 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo path: params_return.leo
content: "function x(x: u32, y: i32) -> u32 {" content: "function x(x: u32, y: i32) -> u32 {"
- Variable: - Variable:
identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":21,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}" identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":21,\\\"path\\\":\\\"params_return.leo\\\",\\\"content\\\":\\\"function x(x: u32, y: i32) -> u32 {\\\"}\"}"
const_: false const_: false
mutable: true mutable: true
type_: type_:
@ -35,7 +35,7 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 20 col_start: 20
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo path: params_return.leo
content: "function x(x: u32, y: i32) -> u32 {" content: "function x(x: u32, y: i32) -> u32 {"
output: output:
IntegerType: U32 IntegerType: U32
@ -50,26 +50,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo path: params_return.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo path: params_return.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 35 col_start: 35
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo path: params_return.leo
content: "function x(x: u32, y: i32) -> u32 {\n...\n}" content: "function x(x: u32, y: i32) -> u32 {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/params_return.leo path: params_return.leo
content: "function x(x: u32, y: i32) -> u32 {\n...\n}" content: "function x(x: u32, y: i32) -> u32 {\n...\n}"

View File

@ -7,9 +7,9 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/return.leo\\\",\\\"content\\\":\\\"function x() -> u32 {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"function x() -> u32 {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/return.leo\\\",\\\"content\\\":\\\"function x() -> u32 {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"function x() -> u32 {\\\"}\"}"
input: [] input: []
output: output:
IntegerType: U32 IntegerType: U32
@ -24,26 +24,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/return.leo path: return.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/return.leo path: return.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 21 col_start: 21
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/return.leo path: return.leo
content: "function x() -> u32 {\n...\n}" content: "function x() -> u32 {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/return.leo path: return.leo
content: "function x() -> u32 {\n...\n}" content: "function x() -> u32 {\n...\n}"

View File

@ -7,9 +7,9 @@ outputs:
imports: [] imports: []
circuits: {} circuits: {}
functions: functions:
"{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/return_tuple.leo\\\",\\\"content\\\":\\\"function x() -> (u32, u32) {\\\"}\"}": "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"return_tuple.leo\\\",\\\"content\\\":\\\"function x() -> (u32, u32) {\\\"}\"}":
annotations: [] annotations: []
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/functions/return_tuple.leo\\\",\\\"content\\\":\\\"function x() -> (u32, u32) {\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"return_tuple.leo\\\",\\\"content\\\":\\\"function x() -> (u32, u32) {\\\"}\"}"
input: [] input: []
output: output:
Tuple: Tuple:
@ -26,26 +26,26 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/return_tuple.leo path: return_tuple.leo
content: " return ();" content: " return ();"
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/functions/return_tuple.leo path: return_tuple.leo
content: " return ();" content: " return ();"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 28 col_start: 28
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/return_tuple.leo path: return_tuple.leo
content: "function x() -> (u32, u32) {\n...\n}" content: "function x() -> (u32, u32) {\n...\n}"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/functions/return_tuple.leo path: return_tuple.leo
content: "function x() -> (u32, u32) {\n...\n}" content: "function x() -> (u32, u32) {\n...\n}"

View File

@ -7,31 +7,31 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/alias.leo\\\",\\\"content\\\":\\\"import a.b as bar;\\\"}\"}" name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"alias.leo\\\",\\\"content\\\":\\\"import a.b as bar;\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/alias.leo\\\",\\\"content\\\":\\\"import a.b as bar;\\\"}\"}" symbol: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"alias.leo\\\",\\\"content\\\":\\\"import a.b as bar;\\\"}\"}"
alias: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":15,\\\"col_stop\\\":18,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/alias.leo\\\",\\\"content\\\":\\\"import a.b as bar;\\\"}\"}" alias: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":15,\\\"col_stop\\\":18,\\\"path\\\":\\\"alias.leo\\\",\\\"content\\\":\\\"import a.b as bar;\\\"}\"}"
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 10 col_start: 10
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/import/alias.leo path: alias.leo
content: import a.b as bar; content: import a.b as bar;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/import/alias.leo path: alias.leo
content: import a.b as bar; content: import a.b as bar;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/import/alias.leo path: alias.leo
content: import a.b as bar; content: import a.b as bar;
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -7,31 +7,31 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/basic.leo\\\",\\\"content\\\":\\\"import a.b;\\\"}\"}" name: "{\"name\":\"a\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"basic.leo\\\",\\\"content\\\":\\\"import a.b;\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/basic.leo\\\",\\\"content\\\":\\\"import a.b;\\\"}\"}" symbol: "{\"name\":\"b\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"basic.leo\\\",\\\"content\\\":\\\"import a.b;\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/import/basic.leo path: basic.leo
content: import a.b; content: import a.b;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/import/basic.leo path: basic.leo
content: import a.b; content: import a.b;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/import/basic.leo path: basic.leo
content: import a.b; content: import a.b;
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -7,129 +7,129 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Packages: Packages:
name: "{\"name\":\"test-import\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\"import test-import.( // local import\\\"}\"}" name: "{\"name\":\"test-import\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\"import test-import.( // local import\\\"}\"}"
accesses: accesses:
- Symbol: - Symbol:
symbol: "{\"name\":\"Point\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" Point,\\\"}\"}" symbol: "{\"name\":\"Point\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":5,\\\"col_stop\\\":10,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" Point,\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 5 col_start: 5
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " Point," content: " Point,"
- Symbol: - Symbol:
symbol: "{\"name\":\"foo\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" foo,\\\"}\"}" symbol: "{\"name\":\"foo\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" foo,\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " foo," content: " foo,"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 8 col_start: 8
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: "import test-import.( // local import\n...\n foo," content: "import test-import.( // local import\n...\n foo,"
span: span:
line_start: 3 line_start: 3
line_stop: 5 line_stop: 5
col_start: 8 col_start: 8
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: "import test-import.( // local import\n...\n foo," content: "import test-import.( // local import\n...\n foo,"
- package_or_packages: - package_or_packages:
Packages: Packages:
name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\"import bar.( // imports directory import\\\"}\"}" name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\"import bar.( // imports directory import\\\"}\"}"
accesses: accesses:
- Symbol: - Symbol:
symbol: "{\"name\":\"Bar\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" Bar,\\\"}\"}" symbol: "{\"name\":\"Bar\",\"span\":\"{\\\"line_start\\\":9,\\\"line_stop\\\":9,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" Bar,\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 9 line_start: 9
line_stop: 9 line_stop: 9
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " Bar," content: " Bar,"
- Multiple: - Multiple:
name: "{\"name\":\"baz\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" baz.(Baz, Bazzar),\\\"}\"}" name: "{\"name\":\"baz\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" baz.(Baz, Bazzar),\\\"}\"}"
accesses: accesses:
- Symbol: - Symbol:
symbol: "{\"name\":\"Baz\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":10,\\\"col_stop\\\":13,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" baz.(Baz, Bazzar),\\\"}\"}" symbol: "{\"name\":\"Baz\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":10,\\\"col_stop\\\":13,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" baz.(Baz, Bazzar),\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 10 line_start: 10
line_stop: 10 line_stop: 10
col_start: 10 col_start: 10
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " baz.(Baz, Bazzar)," content: " baz.(Baz, Bazzar),"
- Symbol: - Symbol:
symbol: "{\"name\":\"Bazzar\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":15,\\\"col_stop\\\":21,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" baz.(Baz, Bazzar),\\\"}\"}" symbol: "{\"name\":\"Bazzar\",\"span\":\"{\\\"line_start\\\":10,\\\"line_stop\\\":10,\\\"col_start\\\":15,\\\"col_stop\\\":21,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" baz.(Baz, Bazzar),\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 10 line_start: 10
line_stop: 10 line_stop: 10
col_start: 15 col_start: 15
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " baz.(Baz, Bazzar)," content: " baz.(Baz, Bazzar),"
span: span:
line_start: 10 line_start: 10
line_stop: 10 line_stop: 10
col_start: 5 col_start: 5
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " baz.(Baz, Bazzar)," content: " baz.(Baz, Bazzar),"
- SubPackage: - SubPackage:
name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" bat.bat.Bat,\\\"}\"}" name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":5,\\\"col_stop\\\":8,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" bat.bat.Bat,\\\"}\"}"
access: access:
SubPackage: SubPackage:
name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":9,\\\"col_stop\\\":12,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" bat.bat.Bat,\\\"}\"}" name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":9,\\\"col_stop\\\":12,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" bat.bat.Bat,\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"Bat\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import.leo\\\",\\\"content\\\":\\\" bat.bat.Bat,\\\"}\"}" symbol: "{\"name\":\"Bat\",\"span\":\"{\\\"line_start\\\":11,\\\"line_stop\\\":11,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"many_import.leo\\\",\\\"content\\\":\\\" bat.bat.Bat,\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 11 line_start: 11
line_stop: 11 line_stop: 11
col_start: 13 col_start: 13
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " bat.bat.Bat," content: " bat.bat.Bat,"
span: span:
line_start: 11 line_start: 11
line_stop: 11 line_stop: 11
col_start: 9 col_start: 9
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " bat.bat.Bat," content: " bat.bat.Bat,"
span: span:
line_start: 11 line_start: 11
line_stop: 11 line_stop: 11
col_start: 5 col_start: 5
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: " bat.bat.Bat," content: " bat.bat.Bat,"
span: span:
line_start: 8 line_start: 8
line_stop: 11 line_stop: 11
col_start: 8 col_start: 8
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: "import bar.( // imports directory import\n...\n bat.bat.Bat," content: "import bar.( // imports directory import\n...\n bat.bat.Bat,"
span: span:
line_start: 8 line_start: 8
line_stop: 11 line_stop: 11
col_start: 8 col_start: 8
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import.leo path: many_import.leo
content: "import bar.( // imports directory import\n...\n bat.bat.Bat," content: "import bar.( // imports directory import\n...\n bat.bat.Bat,"
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -7,158 +7,158 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"test-import\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import test-import.*; // local import\\\"}\"}" name: "{\"name\":\"test-import\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import test-import.*; // local import\\\"}\"}"
access: access:
Star: Star:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 20 col_start: 20
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import test-import.*; // local import content: import test-import.*; // local import
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import test-import.*; // local import content: import test-import.*; // local import
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import test-import.*; // local import content: import test-import.*; // local import
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import bar.*; // imports directory import\\\"}\"}" name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import bar.*; // imports directory import\\\"}\"}"
access: access:
Star: Star:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.*; // imports directory import content: import bar.*; // imports directory import
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 8 col_start: 8
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.*; // imports directory import content: import bar.*; // imports directory import
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 8 col_start: 8
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.*; // imports directory import content: import bar.*; // imports directory import
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import bar.baz.*; // imports directory import\\\"}\"}" name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import bar.baz.*; // imports directory import\\\"}\"}"
access: access:
SubPackage: SubPackage:
name: "{\"name\":\"baz\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":12,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import bar.baz.*; // imports directory import\\\"}\"}" name: "{\"name\":\"baz\",\"span\":\"{\\\"line_start\\\":6,\\\"line_stop\\\":6,\\\"col_start\\\":12,\\\"col_stop\\\":15,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import bar.baz.*; // imports directory import\\\"}\"}"
access: access:
Star: Star:
line_start: 6 line_start: 6
line_stop: 6 line_stop: 6
col_start: 16 col_start: 16
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.baz.*; // imports directory import content: import bar.baz.*; // imports directory import
span: span:
line_start: 6 line_start: 6
line_stop: 6 line_stop: 6
col_start: 12 col_start: 12
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.baz.*; // imports directory import content: import bar.baz.*; // imports directory import
span: span:
line_start: 6 line_start: 6
line_stop: 6 line_stop: 6
col_start: 8 col_start: 8
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.baz.*; // imports directory import content: import bar.baz.*; // imports directory import
span: span:
line_start: 6 line_start: 6
line_stop: 6 line_stop: 6
col_start: 8 col_start: 8
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.baz.*; // imports directory import content: import bar.baz.*; // imports directory import
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import bar.bat.bat.*; // imports directory import\\\"}\"}" name: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import bar.bat.bat.*; // imports directory import\\\"}\"}"
access: access:
SubPackage: SubPackage:
name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":12,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import bar.bat.bat.*; // imports directory import\\\"}\"}" name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":12,\\\"col_stop\\\":15,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import bar.bat.bat.*; // imports directory import\\\"}\"}"
access: access:
SubPackage: SubPackage:
name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":16,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import bar.bat.bat.*; // imports directory import\\\"}\"}" name: "{\"name\":\"bat\",\"span\":\"{\\\"line_start\\\":7,\\\"line_stop\\\":7,\\\"col_start\\\":16,\\\"col_stop\\\":19,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import bar.bat.bat.*; // imports directory import\\\"}\"}"
access: access:
Star: Star:
line_start: 7 line_start: 7
line_stop: 7 line_stop: 7
col_start: 20 col_start: 20
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.bat.bat.*; // imports directory import content: import bar.bat.bat.*; // imports directory import
span: span:
line_start: 7 line_start: 7
line_stop: 7 line_stop: 7
col_start: 16 col_start: 16
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.bat.bat.*; // imports directory import content: import bar.bat.bat.*; // imports directory import
span: span:
line_start: 7 line_start: 7
line_stop: 7 line_stop: 7
col_start: 12 col_start: 12
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.bat.bat.*; // imports directory import content: import bar.bat.bat.*; // imports directory import
span: span:
line_start: 7 line_start: 7
line_stop: 7 line_stop: 7
col_start: 8 col_start: 8
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.bat.bat.*; // imports directory import content: import bar.bat.bat.*; // imports directory import
span: span:
line_start: 7 line_start: 7
line_stop: 7 line_stop: 7
col_start: 8 col_start: 8
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import bar.bat.bat.*; // imports directory import content: import bar.bat.bat.*; // imports directory import
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"car\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo\\\",\\\"content\\\":\\\"import car.*; // imports directory import\\\"}\"}" name: "{\"name\":\"car\",\"span\":\"{\\\"line_start\\\":8,\\\"line_stop\\\":8,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"many_import_star.leo\\\",\\\"content\\\":\\\"import car.*; // imports directory import\\\"}\"}"
access: access:
Star: Star:
line_start: 8 line_start: 8
line_stop: 8 line_stop: 8
col_start: 12 col_start: 12
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import car.*; // imports directory import content: import car.*; // imports directory import
span: span:
line_start: 8 line_start: 8
line_stop: 8 line_stop: 8
col_start: 8 col_start: 8
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import car.*; // imports directory import content: import car.*; // imports directory import
span: span:
line_start: 8 line_start: 8
line_stop: 8 line_stop: 8
col_start: 8 col_start: 8
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/import/many_import_star.leo path: many_import_star.leo
content: import car.*; // imports directory import content: import car.*; // imports directory import
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -7,87 +7,87 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"a0-f\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":12,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names.leo\\\",\\\"content\\\":\\\"import a0-f.foo;\\\"}\"}" name: "{\"name\":\"a0-f\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":12,\\\"path\\\":\\\"names.leo\\\",\\\"content\\\":\\\"import a0-f.foo;\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"foo\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names.leo\\\",\\\"content\\\":\\\"import a0-f.foo;\\\"}\"}" symbol: "{\"name\":\"foo\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":13,\\\"col_stop\\\":16,\\\"path\\\":\\\"names.leo\\\",\\\"content\\\":\\\"import a0-f.foo;\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 13 col_start: 13
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import a0-f.foo; content: import a0-f.foo;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import a0-f.foo; content: import a0-f.foo;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import a0-f.foo; content: import a0-f.foo;
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"a-9\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names.leo\\\",\\\"content\\\":\\\"import a-9.bar;\\\"}\"}" name: "{\"name\":\"a-9\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":8,\\\"col_stop\\\":11,\\\"path\\\":\\\"names.leo\\\",\\\"content\\\":\\\"import a-9.bar;\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":12,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names.leo\\\",\\\"content\\\":\\\"import a-9.bar;\\\"}\"}" symbol: "{\"name\":\"bar\",\"span\":\"{\\\"line_start\\\":4,\\\"line_stop\\\":4,\\\"col_start\\\":12,\\\"col_stop\\\":15,\\\"path\\\":\\\"names.leo\\\",\\\"content\\\":\\\"import a-9.bar;\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 12 col_start: 12
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import a-9.bar; content: import a-9.bar;
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 8 col_start: 8
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import a-9.bar; content: import a-9.bar;
span: span:
line_start: 4 line_start: 4
line_stop: 4 line_stop: 4
col_start: 8 col_start: 8
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import a-9.bar; content: import a-9.bar;
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"hello-world\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names.leo\\\",\\\"content\\\":\\\"import hello-world.hello;\\\"}\"}" name: "{\"name\":\"hello-world\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"names.leo\\\",\\\"content\\\":\\\"import hello-world.hello;\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"hello\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":20,\\\"col_stop\\\":25,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names.leo\\\",\\\"content\\\":\\\"import hello-world.hello;\\\"}\"}" symbol: "{\"name\":\"hello\",\"span\":\"{\\\"line_start\\\":5,\\\"line_stop\\\":5,\\\"col_start\\\":20,\\\"col_stop\\\":25,\\\"path\\\":\\\"names.leo\\\",\\\"content\\\":\\\"import hello-world.hello;\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 20 col_start: 20
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import hello-world.hello; content: import hello-world.hello;
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 8 col_start: 8
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import hello-world.hello; content: import hello-world.hello;
span: span:
line_start: 5 line_start: 5
line_stop: 5 line_stop: 5
col_start: 8 col_start: 8
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/import/names.leo path: names.leo
content: import hello-world.hello; content: import hello-world.hello;
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -7,31 +7,31 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"hello_world\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names_underscore.leo\\\",\\\"content\\\":\\\"import hello_world.foo;\\\"}\"}" name: "{\"name\":\"hello_world\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"names_underscore.leo\\\",\\\"content\\\":\\\"import hello_world.foo;\\\"}\"}"
access: access:
Symbol: Symbol:
symbol: "{\"name\":\"foo\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":23,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/names_underscore.leo\\\",\\\"content\\\":\\\"import hello_world.foo;\\\"}\"}" symbol: "{\"name\":\"foo\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":20,\\\"col_stop\\\":23,\\\"path\\\":\\\"names_underscore.leo\\\",\\\"content\\\":\\\"import hello_world.foo;\\\"}\"}"
alias: ~ alias: ~
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 20 col_start: 20
col_stop: 23 col_stop: 23
path: /home/p/aleo/leo/parser/../tests/parser/import/names_underscore.leo path: names_underscore.leo
content: import hello_world.foo; content: import hello_world.foo;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 23 col_stop: 23
path: /home/p/aleo/leo/parser/../tests/parser/import/names_underscore.leo path: names_underscore.leo
content: import hello_world.foo; content: import hello_world.foo;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 23 col_stop: 23
path: /home/p/aleo/leo/parser/../tests/parser/import/names_underscore.leo path: names_underscore.leo
content: import hello_world.foo; content: import hello_world.foo;
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -7,28 +7,28 @@ outputs:
imports: imports:
- package_or_packages: - package_or_packages:
Package: Package:
name: "{\"name\":\"test-import\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/import/star.leo\\\",\\\"content\\\":\\\"import test-import.*;\\\"}\"}" name: "{\"name\":\"test-import\",\"span\":\"{\\\"line_start\\\":3,\\\"line_stop\\\":3,\\\"col_start\\\":8,\\\"col_stop\\\":19,\\\"path\\\":\\\"star.leo\\\",\\\"content\\\":\\\"import test-import.*;\\\"}\"}"
access: access:
Star: Star:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 20 col_start: 20
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/star.leo path: star.leo
content: import test-import.*; content: import test-import.*;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/star.leo path: star.leo
content: import test-import.*; content: import test-import.*;
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 21 col_stop: 21
path: /home/p/aleo/leo/parser/../tests/parser/import/star.leo path: star.leo
content: import test-import.*; content: import test-import.*;
circuits: {} circuits: {}
functions: {} functions: {}

View File

@ -5,35 +5,35 @@ outputs:
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = expr;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = expr;\\\"}\"}"
accesses: [] accesses: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = expr; content: x = expr;
value: value:
Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = expr;\\\"}\"}" Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":9,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = expr;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = expr; content: x = expr;
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = ();\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = ();\\\"}\"}"
accesses: [] accesses: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = (); content: x = ();
value: value:
TupleInit: TupleInit:
@ -43,114 +43,114 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = (); content: x = ();
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = (); content: x = ();
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}"
accesses: [] accesses: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = x+y; content: x = x+y;
value: value:
Binary: Binary:
left: left:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}"
right: right:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = x+y;\\\"}\"}"
op: Add op: Add
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = x+y; content: x = x+y;
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = x+y; content: x = x+y;
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = (x,y);\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = (x,y);\\\"}\"}"
accesses: [] accesses: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x = (x,y);" content: "x = (x,y);"
value: value:
TupleInit: TupleInit:
elements: elements:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = (x,y);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = (x,y);\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = (x,y);\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = (x,y);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x = (x,y);" content: "x = (x,y);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x = (x,y);" content: "x = (x,y);"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = x();\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = x();\\\"}\"}"
accesses: [] accesses: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = x(); content: x = x();
value: value:
Call: Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x = x();\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x = x();\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = x(); content: x = x();
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x = x(); content: x = x();
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[0] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[0] = y;\\\"}\"}"
accesses: accesses:
- ArrayIndex: - ArrayIndex:
Value: Value:
@ -160,28 +160,28 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[0] = y;" content: "x[0] = y;"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[0] = y;" content: "x[0] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[0] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[0] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 9 col_stop: 9
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[0] = y;" content: "x[0] = y;"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[0u32] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[0u32] = y;\\\"}\"}"
accesses: accesses:
- ArrayIndex: - ArrayIndex:
Value: Value:
@ -192,28 +192,28 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[0u32] = y;" content: "x[0u32] = y;"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[0u32] = y;" content: "x[0u32] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[0u32] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[0u32] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[0u32] = y;" content: "x[0u32] = y;"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x.0 = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x.0 = y;\\\"}\"}"
accesses: accesses:
- Tuple: - Tuple:
- value: "0" - value: "0"
@ -221,28 +221,28 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x.0 = y; content: x.0 = y;
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x.0 = y; content: x.0 = y;
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x.0 = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":7,\\\"col_stop\\\":8,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x.0 = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: x.0 = y; content: x.0 = y;
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[1..2] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[1..2] = y;\\\"}\"}"
accesses: accesses:
- ArrayRange: - ArrayRange:
- Value: - Value:
@ -252,7 +252,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[1..2] = y;" content: "x[1..2] = y;"
- Value: - Value:
Implicit: Implicit:
@ -261,28 +261,28 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 6 col_start: 6
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[1..2] = y;" content: "x[1..2] = y;"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 8 col_stop: 8
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[1..2] = y;" content: "x[1..2] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[1..2] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[1..2] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[1..2] = y;" content: "x[1..2] = y;"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[..2] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[..2] = y;\\\"}\"}"
accesses: accesses:
- ArrayRange: - ArrayRange:
- ~ - ~
@ -293,28 +293,28 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[..2] = y;" content: "x[..2] = y;"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[..2] = y;" content: "x[..2] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[..2] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[..2] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[..2] = y;" content: "x[..2] = y;"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[2..] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[2..] = y;\\\"}\"}"
accesses: accesses:
- ArrayRange: - ArrayRange:
- Value: - Value:
@ -324,7 +324,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 3 col_start: 3
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[2..] = y;" content: "x[2..] = y;"
- ~ - ~
span: span:
@ -332,21 +332,21 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[2..] = y;" content: "x[2..] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[2..] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[2..] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[2..] = y;" content: "x[2..] = y;"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[..] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[..] = y;\\\"}\"}"
accesses: accesses:
- ArrayRange: - ArrayRange:
- ~ - ~
@ -356,21 +356,21 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[..] = y;" content: "x[..] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x[..] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x[..] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x[..] = y;" content: "x[..] = y;"
- Assign: - Assign:
operation: Assign operation: Assign
assignee: assignee:
identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x.0[0][..] = y;\\\"}\"}" identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x.0[0][..] = y;\\\"}\"}"
accesses: accesses:
- Tuple: - Tuple:
- value: "0" - value: "0"
@ -378,7 +378,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x.0[0][..] = y;" content: "x.0[0][..] = y;"
- ArrayIndex: - ArrayIndex:
Value: Value:
@ -388,7 +388,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 5 col_start: 5
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x.0[0][..] = y;" content: "x.0[0][..] = y;"
- ArrayRange: - ArrayRange:
- ~ - ~
@ -398,14 +398,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x.0[0][..] = y;" content: "x.0[0][..] = y;"
value: value:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/assign.leo\\\",\\\"content\\\":\\\"x.0[0][..] = y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":14,\\\"col_stop\\\":15,\\\"path\\\":\\\"assign.leo\\\",\\\"content\\\":\\\"x.0[0][..] = y;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 15 col_stop: 15
path: /home/p/aleo/leo/parser/../tests/parser/statement/assign.leo path: assign.leo
content: "x.0[0][..] = y;" content: "x.0[0][..] = y;"

View File

@ -9,7 +9,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{}" content: "{}"
- Block: - Block:
statements: statements:
@ -22,21 +22,21 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{\n...\n}" content: "{\n...\n}"
- Block: - Block:
statements: statements:
@ -47,14 +47,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 2 col_start: 2
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{{}}" content: "{{}}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{{}}" content: "{{}}"
- Block: - Block:
statements: statements:
@ -69,34 +69,34 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: return (); content: return ();
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 4 line_stop: 4
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{\n...\n}" content: "{\n...\n}"
span: span:
line_start: 1 line_start: 1
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{\n...\n}" content: "{\n...\n}"
- Block: - Block:
statements: statements:
- Conditional: - Conditional:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":2,\\\"line_stop\\\":2,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/block.leo\\\",\\\"content\\\":\\\"if x {\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":2,\\\"line_stop\\\":2,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"block.leo\\\",\\\"content\\\":\\\"if x {\\\"}\"}"
block: block:
statements: statements:
- Return: - Return:
@ -108,21 +108,21 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: return (); content: return ();
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 4 line_stop: 4
col_start: 6 col_start: 6
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "if x {\n...\n}" content: "if x {\n...\n}"
next: ~ next: ~
span: span:
@ -130,12 +130,12 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "if x {\n...\n}" content: "if x {\n...\n}"
span: span:
line_start: 1 line_start: 1
line_stop: 5 line_stop: 5
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/block.leo path: block.leo
content: "{\n...\n}" content: "{\n...\n}"

View File

@ -4,7 +4,7 @@ expectation: Pass
outputs: outputs:
- Conditional: - Conditional:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if x {\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if x {\\\"}\"}"
block: block:
statements: statements:
- Return: - Return:
@ -16,21 +16,21 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 6 col_start: 6
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x {\n...\n}" content: "if x {\n...\n}"
next: ~ next: ~
span: span:
@ -38,11 +38,11 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x {\n...\n}" content: "if x {\n...\n}"
- Conditional: - Conditional:
condition: condition:
Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":8,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if Self {\\\"}\"}" Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":8,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if Self {\\\"}\"}"
block: block:
statements: statements:
- Return: - Return:
@ -54,21 +54,21 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 9 col_start: 9
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if Self {\n...\n}" content: "if Self {\n...\n}"
next: ~ next: ~
span: span:
@ -76,11 +76,11 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if Self {\n...\n}" content: "if Self {\n...\n}"
- Conditional: - Conditional:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if (x) {\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if (x) {\\\"}\"}"
block: block:
statements: statements:
- Return: - Return:
@ -92,21 +92,21 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if (x) {\n...\n}" content: "if (x) {\n...\n}"
next: ~ next: ~
span: span:
@ -114,11 +114,11 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if (x) {\n...\n}" content: "if (x) {\n...\n}"
- Conditional: - Conditional:
condition: condition:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if (x) {}\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if (x) {}\\\"}\"}"
block: block:
statements: [] statements: []
span: span:
@ -126,7 +126,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if (x) {}" content: "if (x) {}"
next: ~ next: ~
span: span:
@ -134,22 +134,22 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if (x) {}" content: "if (x) {}"
- Conditional: - Conditional:
condition: condition:
Binary: Binary:
left: left:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if x+y {}\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if x+y {}\\\"}\"}"
right: right:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if x+y {}\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if x+y {}\\\"}\"}"
op: Add op: Add
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x+y {}" content: "if x+y {}"
block: block:
statements: [] statements: []
@ -158,7 +158,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x+y {}" content: "if x+y {}"
next: ~ next: ~
span: span:
@ -166,34 +166,34 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x+y {}" content: "if x+y {}"
- Conditional: - Conditional:
condition: condition:
Binary: Binary:
left: left:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if x+y {\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if x+y {\\\"}\"}"
right: right:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"if x+y {\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":6,\\\"col_stop\\\":7,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"if x+y {\\\"}\"}"
op: Add op: Add
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 4 col_start: 4
col_stop: 7 col_stop: 7
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x+y {" content: "if x+y {"
block: block:
statements: statements:
- Expression: - Expression:
expression: expression:
Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":2,\\\"line_stop\\\":2,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo\\\",\\\"content\\\":\\\"expr;\\\"}\"}" Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":2,\\\"line_stop\\\":2,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"conditional.leo\\\",\\\"content\\\":\\\"expr;\\\"}\"}"
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: expr; content: expr;
- Return: - Return:
expression: expression:
@ -204,21 +204,21 @@ outputs:
line_stop: 3 line_stop: 3
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 3 line_start: 3
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 4 line_stop: 4
col_start: 8 col_start: 8
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x+y {\n...\n}" content: "if x+y {\n...\n}"
next: ~ next: ~
span: span:
@ -226,5 +226,5 @@ outputs:
line_stop: 4 line_stop: 4
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/conditional.leo path: conditional.leo
content: "if x+y {\n...\n}\n" content: "if x+y {\n...\n}\n"

View File

@ -5,13 +5,13 @@ outputs:
- Console: - Console:
function: function:
Assert: Assert:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.assert(x);\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":16,\\\"col_stop\\\":17,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.assert(x);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: console.assert(x); content: console.assert(x);
- Console: - Console:
function: function:
@ -19,20 +19,20 @@ outputs:
parts: parts:
- Container - Container
parameters: parameters:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}\\\\\\\", x);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}\\\\\\\", x);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.error(\"{}\", x);" content: "console.error(\"{}\", x);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.error(\"{}\", x);" content: "console.error(\"{}\", x);"
- Console: - Console:
function: function:
@ -41,21 +41,21 @@ outputs:
- Container - Container
- Container - Container
parameters: parameters:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":23,\\\"col_stop\\\":24,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":23,\\\"col_stop\\\":24,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.error(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 27 col_stop: 27
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.error(\"{}{}\", x, y);" content: "console.error(\"{}{}\", x, y);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 27 col_stop: 27
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.error(\"{}{}\", x, y);" content: "console.error(\"{}{}\", x, y);"
- Console: - Console:
function: function:
@ -68,14 +68,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.error(\"x\");" content: "console.error(\"x\");"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.error(\"x\");" content: "console.error(\"x\");"
- Console: - Console:
function: function:
@ -83,20 +83,20 @@ outputs:
parts: parts:
- Container - Container
parameters: parameters:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.debug(\\\\\\\"{}\\\\\\\", x);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.debug(\\\\\\\"{}\\\\\\\", x);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.debug(\"{}\", x);" content: "console.debug(\"{}\", x);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 22 col_stop: 22
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.debug(\"{}\", x);" content: "console.debug(\"{}\", x);"
- Console: - Console:
function: function:
@ -105,21 +105,21 @@ outputs:
- Container - Container
- Container - Container
parameters: parameters:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":23,\\\"col_stop\\\":24,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.debug(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":23,\\\"col_stop\\\":24,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.debug(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.debug(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":26,\\\"col_stop\\\":27,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.debug(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 27 col_stop: 27
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.debug(\"{}{}\", x, y);" content: "console.debug(\"{}{}\", x, y);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 27 col_stop: 27
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.debug(\"{}{}\", x, y);" content: "console.debug(\"{}{}\", x, y);"
- Console: - Console:
function: function:
@ -132,14 +132,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.debug(\"x\");" content: "console.debug(\"x\");"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 18 col_stop: 18
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.debug(\"x\");" content: "console.debug(\"x\");"
- Console: - Console:
function: function:
@ -147,20 +147,20 @@ outputs:
parts: parts:
- Container - Container
parameters: parameters:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}\\\\\\\", x);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":19,\\\"col_stop\\\":20,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}\\\\\\\", x);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.log(\"{}\", x);" content: "console.log(\"{}\", x);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 20 col_stop: 20
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.log(\"{}\", x);" content: "console.log(\"{}\", x);"
- Console: - Console:
function: function:
@ -169,21 +169,21 @@ outputs:
- Container - Container
- Container - Container
parameters: parameters:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":21,\\\"col_stop\\\":22,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":24,\\\"col_stop\\\":25,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/console.leo\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":24,\\\"col_stop\\\":25,\\\"path\\\":\\\"console.leo\\\",\\\"content\\\":\\\"console.log(\\\\\\\"{}{}\\\\\\\", x, y);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.log(\"{}{}\", x, y);" content: "console.log(\"{}{}\", x, y);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 25 col_stop: 25
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.log(\"{}{}\", x, y);" content: "console.log(\"{}{}\", x, y);"
- Console: - Console:
function: function:
@ -196,12 +196,12 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.log(\"x\");" content: "console.log(\"x\");"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 16 col_stop: 16
path: /home/p/aleo/leo/parser/../tests/parser/statement/console.leo path: console.leo
content: "console.log(\"x\");" content: "console.log(\"x\");"

File diff suppressed because it is too large Load Diff

View File

@ -4,13 +4,13 @@ expectation: Pass
outputs: outputs:
- Expression: - Expression:
expression: expression:
Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/expression.leo\\\",\\\"content\\\":\\\"expr;\\\"}\"}" Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":5,\\\"path\\\":\\\"expression.leo\\\",\\\"content\\\":\\\"expr;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 5 col_stop: 5
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: expr; content: expr;
- Expression: - Expression:
expression: expression:
@ -21,74 +21,74 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: (); content: ();
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 3 col_stop: 3
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: (); content: ();
- Expression: - Expression:
expression: expression:
Binary: Binary:
left: left:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/expression.leo\\\",\\\"content\\\":\\\"x+y;\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"expression.leo\\\",\\\"content\\\":\\\"x+y;\\\"}\"}"
right: right:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/expression.leo\\\",\\\"content\\\":\\\"x+y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":3,\\\"col_stop\\\":4,\\\"path\\\":\\\"expression.leo\\\",\\\"content\\\":\\\"x+y;\\\"}\"}"
op: Add op: Add
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: x+y; content: x+y;
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: x+y; content: x+y;
- Expression: - Expression:
expression: expression:
TupleInit: TupleInit:
elements: elements:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/expression.leo\\\",\\\"content\\\":\\\"(x,y);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":2,\\\"col_stop\\\":3,\\\"path\\\":\\\"expression.leo\\\",\\\"content\\\":\\\"(x,y);\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/expression.leo\\\",\\\"content\\\":\\\"(x,y);\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":4,\\\"col_stop\\\":5,\\\"path\\\":\\\"expression.leo\\\",\\\"content\\\":\\\"(x,y);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: "(x,y);" content: "(x,y);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 6 col_stop: 6
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: "(x,y);" content: "(x,y);"
- Expression: - Expression:
expression: expression:
Call: Call:
function: function:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/expression.leo\\\",\\\"content\\\":\\\"x();\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":1,\\\"col_stop\\\":2,\\\"path\\\":\\\"expression.leo\\\",\\\"content\\\":\\\"x();\\\"}\"}"
arguments: [] arguments: []
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: x(); content: x();
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 4 col_stop: 4
path: /home/p/aleo/leo/parser/../tests/parser/statement/expression.leo path: expression.leo
content: x(); content: x();

View File

@ -3,7 +3,7 @@ ns: ParseStatement
expectation: Pass expectation: Pass
outputs: outputs:
- Iteration: - Iteration:
variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo\\\",\\\"content\\\":\\\"for x in 0..7 {}\\\"}\"}" variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"iteration.leo\\\",\\\"content\\\":\\\"for x in 0..7 {}\\\"}\"}"
start: start:
Value: Value:
Implicit: Implicit:
@ -12,7 +12,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {}" content: "for x in 0..7 {}"
stop: stop:
Value: Value:
@ -22,7 +22,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {}" content: "for x in 0..7 {}"
block: block:
statements: [] statements: []
@ -31,17 +31,17 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 15 col_start: 15
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {}" content: "for x in 0..7 {}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {}" content: "for x in 0..7 {}"
- Iteration: - Iteration:
variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo\\\",\\\"content\\\":\\\"for x in 0..7 {\\\"}\"}" variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"iteration.leo\\\",\\\"content\\\":\\\"for x in 0..7 {\\\"}\"}"
start: start:
Value: Value:
Implicit: Implicit:
@ -50,7 +50,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {" content: "for x in 0..7 {"
stop: stop:
Value: Value:
@ -60,7 +60,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 14 col_stop: 14
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {" content: "for x in 0..7 {"
block: block:
statements: statements:
@ -73,31 +73,31 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 15 col_start: 15
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {\n...\n}" content: "for x in 0..7 {\n...\n}"
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..7 {\n...\n}" content: "for x in 0..7 {\n...\n}"
- Iteration: - Iteration:
variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo\\\",\\\"content\\\":\\\"for x in 0..99u8 {\\\"}\"}" variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"iteration.leo\\\",\\\"content\\\":\\\"for x in 0..99u8 {\\\"}\"}"
start: start:
Value: Value:
Implicit: Implicit:
@ -106,7 +106,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..99u8 {" content: "for x in 0..99u8 {"
stop: stop:
Value: Value:
@ -117,7 +117,7 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 13 col_start: 13
col_stop: 17 col_stop: 17
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..99u8 {" content: "for x in 0..99u8 {"
block: block:
statements: statements:
@ -130,31 +130,31 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 18 col_start: 18
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..99u8 {\n...\n}" content: "for x in 0..99u8 {\n...\n}"
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..99u8 {\n...\n}" content: "for x in 0..99u8 {\n...\n}"
- Iteration: - Iteration:
variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo\\\",\\\"content\\\":\\\"for x in 0..Self {\\\"}\"}" variable: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":5,\\\"col_stop\\\":6,\\\"path\\\":\\\"iteration.leo\\\",\\\"content\\\":\\\"for x in 0..Self {\\\"}\"}"
start: start:
Value: Value:
Implicit: Implicit:
@ -163,10 +163,10 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 10 col_start: 10
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..Self {" content: "for x in 0..Self {"
stop: stop:
Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo\\\",\\\"content\\\":\\\"for x in 0..Self {\\\"}\"}" Identifier: "{\"name\":\"Self\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":13,\\\"col_stop\\\":17,\\\"path\\\":\\\"iteration.leo\\\",\\\"content\\\":\\\"for x in 0..Self {\\\"}\"}"
block: block:
statements: statements:
- Return: - Return:
@ -178,26 +178,26 @@ outputs:
line_stop: 2 line_stop: 2
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: return (); content: return ();
span: span:
line_start: 2 line_start: 2
line_stop: 2 line_stop: 2
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 18 col_start: 18
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..Self {\n...\n}" content: "for x in 0..Self {\n...\n}"
span: span:
line_start: 1 line_start: 1
line_stop: 3 line_stop: 3
col_start: 1 col_start: 1
col_stop: 2 col_stop: 2
path: /home/p/aleo/leo/parser/../tests/parser/statement/iteration.leo path: iteration.leo
content: "for x in 0..Self {\n...\n}" content: "for x in 0..Self {\n...\n}"

View File

@ -4,13 +4,13 @@ expectation: Pass
outputs: outputs:
- Return: - Return:
expression: expression:
Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":12,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/return.leo\\\",\\\"content\\\":\\\"return expr;\\\"}\"}" Identifier: "{\"name\":\"expr\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":12,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"return expr;\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 12 col_stop: 12
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return expr; content: return expr;
- Return: - Return:
expression: expression:
@ -21,14 +21,14 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return (); content: return ();
- Return: - Return:
expression: expression:
@ -39,54 +39,54 @@ outputs:
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return (); content: return ();
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 10 col_stop: 10
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return (); content: return ();
- Return: - Return:
expression: expression:
Binary: Binary:
left: left:
Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/return.leo\\\",\\\"content\\\":\\\"return x+y;\\\"}\"}" Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":8,\\\"col_stop\\\":9,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"return x+y;\\\"}\"}"
right: right:
Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/return.leo\\\",\\\"content\\\":\\\"return x+y;\\\"}\"}" Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":10,\\\"col_stop\\\":11,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"return x+y;\\\"}\"}"
op: Add op: Add
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return x+y; content: return x+y;
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 11 col_stop: 11
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: return x+y; content: return x+y;
- Return: - Return:
expression: expression:
TupleInit: TupleInit:
elements: elements:
- Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/return.leo\\\",\\\"content\\\":\\\"return (x,y);\\\"}\"}" - Identifier: "{\"name\":\"x\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":9,\\\"col_stop\\\":10,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"return (x,y);\\\"}\"}"
- Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"/home/p/aleo/leo/parser/../tests/parser/statement/return.leo\\\",\\\"content\\\":\\\"return (x,y);\\\"}\"}" - Identifier: "{\"name\":\"y\",\"span\":\"{\\\"line_start\\\":1,\\\"line_stop\\\":1,\\\"col_start\\\":11,\\\"col_stop\\\":12,\\\"path\\\":\\\"return.leo\\\",\\\"content\\\":\\\"return (x,y);\\\"}\"}"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 8 col_start: 8
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: "return (x,y);" content: "return (x,y);"
span: span:
line_start: 1 line_start: 1
line_stop: 1 line_stop: 1
col_start: 1 col_start: 1
col_stop: 13 col_stop: 13
path: /home/p/aleo/leo/parser/../tests/parser/statement/return.leo path: return.leo
content: "return (x,y);" content: "return (x,y);"