From c481f19fa7785271da96e1df44d81e5604d803a1 Mon Sep 17 00:00:00 2001 From: howardwu Date: Mon, 1 Feb 2021 20:15:57 -0800 Subject: [PATCH 1/4] Update clippy logic --- .github/workflows/ci.yml | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab07ada1dc..5438f6d441 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,21 +39,15 @@ jobs: runs-on: ubuntu-latest env: RUSTFLAGS: -Dwarnings - strategy: - matrix: - rust: - - stable -# - nightly - steps: - name: Checkout uses: actions/checkout@v2 - - name: Install Rust (${{ matrix.rust }}) + - name: Install Rust uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.rust }} + toolchain: stable override: true components: clippy @@ -68,14 +62,12 @@ jobs: with: command: clippy args: --examples --all-features --all - if: matrix.rust == 'stable' -# - name: Check benchmarks on nightly -# uses: actions-rs/cargo@v1 -# with: -# command: clippy -# args: --all-features --examples --all --benches -# if: matrix.rust == 'nightly' + - name: Check benchmarks on nightly + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --all-features --examples --all --benches test: name: Test From c935d6a48612763a849e370e4b0eed97cccc404c Mon Sep 17 00:00:00 2001 From: howardwu Date: Mon, 1 Feb 2021 20:26:56 -0800 Subject: [PATCH 2/4] Update license to 2021 --- .licenserc.json | 2 +- .resources/license_header | 2 +- asg/src/checks/mod.rs | 2 +- asg/src/checks/return_path.rs | 2 +- asg/src/const_value.rs | 2 +- asg/src/error/mod.rs | 2 +- asg/src/expression/array_access.rs | 2 +- asg/src/expression/array_init.rs | 2 +- asg/src/expression/array_inline.rs | 2 +- asg/src/expression/array_range_access.rs | 2 +- asg/src/expression/binary.rs | 2 +- asg/src/expression/call.rs | 2 +- asg/src/expression/circuit_access.rs | 4 ++-- asg/src/expression/circuit_init.rs | 2 +- asg/src/expression/constant.rs | 2 +- asg/src/expression/mod.rs | 2 +- asg/src/expression/ternary.rs | 2 +- asg/src/expression/tuple_access.rs | 2 +- asg/src/expression/tuple_init.rs | 2 +- asg/src/expression/unary.rs | 2 +- asg/src/expression/variable_ref.rs | 2 +- asg/src/import.rs | 2 +- asg/src/input.rs | 2 +- asg/src/lib.rs | 2 +- asg/src/node.rs | 2 +- asg/src/prelude.rs | 2 +- asg/src/program/circuit.rs | 2 +- asg/src/program/function.rs | 2 +- asg/src/program/mod.rs | 2 +- asg/src/reducer/mod.rs | 2 +- asg/src/reducer/monoid/bool_and.rs | 2 +- asg/src/reducer/monoid/mod.rs | 2 +- asg/src/reducer/monoid/set_append.rs | 2 +- asg/src/reducer/monoid/vec_append.rs | 2 +- asg/src/reducer/monoidal_director.rs | 2 +- asg/src/reducer/monoidal_reducer.rs | 2 +- asg/src/scope.rs | 2 +- asg/src/statement/assign.rs | 2 +- asg/src/statement/block.rs | 2 +- asg/src/statement/conditional.rs | 2 +- asg/src/statement/console.rs | 2 +- asg/src/statement/definition.rs | 2 +- asg/src/statement/expression.rs | 2 +- asg/src/statement/iteration.rs | 2 +- asg/src/statement/mod.rs | 2 +- asg/src/statement/return_.rs | 2 +- asg/src/type_.rs | 2 +- asg/src/variable.rs | 2 +- asg/tests/fail/address/mod.rs | 4 ++-- asg/tests/fail/array/mod.rs | 4 ++-- asg/tests/fail/boolean/mod.rs | 4 ++-- asg/tests/fail/circuits/mod.rs | 4 ++-- asg/tests/fail/console/mod.rs | 4 ++-- asg/tests/fail/core/mod.rs | 4 ++-- asg/tests/fail/definition/mod.rs | 4 ++-- asg/tests/fail/field/mod.rs | 4 ++-- asg/tests/fail/function/mod.rs | 4 ++-- asg/tests/fail/group/mod.rs | 5 ++--- asg/tests/fail/import/mod.rs | 4 ++-- asg/tests/fail/integers/i128/mod.rs | 4 ++-- asg/tests/fail/integers/i16/mod.rs | 4 ++-- asg/tests/fail/integers/i32/mod.rs | 4 ++-- asg/tests/fail/integers/i64/mod.rs | 4 ++-- asg/tests/fail/integers/i8/mod.rs | 4 ++-- asg/tests/fail/integers/int_macro.rs | 4 ++-- asg/tests/fail/integers/integer_tester.rs | 4 ++-- asg/tests/fail/integers/mod.rs | 4 ++-- asg/tests/fail/integers/u128/mod.rs | 4 ++-- asg/tests/fail/integers/u16/mod.rs | 4 ++-- asg/tests/fail/integers/u32/mod.rs | 4 ++-- asg/tests/fail/integers/u64/mod.rs | 4 ++-- asg/tests/fail/integers/u8/mod.rs | 4 ++-- asg/tests/fail/integers/uint_macro.rs | 4 ++-- asg/tests/fail/mod.rs | 4 ++-- asg/tests/fail/mutability/mod.rs | 4 ++-- asg/tests/fail/statements/mod.rs | 4 ++-- asg/tests/fail/tuples/mod.rs | 4 ++-- asg/tests/mod.rs | 2 +- asg/tests/pass/address/mod.rs | 4 ++-- asg/tests/pass/array/mod.rs | 4 ++-- asg/tests/pass/boolean/mod.rs | 4 ++-- asg/tests/pass/circuits/mod.rs | 4 ++-- asg/tests/pass/console/mod.rs | 4 ++-- asg/tests/pass/core/mod.rs | 4 ++-- asg/tests/pass/definition/mod.rs | 4 ++-- asg/tests/pass/field/mod.rs | 4 ++-- asg/tests/pass/form_ast.rs | 2 +- asg/tests/pass/function/mod.rs | 4 ++-- asg/tests/pass/group/mod.rs | 4 ++-- asg/tests/pass/import/mod.rs | 4 ++-- asg/tests/pass/input_files/mod.rs | 4 ++-- asg/tests/pass/input_files/program_input/mod.rs | 4 ++-- .../program_input_and_program_state/mod.rs | 4 ++-- asg/tests/pass/input_files/program_state/mod.rs | 4 ++-- asg/tests/pass/integers/i128/mod.rs | 4 ++-- asg/tests/pass/integers/i16/mod.rs | 4 ++-- asg/tests/pass/integers/i32/mod.rs | 4 ++-- asg/tests/pass/integers/i64/mod.rs | 4 ++-- asg/tests/pass/integers/i8/mod.rs | 4 ++-- asg/tests/pass/integers/int_macro.rs | 4 ++-- asg/tests/pass/integers/integer_tester.rs | 4 ++-- asg/tests/pass/integers/mod.rs | 4 ++-- asg/tests/pass/integers/u128/mod.rs | 4 ++-- asg/tests/pass/integers/u16/mod.rs | 4 ++-- asg/tests/pass/integers/u32/mod.rs | 4 ++-- asg/tests/pass/integers/u64/mod.rs | 4 ++-- asg/tests/pass/integers/u8/mod.rs | 4 ++-- asg/tests/pass/integers/uint_macro.rs | 4 ++-- asg/tests/pass/mod.rs | 4 ++-- asg/tests/pass/mutability/mod.rs | 4 ++-- asg/tests/pass/statements/conditional/mod.rs | 4 ++-- asg/tests/pass/statements/mod.rs | 4 ++-- asg/tests/pass/tuples/mod.rs | 4 ++-- ast/benches/leo_ast.rs | 2 +- ast/src/annotation.rs | 2 +- ast/src/circuits/circuit.rs | 2 +- ast/src/circuits/circuit_member.rs | 2 +- ast/src/circuits/circuit_variable_definition.rs | 2 +- ast/src/circuits/mod.rs | 2 +- ast/src/common/array_dimensions.rs | 2 +- ast/src/common/identifier.rs | 2 +- ast/src/common/input_keyword.rs | 2 +- ast/src/common/mod.rs | 2 +- ast/src/common/mut_self_keyword.rs | 2 +- ast/src/common/positive_number.rs | 2 +- ast/src/common/self_keyword.rs | 2 +- ast/src/common/span.rs | 2 +- ast/src/common/spread_or_expression.rs | 2 +- ast/src/errors/deprecated.rs | 2 +- ast/src/errors/error.rs | 2 +- ast/src/errors/mod.rs | 2 +- ast/src/expression/array_access.rs | 2 +- ast/src/expression/array_init.rs | 2 +- ast/src/expression/array_inline.rs | 2 +- ast/src/expression/array_range_access.rs | 2 +- ast/src/expression/binary.rs | 2 +- ast/src/expression/call.rs | 2 +- ast/src/expression/circuit_init.rs | 2 +- ast/src/expression/circuit_member_access.rs | 2 +- ast/src/expression/circuit_static_function_access.rs | 2 +- ast/src/expression/mod.rs | 2 +- ast/src/expression/ternary.rs | 2 +- ast/src/expression/tuple_access.rs | 2 +- ast/src/expression/tuple_init.rs | 2 +- ast/src/expression/unary.rs | 2 +- ast/src/expression/value.rs | 2 +- ast/src/functions/function.rs | 2 +- ast/src/functions/input/function_input.rs | 2 +- ast/src/functions/input/input_variable.rs | 2 +- ast/src/functions/input/mod.rs | 2 +- ast/src/functions/mod.rs | 2 +- ast/src/functions/test_function.rs | 2 +- ast/src/groups/group_coordinate.rs | 2 +- ast/src/groups/group_value.rs | 2 +- ast/src/groups/mod.rs | 2 +- ast/src/imports/import.rs | 2 +- ast/src/imports/import_symbol.rs | 2 +- ast/src/imports/mod.rs | 2 +- ast/src/imports/package.rs | 2 +- ast/src/imports/package_access.rs | 2 +- ast/src/input/input.rs | 2 +- ast/src/input/input_value.rs | 2 +- ast/src/input/macros.rs | 2 +- ast/src/input/mod.rs | 2 +- ast/src/input/parameters/mod.rs | 2 +- ast/src/input/parameters/parameter.rs | 2 +- ast/src/input/program_input/main_input.rs | 2 +- ast/src/input/program_input/mod.rs | 2 +- ast/src/input/program_input/program_input.rs | 2 +- ast/src/input/program_input/registers.rs | 2 +- ast/src/input/program_state/mod.rs | 2 +- ast/src/input/program_state/private_state/mod.rs | 2 +- .../program_state/private_state/private_state.rs | 2 +- ast/src/input/program_state/private_state/record.rs | 2 +- .../input/program_state/private_state/state_leaf.rs | 2 +- ast/src/input/program_state/program_state.rs | 2 +- ast/src/input/program_state/public_state/mod.rs | 2 +- .../input/program_state/public_state/public_state.rs | 2 +- ast/src/input/program_state/public_state/state.rs | 2 +- ast/src/lib.rs | 2 +- ast/src/main.rs | 2 +- ast/src/node.rs | 2 +- ast/src/program.rs | 2 +- ast/src/statements/assign/assignee.rs | 2 +- ast/src/statements/assign/mod.rs | 2 +- ast/src/statements/block.rs | 2 +- ast/src/statements/conditional.rs | 2 +- ast/src/statements/console/console_function.rs | 2 +- ast/src/statements/console/console_statement.rs | 2 +- ast/src/statements/console/formatted_container.rs | 2 +- ast/src/statements/console/formatted_string.rs | 2 +- ast/src/statements/console/mod.rs | 2 +- ast/src/statements/definition/declare.rs | 2 +- ast/src/statements/definition/mod.rs | 2 +- ast/src/statements/definition/variable_name.rs | 2 +- ast/src/statements/expression.rs | 2 +- ast/src/statements/iteration.rs | 2 +- ast/src/statements/mod.rs | 2 +- ast/src/statements/return_statement.rs | 2 +- ast/src/statements/statement.rs | 2 +- ast/src/types/integer_type.rs | 2 +- ast/src/types/mod.rs | 2 +- ast/src/types/type_.rs | 2 +- ast/tests/mod.rs | 2 +- ast/tests/serialization/json.rs | 2 +- ast/tests/serialization/mod.rs | 2 +- compiler/src/compiler.rs | 2 +- compiler/src/console/assert.rs | 2 +- compiler/src/console/console.rs | 2 +- compiler/src/console/format.rs | 2 +- compiler/src/console/mod.rs | 2 +- compiler/src/constraints/constraints.rs | 2 +- compiler/src/constraints/mod.rs | 2 +- compiler/src/definition/definition.rs | 2 +- compiler/src/definition/definitions.rs | 2 +- compiler/src/definition/mod.rs | 2 +- compiler/src/errors/compiler.rs | 2 +- compiler/src/errors/console.rs | 2 +- compiler/src/errors/expression.rs | 2 +- compiler/src/errors/function.rs | 2 +- compiler/src/errors/import.rs | 2 +- compiler/src/errors/mod.rs | 2 +- compiler/src/errors/output_bytes.rs | 2 +- compiler/src/errors/output_file.rs | 2 +- compiler/src/errors/statement.rs | 2 +- compiler/src/errors/value/address.rs | 2 +- compiler/src/errors/value/boolean.rs | 2 +- compiler/src/errors/value/field.rs | 2 +- compiler/src/errors/value/group.rs | 2 +- compiler/src/errors/value/integer.rs | 2 +- compiler/src/errors/value/mod.rs | 2 +- compiler/src/errors/value/value.rs | 2 +- compiler/src/expression/arithmetic/add.rs | 2 +- compiler/src/expression/arithmetic/div.rs | 2 +- compiler/src/expression/arithmetic/mod.rs | 2 +- compiler/src/expression/arithmetic/mul.rs | 2 +- compiler/src/expression/arithmetic/negate.rs | 2 +- compiler/src/expression/arithmetic/pow.rs | 2 +- compiler/src/expression/arithmetic/sub.rs | 2 +- compiler/src/expression/array/access.rs | 2 +- compiler/src/expression/array/array.rs | 2 +- compiler/src/expression/array/index.rs | 2 +- compiler/src/expression/array/mod.rs | 2 +- compiler/src/expression/binary/binary.rs | 2 +- compiler/src/expression/binary/mod.rs | 2 +- compiler/src/expression/binary/operand.rs | 2 +- compiler/src/expression/circuit/access.rs | 2 +- compiler/src/expression/circuit/circuit.rs | 2 +- compiler/src/expression/circuit/mod.rs | 2 +- compiler/src/expression/circuit/static_access.rs | 2 +- compiler/src/expression/conditional/conditional.rs | 2 +- compiler/src/expression/conditional/mod.rs | 2 +- compiler/src/expression/expression.rs | 2 +- compiler/src/expression/function/core_circuit.rs | 2 +- compiler/src/expression/function/function.rs | 2 +- compiler/src/expression/function/mod.rs | 2 +- compiler/src/expression/identifier/identifier.rs | 2 +- compiler/src/expression/identifier/mod.rs | 2 +- compiler/src/expression/logical/and.rs | 2 +- compiler/src/expression/logical/mod.rs | 2 +- compiler/src/expression/logical/not.rs | 2 +- compiler/src/expression/logical/or.rs | 2 +- compiler/src/expression/mod.rs | 2 +- compiler/src/expression/relational/eq.rs | 2 +- compiler/src/expression/relational/ge.rs | 2 +- compiler/src/expression/relational/gt.rs | 2 +- compiler/src/expression/relational/le.rs | 2 +- compiler/src/expression/relational/lt.rs | 2 +- compiler/src/expression/relational/mod.rs | 2 +- compiler/src/expression/tuple/access.rs | 2 +- compiler/src/expression/tuple/mod.rs | 2 +- compiler/src/expression/tuple/tuple.rs | 2 +- compiler/src/function/function.rs | 2 +- compiler/src/function/input/array.rs | 2 +- compiler/src/function/input/function_input.rs | 2 +- compiler/src/function/input/input_keyword.rs | 2 +- compiler/src/function/input/input_section.rs | 2 +- compiler/src/function/input/main_function_input.rs | 2 +- compiler/src/function/input/mod.rs | 2 +- compiler/src/function/input/tuple.rs | 2 +- compiler/src/function/main_function.rs | 2 +- compiler/src/function/mod.rs | 2 +- compiler/src/function/result/mod.rs | 2 +- compiler/src/function/result/result.rs | 2 +- compiler/src/import/mod.rs | 2 +- compiler/src/import/store/core_package.rs | 2 +- compiler/src/import/store/import.rs | 2 +- compiler/src/import/store/mod.rs | 2 +- compiler/src/import/store/symbol.rs | 2 +- compiler/src/lib.rs | 2 +- compiler/src/output/mod.rs | 2 +- compiler/src/output/output_bytes.rs | 2 +- compiler/src/output/output_file.rs | 2 +- compiler/src/program/mod.rs | 2 +- compiler/src/program/program.rs | 2 +- compiler/src/statement/assign/assign.rs | 2 +- compiler/src/statement/assign/assignee.rs | 2 +- compiler/src/statement/assign/mod.rs | 2 +- compiler/src/statement/block/block.rs | 2 +- compiler/src/statement/block/mod.rs | 2 +- compiler/src/statement/conditional/conditional.rs | 2 +- compiler/src/statement/conditional/mod.rs | 2 +- compiler/src/statement/definition/definition.rs | 2 +- compiler/src/statement/definition/mod.rs | 2 +- compiler/src/statement/iteration/iteration.rs | 2 +- compiler/src/statement/iteration/mod.rs | 2 +- compiler/src/statement/mod.rs | 2 +- compiler/src/statement/return_/mod.rs | 2 +- compiler/src/statement/return_/return_.rs | 2 +- compiler/src/statement/statement.rs | 2 +- compiler/src/value/address/address.rs | 2 +- compiler/src/value/address/mod.rs | 2 +- compiler/src/value/boolean/input.rs | 2 +- compiler/src/value/boolean/mod.rs | 2 +- compiler/src/value/field/field_type.rs | 2 +- compiler/src/value/field/input.rs | 2 +- compiler/src/value/field/mod.rs | 2 +- compiler/src/value/group/group_type.rs | 2 +- compiler/src/value/group/input.rs | 2 +- compiler/src/value/group/mod.rs | 2 +- compiler/src/value/group/targets/edwards_bls12.rs | 2 +- compiler/src/value/group/targets/mod.rs | 2 +- compiler/src/value/implicit/implicit.rs | 2 +- compiler/src/value/implicit/mod.rs | 2 +- compiler/src/value/integer/integer.rs | 2 +- compiler/src/value/integer/macros.rs | 2 +- compiler/src/value/integer/mod.rs | 2 +- compiler/src/value/mod.rs | 2 +- compiler/src/value/value.rs | 2 +- compiler/tests/address/mod.rs | 2 +- compiler/tests/array/mod.rs | 2 +- compiler/tests/boolean/mod.rs | 2 +- compiler/tests/circuits/mod.rs | 2 +- compiler/tests/compiler/mod.rs | 2 +- compiler/tests/console/mod.rs | 2 +- compiler/tests/core/mod.rs | 2 +- compiler/tests/core/packages/mod.rs | 2 +- compiler/tests/core/packages/unstable/blake2s/mod.rs | 2 +- compiler/tests/core/packages/unstable/mod.rs | 2 +- compiler/tests/definition/mod.rs | 2 +- compiler/tests/field/mod.rs | 2 +- compiler/tests/function/mod.rs | 2 +- compiler/tests/group/mod.rs | 11 +++-------- compiler/tests/import/mod.rs | 2 +- compiler/tests/input_files/mod.rs | 2 +- compiler/tests/input_files/program_input/mod.rs | 2 +- .../program_input_and_program_state/mod.rs | 2 +- compiler/tests/input_files/program_registers/mod.rs | 2 +- compiler/tests/input_files/program_state/mod.rs | 2 +- compiler/tests/integers/i128/mod.rs | 2 +- compiler/tests/integers/i16/mod.rs | 2 +- compiler/tests/integers/i32/mod.rs | 2 +- compiler/tests/integers/i64/mod.rs | 2 +- compiler/tests/integers/i8/mod.rs | 2 +- compiler/tests/integers/int_macro.rs | 2 +- compiler/tests/integers/integer_tester.rs | 2 +- compiler/tests/integers/mod.rs | 2 +- compiler/tests/integers/u128/mod.rs | 2 +- compiler/tests/integers/u16/mod.rs | 2 +- compiler/tests/integers/u32/mod.rs | 2 +- compiler/tests/integers/u64/mod.rs | 2 +- compiler/tests/integers/u8/mod.rs | 2 +- compiler/tests/integers/uint_macro.rs | 2 +- compiler/tests/mod.rs | 2 +- compiler/tests/mutability/mod.rs | 2 +- compiler/tests/statements/conditional/mod.rs | 2 +- compiler/tests/statements/mod.rs | 2 +- compiler/tests/syntax/identifiers/mod.rs | 2 +- compiler/tests/syntax/mod.rs | 2 +- compiler/tests/tuples/mod.rs | 2 +- core/src/errors/core_circuit.rs | 2 +- core/src/errors/core_package.rs | 2 +- core/src/errors/core_package_list.rs | 2 +- core/src/errors/leo_core_package.rs | 2 +- core/src/errors/mod.rs | 2 +- core/src/lib.rs | 2 +- core/src/packages/mod.rs | 2 +- core/src/packages/unstable/blake2s.rs | 2 +- core/src/packages/unstable/mod.rs | 2 +- core/src/types/core_circuit.rs | 2 +- core/src/types/core_circuit_struct_list.rs | 2 +- core/src/types/core_package.rs | 2 +- core/src/types/core_package_list.rs | 2 +- core/src/types/mod.rs | 2 +- core/src/types/value.rs | 2 +- gadgets/benches/integer_arithmetic.rs | 2 +- gadgets/src/arithmetic/add.rs | 2 +- gadgets/src/arithmetic/div.rs | 2 +- gadgets/src/arithmetic/mod.rs | 2 +- gadgets/src/arithmetic/mul.rs | 2 +- gadgets/src/arithmetic/neg.rs | 2 +- gadgets/src/arithmetic/pow.rs | 2 +- gadgets/src/arithmetic/sub.rs | 2 +- gadgets/src/bits/adder.rs | 2 +- gadgets/src/bits/comparator.rs | 2 +- gadgets/src/bits/mod.rs | 2 +- gadgets/src/bits/rca.rs | 2 +- gadgets/src/bits/sign_extend.rs | 2 +- gadgets/src/errors/mod.rs | 2 +- gadgets/src/errors/signed_integer.rs | 2 +- gadgets/src/lib.rs | 2 +- gadgets/src/signed_integer/arithmetic/add.rs | 2 +- gadgets/src/signed_integer/arithmetic/div.rs | 2 +- gadgets/src/signed_integer/arithmetic/mod.rs | 2 +- gadgets/src/signed_integer/arithmetic/mul.rs | 2 +- gadgets/src/signed_integer/arithmetic/neg.rs | 2 +- gadgets/src/signed_integer/arithmetic/pow.rs | 2 +- gadgets/src/signed_integer/arithmetic/sub.rs | 2 +- gadgets/src/signed_integer/int_impl.rs | 2 +- gadgets/src/signed_integer/mod.rs | 2 +- gadgets/src/signed_integer/relational/cmp.rs | 2 +- gadgets/src/signed_integer/relational/eq.rs | 2 +- gadgets/src/signed_integer/relational/mod.rs | 2 +- gadgets/src/signed_integer/utilities/alloc.rs | 2 +- gadgets/src/signed_integer/utilities/eq.rs | 2 +- gadgets/src/signed_integer/utilities/mod.rs | 2 +- gadgets/src/signed_integer/utilities/select.rs | 2 +- gadgets/tests/mod.rs | 2 +- gadgets/tests/signed_integer/i128.rs | 2 +- gadgets/tests/signed_integer/i16.rs | 2 +- gadgets/tests/signed_integer/i32.rs | 2 +- gadgets/tests/signed_integer/i64.rs | 2 +- gadgets/tests/signed_integer/i8.rs | 2 +- gadgets/tests/signed_integer/mod.rs | 2 +- grammar/benches/ast.rs | 2 +- grammar/src/access/access.rs | 2 +- grammar/src/access/array_access.rs | 2 +- grammar/src/access/assignee_access.rs | 2 +- grammar/src/access/call_access.rs | 2 +- grammar/src/access/member_access.rs | 2 +- grammar/src/access/mod.rs | 2 +- grammar/src/access/static_member_access.rs | 2 +- grammar/src/access/tuple_access.rs | 2 +- grammar/src/annotations/annotation_arguments.rs | 2 +- grammar/src/annotations/annotation_name.rs | 2 +- grammar/src/annotations/annotation_symbol.rs | 2 +- grammar/src/annotations/annotations.rs | 2 +- grammar/src/annotations/mod.rs | 2 +- grammar/src/ast.rs | 2 +- grammar/src/circuits/circuit.rs | 2 +- grammar/src/circuits/circuit_member.rs | 2 +- grammar/src/circuits/circuit_variable.rs | 2 +- grammar/src/circuits/circuit_variable_definition.rs | 2 +- grammar/src/circuits/mod.rs | 2 +- grammar/src/common/assignee.rs | 2 +- grammar/src/common/declare.rs | 2 +- grammar/src/common/eoi.rs | 2 +- grammar/src/common/identifier.rs | 2 +- grammar/src/common/keyword_or_identifier.rs | 2 +- grammar/src/common/line_end.rs | 2 +- grammar/src/common/mod.rs | 2 +- grammar/src/common/mut_self_keyword.rs | 2 +- grammar/src/common/mutable.rs | 2 +- grammar/src/common/range.rs | 2 +- grammar/src/common/range_or_expression.rs | 2 +- grammar/src/common/self_keyword.rs | 2 +- grammar/src/common/self_keyword_or_identifier.rs | 2 +- grammar/src/common/spread.rs | 2 +- grammar/src/common/spread_or_expression.rs | 2 +- grammar/src/common/static_.rs | 2 +- grammar/src/common/variable_name.rs | 2 +- grammar/src/common/variables.rs | 2 +- grammar/src/console/console_assert.rs | 2 +- grammar/src/console/console_debug.rs | 2 +- grammar/src/console/console_error.rs | 2 +- grammar/src/console/console_function.rs | 2 +- grammar/src/console/console_function_call.rs | 2 +- grammar/src/console/console_keyword.rs | 2 +- grammar/src/console/console_log.rs | 2 +- grammar/src/console/formatted_container.rs | 2 +- grammar/src/console/formatted_string.rs | 2 +- grammar/src/console/mod.rs | 2 +- grammar/src/definitions/annotated_definition.rs | 2 +- grammar/src/definitions/definition.rs | 2 +- grammar/src/definitions/deprecated.rs | 2 +- grammar/src/definitions/mod.rs | 2 +- grammar/src/errors/mod.rs | 2 +- grammar/src/errors/parser.rs | 2 +- grammar/src/errors/syntax.rs | 2 +- .../src/expressions/array_initializer_expression.rs | 2 +- grammar/src/expressions/array_inline_expression.rs | 2 +- grammar/src/expressions/binary_expression.rs | 2 +- grammar/src/expressions/circuit_inline_expression.rs | 2 +- grammar/src/expressions/expression.rs | 2 +- grammar/src/expressions/mod.rs | 2 +- grammar/src/expressions/postfix_expression.rs | 2 +- grammar/src/expressions/ternary_expression.rs | 2 +- grammar/src/expressions/tuple_expression.rs | 2 +- grammar/src/expressions/unary_expression.rs | 2 +- grammar/src/files/file.rs | 2 +- grammar/src/files/mod.rs | 2 +- grammar/src/functions/function.rs | 2 +- grammar/src/functions/input/function_input.rs | 2 +- grammar/src/functions/input/input.rs | 2 +- grammar/src/functions/input/input_keyword.rs | 2 +- grammar/src/functions/input/mod.rs | 2 +- grammar/src/functions/mod.rs | 2 +- grammar/src/functions/test_function.rs | 2 +- grammar/src/imports/import.rs | 2 +- grammar/src/imports/import_symbol.rs | 2 +- grammar/src/imports/mod.rs | 2 +- grammar/src/imports/package.rs | 2 +- grammar/src/imports/package_access.rs | 2 +- grammar/src/imports/package_name.rs | 2 +- grammar/src/imports/star.rs | 2 +- grammar/src/lib.rs | 2 +- grammar/src/main.rs | 2 +- grammar/src/operations/assign_operation.rs | 2 +- grammar/src/operations/binary_operation.rs | 2 +- grammar/src/operations/mod.rs | 2 +- grammar/src/operations/unary_operation.rs | 2 +- grammar/src/span.rs | 2 +- grammar/src/statements/assign_statement.rs | 2 +- grammar/src/statements/block.rs | 2 +- .../statements/conditional_nested_or_end_statement.rs | 2 +- grammar/src/statements/conditional_statement.rs | 2 +- grammar/src/statements/definition_statement.rs | 2 +- grammar/src/statements/expression_statement.rs | 2 +- grammar/src/statements/for_statement.rs | 2 +- grammar/src/statements/mod.rs | 2 +- grammar/src/statements/return_statement.rs | 2 +- grammar/src/statements/statement.rs | 2 +- grammar/src/types/address_type.rs | 2 +- grammar/src/types/array_dimensions.rs | 2 +- grammar/src/types/array_type.rs | 2 +- grammar/src/types/boolean_type.rs | 2 +- grammar/src/types/circuit_type.rs | 2 +- grammar/src/types/data_type.rs | 2 +- grammar/src/types/field_type.rs | 2 +- grammar/src/types/group_type.rs | 2 +- grammar/src/types/integer_type.rs | 2 +- grammar/src/types/mod.rs | 2 +- grammar/src/types/self_type.rs | 2 +- grammar/src/types/signed_integer_type.rs | 2 +- grammar/src/types/tuple_type.rs | 2 +- grammar/src/types/type_.rs | 2 +- grammar/src/types/unsigned_integer_type.rs | 2 +- grammar/src/values/address.rs | 2 +- grammar/src/values/address_value.rs | 2 +- grammar/src/values/boolean_value.rs | 2 +- grammar/src/values/field_value.rs | 2 +- grammar/src/values/group_coordinate.rs | 2 +- grammar/src/values/group_value.rs | 2 +- grammar/src/values/integer_value.rs | 2 +- grammar/src/values/mod.rs | 2 +- grammar/src/values/negative_number.rs | 2 +- grammar/src/values/number_value.rs | 2 +- grammar/src/values/positive_number.rs | 2 +- grammar/src/values/signed_integer_value.rs | 2 +- grammar/src/values/unsigned_integer_value.rs | 2 +- grammar/src/values/value.rs | 2 +- grammar/tests/annotated.rs | 2 +- grammar/tests/deprecated.rs | 2 +- grammar/tests/display.rs | 2 +- grammar/tests/expression.rs | 2 +- grammar/tests/function.rs | 2 +- grammar/tests/mod.rs | 2 +- grammar/tests/multiline.rs | 2 +- grammar/tests/serialization/json.rs | 2 +- grammar/tests/serialization/mod.rs | 2 +- grammar/tests/tuple.rs | 2 +- imports/src/errors/import_parser.rs | 2 +- imports/src/errors/mod.rs | 2 +- imports/src/lib.rs | 2 +- imports/src/parser/core_package.rs | 2 +- imports/src/parser/import_parser.rs | 2 +- imports/src/parser/mod.rs | 2 +- imports/src/parser/parse_package.rs | 2 +- imports/src/parser/parse_symbol.rs | 2 +- input/src/ast.rs | 2 +- input/src/common/eoi.rs | 2 +- input/src/common/identifier.rs | 2 +- input/src/common/line_end.rs | 2 +- input/src/common/mod.rs | 2 +- input/src/definitions/definition.rs | 2 +- input/src/definitions/mod.rs | 2 +- input/src/errors/mod.rs | 2 +- input/src/errors/parser.rs | 2 +- input/src/errors/syntax.rs | 2 +- input/src/expressions/array_initializer_expression.rs | 2 +- input/src/expressions/array_inline_expression.rs | 2 +- input/src/expressions/expression.rs | 2 +- input/src/expressions/mod.rs | 2 +- input/src/expressions/tuple_expression.rs | 2 +- input/src/files/file.rs | 2 +- input/src/files/mod.rs | 2 +- input/src/files/table_or_section.rs | 2 +- input/src/lib.rs | 2 +- input/src/parameters/mod.rs | 2 +- input/src/parameters/parameter.rs | 2 +- input/src/sections/header.rs | 2 +- input/src/sections/main_.rs | 2 +- input/src/sections/mod.rs | 2 +- input/src/sections/record.rs | 2 +- input/src/sections/registers.rs | 2 +- input/src/sections/section.rs | 2 +- input/src/sections/state.rs | 2 +- input/src/sections/state_leaf.rs | 2 +- input/src/tables/mod.rs | 2 +- input/src/tables/private.rs | 2 +- input/src/tables/public.rs | 2 +- input/src/tables/table.rs | 2 +- input/src/tables/visibility.rs | 2 +- input/src/types/address_type.rs | 2 +- input/src/types/array_dimensions.rs | 2 +- input/src/types/array_type.rs | 2 +- input/src/types/boolean_type.rs | 2 +- input/src/types/data_type.rs | 2 +- input/src/types/field_type.rs | 2 +- input/src/types/group_type.rs | 2 +- input/src/types/integer_type.rs | 2 +- input/src/types/mod.rs | 2 +- input/src/types/signed_integer_type.rs | 2 +- input/src/types/tuple_type.rs | 2 +- input/src/types/type_.rs | 2 +- input/src/types/unsigned_integer_type.rs | 2 +- input/src/values/address.rs | 2 +- input/src/values/address_typed.rs | 2 +- input/src/values/address_value.rs | 2 +- input/src/values/boolean_value.rs | 2 +- input/src/values/field_value.rs | 2 +- input/src/values/group_coordinate.rs | 2 +- input/src/values/group_value.rs | 2 +- input/src/values/integer_value.rs | 2 +- input/src/values/mod.rs | 2 +- input/src/values/negative_number.rs | 2 +- input/src/values/number_value.rs | 2 +- input/src/values/positive_number.rs | 2 +- input/src/values/signed_integer_value.rs | 2 +- input/src/values/unsigned_integer_value.rs | 2 +- input/src/values/value.rs | 2 +- leo/cli.rs | 2 +- leo/cli_types.rs | 2 +- leo/commands/add.rs | 2 +- leo/commands/build.rs | 2 +- leo/commands/clean.rs | 2 +- leo/commands/deploy.rs | 2 +- leo/commands/init.rs | 2 +- leo/commands/lint.rs | 2 +- leo/commands/login.rs | 2 +- leo/commands/logout.rs | 2 +- leo/commands/mod.rs | 2 +- leo/commands/new.rs | 2 +- leo/commands/prove.rs | 2 +- leo/commands/publish.rs | 2 +- leo/commands/remove.rs | 2 +- leo/commands/run.rs | 2 +- leo/commands/setup.rs | 2 +- leo/commands/test.rs | 2 +- leo/commands/update.rs | 2 +- leo/commands/watch.rs | 2 +- leo/config.rs | 2 +- leo/errors/cli.rs | 2 +- leo/errors/commands/add.rs | 2 +- leo/errors/commands/build.rs | 2 +- leo/errors/commands/init.rs | 2 +- leo/errors/commands/login.rs | 2 +- leo/errors/commands/mod.rs | 2 +- leo/errors/commands/new.rs | 2 +- leo/errors/commands/publish.rs | 2 +- leo/errors/commands/run.rs | 2 +- leo/errors/commands/test.rs | 2 +- leo/errors/mod.rs | 2 +- leo/errors/updater.rs | 2 +- leo/lib.rs | 2 +- leo/logger.rs | 2 +- leo/main.rs | 2 +- leo/synthesizer/circuit_synthesizer.rs | 2 +- leo/synthesizer/mod.rs | 2 +- leo/synthesizer/serialized_circuit.rs | 2 +- leo/synthesizer/serialized_field.rs | 2 +- leo/synthesizer/serialized_index.rs | 2 +- leo/updater.rs | 2 +- linter/src/main.rs | 2 +- package/src/errors/imports/directory.rs | 2 +- package/src/errors/imports/mod.rs | 2 +- package/src/errors/inputs/directory.rs | 2 +- package/src/errors/inputs/input.rs | 2 +- package/src/errors/inputs/mod.rs | 2 +- package/src/errors/inputs/state.rs | 2 +- package/src/errors/mod.rs | 2 +- package/src/errors/outputs/checksum.rs | 2 +- package/src/errors/outputs/circuit.rs | 2 +- package/src/errors/outputs/directory.rs | 2 +- package/src/errors/outputs/mod.rs | 2 +- package/src/errors/outputs/proof.rs | 2 +- package/src/errors/outputs/proving_key.rs | 2 +- package/src/errors/outputs/verification_key.rs | 2 +- package/src/errors/package.rs | 2 +- package/src/errors/root/gitignore.rs | 2 +- package/src/errors/root/manifest.rs | 2 +- package/src/errors/root/mod.rs | 2 +- package/src/errors/root/readme.rs | 2 +- package/src/errors/root/zip.rs | 2 +- package/src/errors/source/directory.rs | 2 +- package/src/errors/source/lib.rs | 2 +- package/src/errors/source/main.rs | 2 +- package/src/errors/source/mod.rs | 2 +- package/src/imports/directory.rs | 2 +- package/src/imports/mod.rs | 2 +- package/src/inputs/directory.rs | 2 +- package/src/inputs/input.rs | 2 +- package/src/inputs/mod.rs | 2 +- package/src/inputs/pairs.rs | 2 +- package/src/inputs/state.rs | 2 +- package/src/lib.rs | 2 +- package/src/outputs/checksum.rs | 2 +- package/src/outputs/circuit.rs | 2 +- package/src/outputs/directory.rs | 2 +- package/src/outputs/mod.rs | 2 +- package/src/outputs/proof.rs | 2 +- package/src/outputs/proving_key.rs | 2 +- package/src/outputs/verification_key.rs | 2 +- package/src/package.rs | 2 +- package/src/root/gitignore.rs | 2 +- package/src/root/manifest.rs | 2 +- package/src/root/mod.rs | 2 +- package/src/root/readme.rs | 2 +- package/src/root/zip.rs | 2 +- package/src/source/directory.rs | 2 +- package/src/source/library.rs | 2 +- package/src/source/main.rs | 2 +- package/src/source/mod.rs | 2 +- package/tests/initialize/initialize.rs | 2 +- package/tests/initialize/mod.rs | 2 +- package/tests/manifest/manifest.rs | 2 +- package/tests/manifest/mod.rs | 2 +- package/tests/mod.rs | 2 +- state/src/errors/dpc_record_values.rs | 2 +- state/src/errors/input_value.rs | 2 +- state/src/errors/local_data_commitment.rs | 2 +- state/src/errors/mod.rs | 2 +- state/src/errors/record_commitment.rs | 2 +- state/src/errors/state_leaf_values.rs | 2 +- state/src/errors/state_values.rs | 2 +- state/src/lib.rs | 2 +- .../local_data_commitment/local_data_commitment.rs | 2 +- state/src/local_data_commitment/mod.rs | 2 +- state/src/local_data_commitment/state_leaf_values.rs | 2 +- state/src/local_data_commitment/state_values.rs | 2 +- state/src/record_commitment/dpc_record_values.rs | 2 +- state/src/record_commitment/mod.rs | 2 +- state/src/record_commitment/record_commitment.rs | 2 +- state/src/utilities/input_value.rs | 2 +- state/src/utilities/mod.rs | 2 +- state/tests/mod.rs | 2 +- state/tests/test_verify_local_data_commitment.rs | 2 +- state/tests/test_verify_record_commitment.rs | 2 +- symbol-table/src/attributes/attribute.rs | 2 +- symbol-table/src/attributes/mod.rs | 2 +- symbol-table/src/errors/mod.rs | 2 +- symbol-table/src/errors/symbol_table.rs | 2 +- symbol-table/src/errors/type_.rs | 2 +- symbol-table/src/imports/imported_symbols.rs | 2 +- symbol-table/src/imports/mod.rs | 2 +- symbol-table/src/lib.rs | 2 +- symbol-table/src/symbol_table.rs | 2 +- symbol-table/src/types/circuits/circuit.rs | 2 +- symbol-table/src/types/circuits/circuit_variable.rs | 2 +- symbol-table/src/types/circuits/mod.rs | 2 +- symbol-table/src/types/functions/function.rs | 2 +- symbol-table/src/types/functions/function_input.rs | 2 +- .../src/types/functions/function_input_variable.rs | 2 +- symbol-table/src/types/functions/function_output.rs | 2 +- symbol-table/src/types/functions/mod.rs | 2 +- symbol-table/src/types/mod.rs | 2 +- symbol-table/src/types/type_.rs | 2 +- symbol-table/src/types/type_variable.rs | 2 +- symbol-table/src/types/user_defined/mod.rs | 2 +- .../src/types/user_defined/user_defined_type.rs | 2 +- symbol-table/tests/mod.rs | 2 +- symbol-table/tests/symbol_table/mod.rs | 2 +- type-inference/src/assertions/mod.rs | 2 +- type-inference/src/assertions/type_assertion.rs | 2 +- type-inference/src/assertions/type_equality.rs | 2 +- type-inference/src/assertions/type_membership.rs | 2 +- type-inference/src/assertions/type_variable_pair.rs | 2 +- type-inference/src/errors/frame.rs | 2 +- type-inference/src/errors/mod.rs | 2 +- type-inference/src/errors/scope.rs | 2 +- type-inference/src/errors/type_assertion.rs | 2 +- type-inference/src/errors/type_inference.rs | 2 +- type-inference/src/errors/variable_table.rs | 2 +- type-inference/src/lib.rs | 2 +- type-inference/src/objects/frame.rs | 2 +- type-inference/src/objects/mod.rs | 2 +- type-inference/src/objects/scope.rs | 2 +- type-inference/src/objects/variable_table.rs | 2 +- type-inference/src/type_inference.rs | 2 +- type-inference/tests/arrays/mod.rs | 2 +- type-inference/tests/circuits/mod.rs | 2 +- type-inference/tests/functions/mod.rs | 2 +- type-inference/tests/mod.rs | 2 +- type-inference/tests/statements/mod.rs | 2 +- type-inference/tests/tuples/mod.rs | 2 +- type-inference/tests/variables/mod.rs | 2 +- 796 files changed, 862 insertions(+), 868 deletions(-) diff --git a/.licenserc.json b/.licenserc.json index 2dea00c3bd..4c2010282d 100644 --- a/.licenserc.json +++ b/.licenserc.json @@ -1,6 +1,6 @@ { "**/*.rs": [ - "// Copyright (C) 2019-2020 Aleo Systems Inc.", + "// Copyright (C) 2019-2021 Aleo Systems Inc.", "// This file is part of the Leo library.", "", "// The Leo library is free software: you can redistribute it and/or modify", diff --git a/.resources/license_header b/.resources/license_header index 6de9f3a6f4..c89d7c6147 100644 --- a/.resources/license_header +++ b/.resources/license_header @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/checks/mod.rs b/asg/src/checks/mod.rs index d143db3fa2..f3843860d2 100644 --- a/asg/src/checks/mod.rs +++ b/asg/src/checks/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/checks/return_path.rs b/asg/src/checks/return_path.rs index 1880b12593..15be40c2ed 100644 --- a/asg/src/checks/return_path.rs +++ b/asg/src/checks/return_path.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/const_value.rs b/asg/src/const_value.rs index b3c9819446..f022afbef6 100644 --- a/asg/src/const_value.rs +++ b/asg/src/const_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/error/mod.rs b/asg/src/error/mod.rs index bebfada50b..39e60735dc 100644 --- a/asg/src/error/mod.rs +++ b/asg/src/error/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/array_access.rs b/asg/src/expression/array_access.rs index 473601d412..ee963d59e3 100644 --- a/asg/src/expression/array_access.rs +++ b/asg/src/expression/array_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/array_init.rs b/asg/src/expression/array_init.rs index f7b9d5a95e..3f11e62e13 100644 --- a/asg/src/expression/array_init.rs +++ b/asg/src/expression/array_init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/array_inline.rs b/asg/src/expression/array_inline.rs index 274041c3e9..2a34d875b8 100644 --- a/asg/src/expression/array_inline.rs +++ b/asg/src/expression/array_inline.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/array_range_access.rs b/asg/src/expression/array_range_access.rs index 666ff16729..3cd1de4ca3 100644 --- a/asg/src/expression/array_range_access.rs +++ b/asg/src/expression/array_range_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/binary.rs b/asg/src/expression/binary.rs index bb19918471..6291ca5122 100644 --- a/asg/src/expression/binary.rs +++ b/asg/src/expression/binary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/call.rs b/asg/src/expression/call.rs index c49a97c36f..e05ec761d6 100644 --- a/asg/src/expression/call.rs +++ b/asg/src/expression/call.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/circuit_access.rs b/asg/src/expression/circuit_access.rs index b1eba2b84c..1a80b3b9f6 100644 --- a/asg/src/expression/circuit_access.rs +++ b/asg/src/expression/circuit_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/circuit_init.rs b/asg/src/expression/circuit_init.rs index b9309b307a..6a199eaf62 100644 --- a/asg/src/expression/circuit_init.rs +++ b/asg/src/expression/circuit_init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/constant.rs b/asg/src/expression/constant.rs index 9ec9cb7036..084ebf160a 100644 --- a/asg/src/expression/constant.rs +++ b/asg/src/expression/constant.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/mod.rs b/asg/src/expression/mod.rs index fb21c16039..0a79a1148d 100644 --- a/asg/src/expression/mod.rs +++ b/asg/src/expression/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/ternary.rs b/asg/src/expression/ternary.rs index b12d70eab7..12c7909ddd 100644 --- a/asg/src/expression/ternary.rs +++ b/asg/src/expression/ternary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/tuple_access.rs b/asg/src/expression/tuple_access.rs index 3176f9c845..25774fa9f4 100644 --- a/asg/src/expression/tuple_access.rs +++ b/asg/src/expression/tuple_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/tuple_init.rs b/asg/src/expression/tuple_init.rs index 5d7bd71cd9..169198db69 100644 --- a/asg/src/expression/tuple_init.rs +++ b/asg/src/expression/tuple_init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/unary.rs b/asg/src/expression/unary.rs index 0871e7d488..1cddf0cd3f 100644 --- a/asg/src/expression/unary.rs +++ b/asg/src/expression/unary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/expression/variable_ref.rs b/asg/src/expression/variable_ref.rs index 648a725fc0..b317a7de9a 100644 --- a/asg/src/expression/variable_ref.rs +++ b/asg/src/expression/variable_ref.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/import.rs b/asg/src/import.rs index 8924530b0f..e28d18ee28 100644 --- a/asg/src/import.rs +++ b/asg/src/import.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/input.rs b/asg/src/input.rs index 18023bd6fd..d896f6315a 100644 --- a/asg/src/input.rs +++ b/asg/src/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/lib.rs b/asg/src/lib.rs index 8c59d1ceaa..99f947c0e8 100644 --- a/asg/src/lib.rs +++ b/asg/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/node.rs b/asg/src/node.rs index e121a3c9f4..eece9c6fa8 100644 --- a/asg/src/node.rs +++ b/asg/src/node.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/prelude.rs b/asg/src/prelude.rs index 992fa91e30..8aa1199e06 100644 --- a/asg/src/prelude.rs +++ b/asg/src/prelude.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/program/circuit.rs b/asg/src/program/circuit.rs index 7a4368d8be..a9565d508a 100644 --- a/asg/src/program/circuit.rs +++ b/asg/src/program/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/program/function.rs b/asg/src/program/function.rs index d411db5977..255acb0128 100644 --- a/asg/src/program/function.rs +++ b/asg/src/program/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/program/mod.rs b/asg/src/program/mod.rs index 9dffb92481..281d3b9931 100644 --- a/asg/src/program/mod.rs +++ b/asg/src/program/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/mod.rs b/asg/src/reducer/mod.rs index 95f82553eb..7af5e14c7b 100644 --- a/asg/src/reducer/mod.rs +++ b/asg/src/reducer/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/monoid/bool_and.rs b/asg/src/reducer/monoid/bool_and.rs index fde095e99d..fec573a3d0 100644 --- a/asg/src/reducer/monoid/bool_and.rs +++ b/asg/src/reducer/monoid/bool_and.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/monoid/mod.rs b/asg/src/reducer/monoid/mod.rs index 7aac7f7d21..cdb7c7b7d7 100644 --- a/asg/src/reducer/monoid/mod.rs +++ b/asg/src/reducer/monoid/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/monoid/set_append.rs b/asg/src/reducer/monoid/set_append.rs index 49746a51bd..e32f8c75d8 100644 --- a/asg/src/reducer/monoid/set_append.rs +++ b/asg/src/reducer/monoid/set_append.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/monoid/vec_append.rs b/asg/src/reducer/monoid/vec_append.rs index f38dc6d1db..11188fa58d 100644 --- a/asg/src/reducer/monoid/vec_append.rs +++ b/asg/src/reducer/monoid/vec_append.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/monoidal_director.rs b/asg/src/reducer/monoidal_director.rs index 15b26d08d7..8c37436e67 100644 --- a/asg/src/reducer/monoidal_director.rs +++ b/asg/src/reducer/monoidal_director.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/reducer/monoidal_reducer.rs b/asg/src/reducer/monoidal_reducer.rs index 1d5adef29d..a49091c0d8 100644 --- a/asg/src/reducer/monoidal_reducer.rs +++ b/asg/src/reducer/monoidal_reducer.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/scope.rs b/asg/src/scope.rs index c50c5399ff..29195c927c 100644 --- a/asg/src/scope.rs +++ b/asg/src/scope.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/assign.rs b/asg/src/statement/assign.rs index 08714689a1..be3bc7423c 100644 --- a/asg/src/statement/assign.rs +++ b/asg/src/statement/assign.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/block.rs b/asg/src/statement/block.rs index b715ca2f98..e1703b3e25 100644 --- a/asg/src/statement/block.rs +++ b/asg/src/statement/block.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/conditional.rs b/asg/src/statement/conditional.rs index f1618d4db6..5b1869ce06 100644 --- a/asg/src/statement/conditional.rs +++ b/asg/src/statement/conditional.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/console.rs b/asg/src/statement/console.rs index 05e4d06516..970ee6da75 100644 --- a/asg/src/statement/console.rs +++ b/asg/src/statement/console.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/definition.rs b/asg/src/statement/definition.rs index a76fb264cb..0876653c4a 100644 --- a/asg/src/statement/definition.rs +++ b/asg/src/statement/definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/expression.rs b/asg/src/statement/expression.rs index a2655befdb..068453ba03 100644 --- a/asg/src/statement/expression.rs +++ b/asg/src/statement/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/iteration.rs b/asg/src/statement/iteration.rs index 183b98c626..bc4c182a5a 100644 --- a/asg/src/statement/iteration.rs +++ b/asg/src/statement/iteration.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/mod.rs b/asg/src/statement/mod.rs index 51477a4532..ef7f689970 100644 --- a/asg/src/statement/mod.rs +++ b/asg/src/statement/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/statement/return_.rs b/asg/src/statement/return_.rs index 0ee87633df..a288903f95 100644 --- a/asg/src/statement/return_.rs +++ b/asg/src/statement/return_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/type_.rs b/asg/src/type_.rs index 67fb6eeb9d..9964cda9c0 100644 --- a/asg/src/type_.rs +++ b/asg/src/type_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/src/variable.rs b/asg/src/variable.rs index 3590556d72..f255f56ec8 100644 --- a/asg/src/variable.rs +++ b/asg/src/variable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/address/mod.rs b/asg/tests/fail/address/mod.rs index b5b4cff3ea..159dd9bf0d 100644 --- a/asg/tests/fail/address/mod.rs +++ b/asg/tests/fail/address/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/array/mod.rs b/asg/tests/fail/array/mod.rs index 6f7b2fd19e..7e75a94039 100644 --- a/asg/tests/fail/array/mod.rs +++ b/asg/tests/fail/array/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/boolean/mod.rs b/asg/tests/fail/boolean/mod.rs index 780ed3aa08..4f20d97b61 100644 --- a/asg/tests/fail/boolean/mod.rs +++ b/asg/tests/fail/boolean/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/circuits/mod.rs b/asg/tests/fail/circuits/mod.rs index a9add5a7e1..a1f8a10f0b 100644 --- a/asg/tests/fail/circuits/mod.rs +++ b/asg/tests/fail/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/console/mod.rs b/asg/tests/fail/console/mod.rs index f6dc483fe1..04266ef925 100644 --- a/asg/tests/fail/console/mod.rs +++ b/asg/tests/fail/console/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/core/mod.rs b/asg/tests/fail/core/mod.rs index 9ab7bb52bc..323ffe37d5 100644 --- a/asg/tests/fail/core/mod.rs +++ b/asg/tests/fail/core/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/definition/mod.rs b/asg/tests/fail/definition/mod.rs index e946846b69..2491ffe4b0 100644 --- a/asg/tests/fail/definition/mod.rs +++ b/asg/tests/fail/definition/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/field/mod.rs b/asg/tests/fail/field/mod.rs index e946846b69..2491ffe4b0 100644 --- a/asg/tests/fail/field/mod.rs +++ b/asg/tests/fail/field/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/function/mod.rs b/asg/tests/fail/function/mod.rs index 3156e3b580..40f0119183 100644 --- a/asg/tests/fail/function/mod.rs +++ b/asg/tests/fail/function/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/group/mod.rs b/asg/tests/fail/group/mod.rs index f8e29728ce..a7f66eb128 100644 --- a/asg/tests/fail/group/mod.rs +++ b/asg/tests/fail/group/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -48,5 +48,4 @@ fn test_both_sign_low() { fn test_both_sign_inferred() { let program_string = include_str!("both_sign_inferred.leo"); load_asg(program_string).err().unwrap(); - } diff --git a/asg/tests/fail/import/mod.rs b/asg/tests/fail/import/mod.rs index e946846b69..2491ffe4b0 100644 --- a/asg/tests/fail/import/mod.rs +++ b/asg/tests/fail/import/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/i128/mod.rs b/asg/tests/fail/integers/i128/mod.rs index 2062617fdf..33133bf33f 100644 --- a/asg/tests/fail/integers/i128/mod.rs +++ b/asg/tests/fail/integers/i128/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/i16/mod.rs b/asg/tests/fail/integers/i16/mod.rs index a60934189f..1d5d215911 100644 --- a/asg/tests/fail/integers/i16/mod.rs +++ b/asg/tests/fail/integers/i16/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/i32/mod.rs b/asg/tests/fail/integers/i32/mod.rs index fcae16f93e..64f7110c6e 100644 --- a/asg/tests/fail/integers/i32/mod.rs +++ b/asg/tests/fail/integers/i32/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/i64/mod.rs b/asg/tests/fail/integers/i64/mod.rs index 6d1aff51ea..4b7678d91a 100644 --- a/asg/tests/fail/integers/i64/mod.rs +++ b/asg/tests/fail/integers/i64/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/i8/mod.rs b/asg/tests/fail/integers/i8/mod.rs index c4820fcea5..47e03e410d 100644 --- a/asg/tests/fail/integers/i8/mod.rs +++ b/asg/tests/fail/integers/i8/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/int_macro.rs b/asg/tests/fail/integers/int_macro.rs index 697a18998d..430ed938e4 100644 --- a/asg/tests/fail/integers/int_macro.rs +++ b/asg/tests/fail/integers/int_macro.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/integer_tester.rs b/asg/tests/fail/integers/integer_tester.rs index 0c30b88dd1..db76fcea36 100644 --- a/asg/tests/fail/integers/integer_tester.rs +++ b/asg/tests/fail/integers/integer_tester.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/mod.rs b/asg/tests/fail/integers/mod.rs index d9fc896497..6195351f1c 100644 --- a/asg/tests/fail/integers/mod.rs +++ b/asg/tests/fail/integers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/u128/mod.rs b/asg/tests/fail/integers/u128/mod.rs index 45785327f2..dbd33d57fd 100644 --- a/asg/tests/fail/integers/u128/mod.rs +++ b/asg/tests/fail/integers/u128/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/u16/mod.rs b/asg/tests/fail/integers/u16/mod.rs index 10f8c85612..18bd1424fd 100644 --- a/asg/tests/fail/integers/u16/mod.rs +++ b/asg/tests/fail/integers/u16/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/u32/mod.rs b/asg/tests/fail/integers/u32/mod.rs index 65b17b801d..49cc232815 100644 --- a/asg/tests/fail/integers/u32/mod.rs +++ b/asg/tests/fail/integers/u32/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/u64/mod.rs b/asg/tests/fail/integers/u64/mod.rs index 416ebdc3b6..0af81e075b 100644 --- a/asg/tests/fail/integers/u64/mod.rs +++ b/asg/tests/fail/integers/u64/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/u8/mod.rs b/asg/tests/fail/integers/u8/mod.rs index 3eb6ca944c..cd876caa89 100644 --- a/asg/tests/fail/integers/u8/mod.rs +++ b/asg/tests/fail/integers/u8/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/integers/uint_macro.rs b/asg/tests/fail/integers/uint_macro.rs index ac81632566..5aa251aabf 100644 --- a/asg/tests/fail/integers/uint_macro.rs +++ b/asg/tests/fail/integers/uint_macro.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/mod.rs b/asg/tests/fail/mod.rs index 718731f2c3..dd8ca1943e 100644 --- a/asg/tests/fail/mod.rs +++ b/asg/tests/fail/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/mutability/mod.rs b/asg/tests/fail/mutability/mod.rs index 642369feb6..14cf69ae1e 100644 --- a/asg/tests/fail/mutability/mod.rs +++ b/asg/tests/fail/mutability/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/statements/mod.rs b/asg/tests/fail/statements/mod.rs index 99ad1332df..ada1007318 100644 --- a/asg/tests/fail/statements/mod.rs +++ b/asg/tests/fail/statements/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/fail/tuples/mod.rs b/asg/tests/fail/tuples/mod.rs index e946846b69..2491ffe4b0 100644 --- a/asg/tests/fail/tuples/mod.rs +++ b/asg/tests/fail/tuples/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/mod.rs b/asg/tests/mod.rs index 631ade6e5b..54e018cbee 100644 --- a/asg/tests/mod.rs +++ b/asg/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/address/mod.rs b/asg/tests/pass/address/mod.rs index 1237a2fd06..e55ebc5d71 100644 --- a/asg/tests/pass/address/mod.rs +++ b/asg/tests/pass/address/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/array/mod.rs b/asg/tests/pass/array/mod.rs index 563d4bad61..04f6532d07 100644 --- a/asg/tests/pass/array/mod.rs +++ b/asg/tests/pass/array/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/boolean/mod.rs b/asg/tests/pass/boolean/mod.rs index e23749836b..ef8c03dcd1 100644 --- a/asg/tests/pass/boolean/mod.rs +++ b/asg/tests/pass/boolean/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/circuits/mod.rs b/asg/tests/pass/circuits/mod.rs index 00d3aa0270..4b1fae898c 100644 --- a/asg/tests/pass/circuits/mod.rs +++ b/asg/tests/pass/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/console/mod.rs b/asg/tests/pass/console/mod.rs index b32fc56ff2..876359c0dd 100644 --- a/asg/tests/pass/console/mod.rs +++ b/asg/tests/pass/console/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/core/mod.rs b/asg/tests/pass/core/mod.rs index edceb6112e..05564fbe84 100644 --- a/asg/tests/pass/core/mod.rs +++ b/asg/tests/pass/core/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/definition/mod.rs b/asg/tests/pass/definition/mod.rs index ebf69c6a66..7768810196 100644 --- a/asg/tests/pass/definition/mod.rs +++ b/asg/tests/pass/definition/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/field/mod.rs b/asg/tests/pass/field/mod.rs index 3401e24e14..ba3107e2e4 100644 --- a/asg/tests/pass/field/mod.rs +++ b/asg/tests/pass/field/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/form_ast.rs b/asg/tests/pass/form_ast.rs index 58f00119fb..cc4b196f0b 100644 --- a/asg/tests/pass/form_ast.rs +++ b/asg/tests/pass/form_ast.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/function/mod.rs b/asg/tests/pass/function/mod.rs index 456d5e7dd1..4e1af4f151 100644 --- a/asg/tests/pass/function/mod.rs +++ b/asg/tests/pass/function/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/group/mod.rs b/asg/tests/pass/group/mod.rs index c800104bc9..cbe7aef3fa 100644 --- a/asg/tests/pass/group/mod.rs +++ b/asg/tests/pass/group/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/import/mod.rs b/asg/tests/pass/import/mod.rs index 41a84f8a3b..1dfa59be83 100644 --- a/asg/tests/pass/import/mod.rs +++ b/asg/tests/pass/import/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/input_files/mod.rs b/asg/tests/pass/input_files/mod.rs index 71ce8415d9..d9d41ccf12 100644 --- a/asg/tests/pass/input_files/mod.rs +++ b/asg/tests/pass/input_files/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/input_files/program_input/mod.rs b/asg/tests/pass/input_files/program_input/mod.rs index 378b635fa7..f8e68e13af 100644 --- a/asg/tests/pass/input_files/program_input/mod.rs +++ b/asg/tests/pass/input_files/program_input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/input_files/program_input_and_program_state/mod.rs b/asg/tests/pass/input_files/program_input_and_program_state/mod.rs index 195013cc7a..2d1af96f2b 100644 --- a/asg/tests/pass/input_files/program_input_and_program_state/mod.rs +++ b/asg/tests/pass/input_files/program_input_and_program_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/input_files/program_state/mod.rs b/asg/tests/pass/input_files/program_state/mod.rs index 598a513f15..004345dc26 100644 --- a/asg/tests/pass/input_files/program_state/mod.rs +++ b/asg/tests/pass/input_files/program_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/i128/mod.rs b/asg/tests/pass/integers/i128/mod.rs index 522e9f2f10..a15de363f2 100644 --- a/asg/tests/pass/integers/i128/mod.rs +++ b/asg/tests/pass/integers/i128/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/i16/mod.rs b/asg/tests/pass/integers/i16/mod.rs index e5a329d18a..d27140edca 100644 --- a/asg/tests/pass/integers/i16/mod.rs +++ b/asg/tests/pass/integers/i16/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/i32/mod.rs b/asg/tests/pass/integers/i32/mod.rs index a2f1012941..fd75e17ba2 100644 --- a/asg/tests/pass/integers/i32/mod.rs +++ b/asg/tests/pass/integers/i32/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/i64/mod.rs b/asg/tests/pass/integers/i64/mod.rs index e4cce13da3..00c64123ff 100644 --- a/asg/tests/pass/integers/i64/mod.rs +++ b/asg/tests/pass/integers/i64/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/i8/mod.rs b/asg/tests/pass/integers/i8/mod.rs index 225e7a3c55..9f39f152fe 100644 --- a/asg/tests/pass/integers/i8/mod.rs +++ b/asg/tests/pass/integers/i8/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/int_macro.rs b/asg/tests/pass/integers/int_macro.rs index 734b1773e5..4afdca8ecc 100644 --- a/asg/tests/pass/integers/int_macro.rs +++ b/asg/tests/pass/integers/int_macro.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/integer_tester.rs b/asg/tests/pass/integers/integer_tester.rs index f72930b8d0..00c72b5ce4 100644 --- a/asg/tests/pass/integers/integer_tester.rs +++ b/asg/tests/pass/integers/integer_tester.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/mod.rs b/asg/tests/pass/integers/mod.rs index d9fc896497..6195351f1c 100644 --- a/asg/tests/pass/integers/mod.rs +++ b/asg/tests/pass/integers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/u128/mod.rs b/asg/tests/pass/integers/u128/mod.rs index f025e85ba5..8a6d0bd606 100644 --- a/asg/tests/pass/integers/u128/mod.rs +++ b/asg/tests/pass/integers/u128/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/u16/mod.rs b/asg/tests/pass/integers/u16/mod.rs index da4af3c797..bc83b5fa61 100644 --- a/asg/tests/pass/integers/u16/mod.rs +++ b/asg/tests/pass/integers/u16/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/u32/mod.rs b/asg/tests/pass/integers/u32/mod.rs index 64668acff5..8fdac0d9e5 100644 --- a/asg/tests/pass/integers/u32/mod.rs +++ b/asg/tests/pass/integers/u32/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/u64/mod.rs b/asg/tests/pass/integers/u64/mod.rs index 81ef097ce7..e97c784cdf 100644 --- a/asg/tests/pass/integers/u64/mod.rs +++ b/asg/tests/pass/integers/u64/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/u8/mod.rs b/asg/tests/pass/integers/u8/mod.rs index ee298c8f42..c1fee383e2 100644 --- a/asg/tests/pass/integers/u8/mod.rs +++ b/asg/tests/pass/integers/u8/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/integers/uint_macro.rs b/asg/tests/pass/integers/uint_macro.rs index 7ca8ba3325..93b27faaa7 100644 --- a/asg/tests/pass/integers/uint_macro.rs +++ b/asg/tests/pass/integers/uint_macro.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/mod.rs b/asg/tests/pass/mod.rs index fa986b91c0..62e9004bf4 100644 --- a/asg/tests/pass/mod.rs +++ b/asg/tests/pass/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/mutability/mod.rs b/asg/tests/pass/mutability/mod.rs index 12dd50b9bb..9d757c1085 100644 --- a/asg/tests/pass/mutability/mod.rs +++ b/asg/tests/pass/mutability/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/statements/conditional/mod.rs b/asg/tests/pass/statements/conditional/mod.rs index 2d43bda21a..35f54f4846 100644 --- a/asg/tests/pass/statements/conditional/mod.rs +++ b/asg/tests/pass/statements/conditional/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/statements/mod.rs b/asg/tests/pass/statements/mod.rs index bd6ed29563..2874b5aa31 100644 --- a/asg/tests/pass/statements/mod.rs +++ b/asg/tests/pass/statements/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/asg/tests/pass/tuples/mod.rs b/asg/tests/pass/tuples/mod.rs index 00fad01a43..25949c41d7 100644 --- a/asg/tests/pass/tuples/mod.rs +++ b/asg/tests/pass/tuples/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/benches/leo_ast.rs b/ast/benches/leo_ast.rs index 6c30b94341..d5420b0543 100644 --- a/ast/benches/leo_ast.rs +++ b/ast/benches/leo_ast.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/annotation.rs b/ast/src/annotation.rs index ff6a2dd4b7..9ccc5e833d 100644 --- a/ast/src/annotation.rs +++ b/ast/src/annotation.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/circuits/circuit.rs b/ast/src/circuits/circuit.rs index 25ead98a00..79c2280cfc 100644 --- a/ast/src/circuits/circuit.rs +++ b/ast/src/circuits/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/circuits/circuit_member.rs b/ast/src/circuits/circuit_member.rs index c63f3f0403..29b5777587 100644 --- a/ast/src/circuits/circuit_member.rs +++ b/ast/src/circuits/circuit_member.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/circuits/circuit_variable_definition.rs b/ast/src/circuits/circuit_variable_definition.rs index efa345f9d5..6cd3484f88 100644 --- a/ast/src/circuits/circuit_variable_definition.rs +++ b/ast/src/circuits/circuit_variable_definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/circuits/mod.rs b/ast/src/circuits/mod.rs index e25aaff89e..8d0db90cfa 100644 --- a/ast/src/circuits/mod.rs +++ b/ast/src/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/array_dimensions.rs b/ast/src/common/array_dimensions.rs index ed345863ba..a401475200 100644 --- a/ast/src/common/array_dimensions.rs +++ b/ast/src/common/array_dimensions.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/identifier.rs b/ast/src/common/identifier.rs index ba37f84c95..1b130a6c55 100644 --- a/ast/src/common/identifier.rs +++ b/ast/src/common/identifier.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/input_keyword.rs b/ast/src/common/input_keyword.rs index a4cbd0719b..a6dd0d5e74 100644 --- a/ast/src/common/input_keyword.rs +++ b/ast/src/common/input_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/mod.rs b/ast/src/common/mod.rs index eadd6b5bb4..ad86f6ee2b 100644 --- a/ast/src/common/mod.rs +++ b/ast/src/common/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/mut_self_keyword.rs b/ast/src/common/mut_self_keyword.rs index 1349e973b8..0d4bf62168 100644 --- a/ast/src/common/mut_self_keyword.rs +++ b/ast/src/common/mut_self_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/positive_number.rs b/ast/src/common/positive_number.rs index 664bfa9677..667727b1b5 100644 --- a/ast/src/common/positive_number.rs +++ b/ast/src/common/positive_number.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/self_keyword.rs b/ast/src/common/self_keyword.rs index 6466690fc0..caa9e1b7f6 100644 --- a/ast/src/common/self_keyword.rs +++ b/ast/src/common/self_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/span.rs b/ast/src/common/span.rs index 8dac59235b..e6e7a70388 100644 --- a/ast/src/common/span.rs +++ b/ast/src/common/span.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/common/spread_or_expression.rs b/ast/src/common/spread_or_expression.rs index bd27ea0dbf..78f940a5af 100644 --- a/ast/src/common/spread_or_expression.rs +++ b/ast/src/common/spread_or_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/errors/deprecated.rs b/ast/src/errors/deprecated.rs index 3be2002a76..a7ae558421 100644 --- a/ast/src/errors/deprecated.rs +++ b/ast/src/errors/deprecated.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/errors/error.rs b/ast/src/errors/error.rs index b6c2372050..103b0ea9cb 100644 --- a/ast/src/errors/error.rs +++ b/ast/src/errors/error.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/errors/mod.rs b/ast/src/errors/mod.rs index 9ba0acfb32..d3bb4d70df 100644 --- a/ast/src/errors/mod.rs +++ b/ast/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/array_access.rs b/ast/src/expression/array_access.rs index 0a89d3138a..b5011afb9f 100644 --- a/ast/src/expression/array_access.rs +++ b/ast/src/expression/array_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/array_init.rs b/ast/src/expression/array_init.rs index a95b79ef90..416488318b 100644 --- a/ast/src/expression/array_init.rs +++ b/ast/src/expression/array_init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/array_inline.rs b/ast/src/expression/array_inline.rs index e23a45284c..9df8f71b32 100644 --- a/ast/src/expression/array_inline.rs +++ b/ast/src/expression/array_inline.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/array_range_access.rs b/ast/src/expression/array_range_access.rs index 5bde704fb2..a9f3e29289 100644 --- a/ast/src/expression/array_range_access.rs +++ b/ast/src/expression/array_range_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/binary.rs b/ast/src/expression/binary.rs index a279477c09..d9c55c4f4d 100644 --- a/ast/src/expression/binary.rs +++ b/ast/src/expression/binary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/call.rs b/ast/src/expression/call.rs index c69edc7cc3..528b751434 100644 --- a/ast/src/expression/call.rs +++ b/ast/src/expression/call.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/circuit_init.rs b/ast/src/expression/circuit_init.rs index 2d12d9e386..d189d3521f 100644 --- a/ast/src/expression/circuit_init.rs +++ b/ast/src/expression/circuit_init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/circuit_member_access.rs b/ast/src/expression/circuit_member_access.rs index ffd4435b25..a86c5a85d1 100644 --- a/ast/src/expression/circuit_member_access.rs +++ b/ast/src/expression/circuit_member_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/circuit_static_function_access.rs b/ast/src/expression/circuit_static_function_access.rs index 68a191ad65..ddbe58d44b 100644 --- a/ast/src/expression/circuit_static_function_access.rs +++ b/ast/src/expression/circuit_static_function_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/mod.rs b/ast/src/expression/mod.rs index ad21e2b1f4..b276079099 100644 --- a/ast/src/expression/mod.rs +++ b/ast/src/expression/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/ternary.rs b/ast/src/expression/ternary.rs index e994ec6dd2..e1244c5a0e 100644 --- a/ast/src/expression/ternary.rs +++ b/ast/src/expression/ternary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/tuple_access.rs b/ast/src/expression/tuple_access.rs index ec0c72dbd1..66a399b60b 100644 --- a/ast/src/expression/tuple_access.rs +++ b/ast/src/expression/tuple_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/tuple_init.rs b/ast/src/expression/tuple_init.rs index d530603157..72e740c39f 100644 --- a/ast/src/expression/tuple_init.rs +++ b/ast/src/expression/tuple_init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/unary.rs b/ast/src/expression/unary.rs index 50428853d6..af5f2c685c 100644 --- a/ast/src/expression/unary.rs +++ b/ast/src/expression/unary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/expression/value.rs b/ast/src/expression/value.rs index 01d18d04e6..572fd24aef 100644 --- a/ast/src/expression/value.rs +++ b/ast/src/expression/value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/functions/function.rs b/ast/src/functions/function.rs index e2dbbb9842..e9cea0c8c3 100644 --- a/ast/src/functions/function.rs +++ b/ast/src/functions/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/functions/input/function_input.rs b/ast/src/functions/input/function_input.rs index 38090796c8..755892d9bd 100644 --- a/ast/src/functions/input/function_input.rs +++ b/ast/src/functions/input/function_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/functions/input/input_variable.rs b/ast/src/functions/input/input_variable.rs index c04dd230f1..ecab44a959 100644 --- a/ast/src/functions/input/input_variable.rs +++ b/ast/src/functions/input/input_variable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/functions/input/mod.rs b/ast/src/functions/input/mod.rs index d673bea746..b78ee8bbd7 100644 --- a/ast/src/functions/input/mod.rs +++ b/ast/src/functions/input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/functions/mod.rs b/ast/src/functions/mod.rs index bb15f47eb9..f16e3448d2 100644 --- a/ast/src/functions/mod.rs +++ b/ast/src/functions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/functions/test_function.rs b/ast/src/functions/test_function.rs index 6996b2da20..eb9f09a346 100644 --- a/ast/src/functions/test_function.rs +++ b/ast/src/functions/test_function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/groups/group_coordinate.rs b/ast/src/groups/group_coordinate.rs index e3dea687ac..fd201856dd 100644 --- a/ast/src/groups/group_coordinate.rs +++ b/ast/src/groups/group_coordinate.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/groups/group_value.rs b/ast/src/groups/group_value.rs index 0385e2896f..5e0c42113e 100644 --- a/ast/src/groups/group_value.rs +++ b/ast/src/groups/group_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/groups/mod.rs b/ast/src/groups/mod.rs index d7746a5b86..d150ec4a23 100644 --- a/ast/src/groups/mod.rs +++ b/ast/src/groups/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/imports/import.rs b/ast/src/imports/import.rs index 72bca9e33e..614fa5b36d 100644 --- a/ast/src/imports/import.rs +++ b/ast/src/imports/import.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/imports/import_symbol.rs b/ast/src/imports/import_symbol.rs index 5ba0636c21..20d8650793 100644 --- a/ast/src/imports/import_symbol.rs +++ b/ast/src/imports/import_symbol.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/imports/mod.rs b/ast/src/imports/mod.rs index faffbb0afe..ba6e6d8eb9 100644 --- a/ast/src/imports/mod.rs +++ b/ast/src/imports/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/imports/package.rs b/ast/src/imports/package.rs index 071393fe54..091e72142d 100644 --- a/ast/src/imports/package.rs +++ b/ast/src/imports/package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/imports/package_access.rs b/ast/src/imports/package_access.rs index f7f0c92605..a94b77452e 100644 --- a/ast/src/imports/package_access.rs +++ b/ast/src/imports/package_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/input.rs b/ast/src/input/input.rs index ed74c41937..ae201c2aec 100644 --- a/ast/src/input/input.rs +++ b/ast/src/input/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/input_value.rs b/ast/src/input/input_value.rs index 975b99dd17..e531b159f7 100644 --- a/ast/src/input/input_value.rs +++ b/ast/src/input/input_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/macros.rs b/ast/src/input/macros.rs index 75a04d8f3e..d77655ecae 100644 --- a/ast/src/input/macros.rs +++ b/ast/src/input/macros.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/mod.rs b/ast/src/input/mod.rs index 5036517f71..0c37cc9ddb 100644 --- a/ast/src/input/mod.rs +++ b/ast/src/input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/parameters/mod.rs b/ast/src/input/parameters/mod.rs index c1ae3fad35..15f8820a53 100644 --- a/ast/src/input/parameters/mod.rs +++ b/ast/src/input/parameters/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/parameters/parameter.rs b/ast/src/input/parameters/parameter.rs index 964538dc88..7f275f2fea 100644 --- a/ast/src/input/parameters/parameter.rs +++ b/ast/src/input/parameters/parameter.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_input/main_input.rs b/ast/src/input/program_input/main_input.rs index d930a0b050..7d1b496134 100644 --- a/ast/src/input/program_input/main_input.rs +++ b/ast/src/input/program_input/main_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_input/mod.rs b/ast/src/input/program_input/mod.rs index 1959fad7b9..dfda5a073f 100644 --- a/ast/src/input/program_input/mod.rs +++ b/ast/src/input/program_input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_input/program_input.rs b/ast/src/input/program_input/program_input.rs index 92f08b63d5..42efab1a25 100644 --- a/ast/src/input/program_input/program_input.rs +++ b/ast/src/input/program_input/program_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_input/registers.rs b/ast/src/input/program_input/registers.rs index e0981602ad..21e25030e3 100644 --- a/ast/src/input/program_input/registers.rs +++ b/ast/src/input/program_input/registers.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/mod.rs b/ast/src/input/program_state/mod.rs index 7af5d1b318..04c3105fb7 100644 --- a/ast/src/input/program_state/mod.rs +++ b/ast/src/input/program_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/private_state/mod.rs b/ast/src/input/program_state/private_state/mod.rs index f9cad1e98b..ce1dbf8032 100644 --- a/ast/src/input/program_state/private_state/mod.rs +++ b/ast/src/input/program_state/private_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/private_state/private_state.rs b/ast/src/input/program_state/private_state/private_state.rs index ff8ae2fc66..f7f1f9edc9 100644 --- a/ast/src/input/program_state/private_state/private_state.rs +++ b/ast/src/input/program_state/private_state/private_state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/private_state/record.rs b/ast/src/input/program_state/private_state/record.rs index 0aef9d50e1..4cb71920aa 100644 --- a/ast/src/input/program_state/private_state/record.rs +++ b/ast/src/input/program_state/private_state/record.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/private_state/state_leaf.rs b/ast/src/input/program_state/private_state/state_leaf.rs index 2fd1c01d72..8e9b0e231b 100644 --- a/ast/src/input/program_state/private_state/state_leaf.rs +++ b/ast/src/input/program_state/private_state/state_leaf.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/program_state.rs b/ast/src/input/program_state/program_state.rs index 3c92e5a930..04275d176c 100644 --- a/ast/src/input/program_state/program_state.rs +++ b/ast/src/input/program_state/program_state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/public_state/mod.rs b/ast/src/input/program_state/public_state/mod.rs index 4c03f2c37b..8d9ee8abb7 100644 --- a/ast/src/input/program_state/public_state/mod.rs +++ b/ast/src/input/program_state/public_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/public_state/public_state.rs b/ast/src/input/program_state/public_state/public_state.rs index 1d359c1d78..995aa06759 100644 --- a/ast/src/input/program_state/public_state/public_state.rs +++ b/ast/src/input/program_state/public_state/public_state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/input/program_state/public_state/state.rs b/ast/src/input/program_state/public_state/state.rs index 04b1a37923..dda85ddf94 100644 --- a/ast/src/input/program_state/public_state/state.rs +++ b/ast/src/input/program_state/public_state/state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/lib.rs b/ast/src/lib.rs index f7e7916a32..514be205cd 100644 --- a/ast/src/lib.rs +++ b/ast/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/main.rs b/ast/src/main.rs index 26570bc98a..02f627cc4a 100644 --- a/ast/src/main.rs +++ b/ast/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/node.rs b/ast/src/node.rs index 316899c401..f486503b50 100644 --- a/ast/src/node.rs +++ b/ast/src/node.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/program.rs b/ast/src/program.rs index f5edd59336..531a6316bb 100644 --- a/ast/src/program.rs +++ b/ast/src/program.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/assign/assignee.rs b/ast/src/statements/assign/assignee.rs index d8f0dee7b6..e84cccf2a9 100644 --- a/ast/src/statements/assign/assignee.rs +++ b/ast/src/statements/assign/assignee.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/assign/mod.rs b/ast/src/statements/assign/mod.rs index 96a4df6917..947472d14c 100644 --- a/ast/src/statements/assign/mod.rs +++ b/ast/src/statements/assign/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/block.rs b/ast/src/statements/block.rs index fb8064793c..d6cb72f26f 100644 --- a/ast/src/statements/block.rs +++ b/ast/src/statements/block.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/conditional.rs b/ast/src/statements/conditional.rs index 267cfc6fe5..cf836ef3ed 100644 --- a/ast/src/statements/conditional.rs +++ b/ast/src/statements/conditional.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/console/console_function.rs b/ast/src/statements/console/console_function.rs index c9e3356c31..7e9f9892ca 100644 --- a/ast/src/statements/console/console_function.rs +++ b/ast/src/statements/console/console_function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/console/console_statement.rs b/ast/src/statements/console/console_statement.rs index 852d696368..ad837f42f5 100644 --- a/ast/src/statements/console/console_statement.rs +++ b/ast/src/statements/console/console_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/console/formatted_container.rs b/ast/src/statements/console/formatted_container.rs index d4ad7600ad..4634aa4c4a 100644 --- a/ast/src/statements/console/formatted_container.rs +++ b/ast/src/statements/console/formatted_container.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/console/formatted_string.rs b/ast/src/statements/console/formatted_string.rs index ac0f5918f8..f96baa1fe1 100644 --- a/ast/src/statements/console/formatted_string.rs +++ b/ast/src/statements/console/formatted_string.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/console/mod.rs b/ast/src/statements/console/mod.rs index 39d532ca08..da4f604aed 100644 --- a/ast/src/statements/console/mod.rs +++ b/ast/src/statements/console/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/definition/declare.rs b/ast/src/statements/definition/declare.rs index 399604831a..de00d5f210 100644 --- a/ast/src/statements/definition/declare.rs +++ b/ast/src/statements/definition/declare.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/definition/mod.rs b/ast/src/statements/definition/mod.rs index 8998c4b397..78ad5ea933 100644 --- a/ast/src/statements/definition/mod.rs +++ b/ast/src/statements/definition/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/definition/variable_name.rs b/ast/src/statements/definition/variable_name.rs index 455feb8426..7384b8ee1d 100644 --- a/ast/src/statements/definition/variable_name.rs +++ b/ast/src/statements/definition/variable_name.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/expression.rs b/ast/src/statements/expression.rs index bbd7d45122..f9ff66313c 100644 --- a/ast/src/statements/expression.rs +++ b/ast/src/statements/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/iteration.rs b/ast/src/statements/iteration.rs index 8a57e8a6d6..70126ff8ad 100644 --- a/ast/src/statements/iteration.rs +++ b/ast/src/statements/iteration.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/mod.rs b/ast/src/statements/mod.rs index 8a94153578..02c0f2243a 100644 --- a/ast/src/statements/mod.rs +++ b/ast/src/statements/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/return_statement.rs b/ast/src/statements/return_statement.rs index c3e546fbc6..e1279b09c2 100644 --- a/ast/src/statements/return_statement.rs +++ b/ast/src/statements/return_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/statements/statement.rs b/ast/src/statements/statement.rs index e623b42e5a..31067093e7 100644 --- a/ast/src/statements/statement.rs +++ b/ast/src/statements/statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/types/integer_type.rs b/ast/src/types/integer_type.rs index a65e6595f0..1ced1e76f7 100644 --- a/ast/src/types/integer_type.rs +++ b/ast/src/types/integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/types/mod.rs b/ast/src/types/mod.rs index 9d9ca5aa82..ebba862921 100644 --- a/ast/src/types/mod.rs +++ b/ast/src/types/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/src/types/type_.rs b/ast/src/types/type_.rs index 554e524898..1d20699c31 100644 --- a/ast/src/types/type_.rs +++ b/ast/src/types/type_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/tests/mod.rs b/ast/tests/mod.rs index 6698b5585a..c2c2ddea35 100644 --- a/ast/tests/mod.rs +++ b/ast/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/tests/serialization/json.rs b/ast/tests/serialization/json.rs index b1a765c0ee..119dc90260 100644 --- a/ast/tests/serialization/json.rs +++ b/ast/tests/serialization/json.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/ast/tests/serialization/mod.rs b/ast/tests/serialization/mod.rs index 19cc88a3bf..5096607ede 100644 --- a/ast/tests/serialization/mod.rs +++ b/ast/tests/serialization/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/compiler.rs b/compiler/src/compiler.rs index e47955a7c3..7fc9fc6846 100644 --- a/compiler/src/compiler.rs +++ b/compiler/src/compiler.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/console/assert.rs b/compiler/src/console/assert.rs index 3b946959b3..e0c0582bbc 100644 --- a/compiler/src/console/assert.rs +++ b/compiler/src/console/assert.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/console/console.rs b/compiler/src/console/console.rs index 8035a9238f..0c6ba412e0 100644 --- a/compiler/src/console/console.rs +++ b/compiler/src/console/console.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/console/format.rs b/compiler/src/console/format.rs index 1c16f46955..50b7aec7b9 100644 --- a/compiler/src/console/format.rs +++ b/compiler/src/console/format.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/console/mod.rs b/compiler/src/console/mod.rs index 6e3be58884..3e2dc3dd35 100644 --- a/compiler/src/console/mod.rs +++ b/compiler/src/console/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/constraints/constraints.rs b/compiler/src/constraints/constraints.rs index 4d4e1252e7..f51464f7f6 100644 --- a/compiler/src/constraints/constraints.rs +++ b/compiler/src/constraints/constraints.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/constraints/mod.rs b/compiler/src/constraints/mod.rs index 2146eae5e9..9b03486939 100644 --- a/compiler/src/constraints/mod.rs +++ b/compiler/src/constraints/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/definition/definition.rs b/compiler/src/definition/definition.rs index ca9623ec0c..3b46f30f79 100644 --- a/compiler/src/definition/definition.rs +++ b/compiler/src/definition/definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/definition/definitions.rs b/compiler/src/definition/definitions.rs index d075c779f5..7562f9ce2a 100644 --- a/compiler/src/definition/definitions.rs +++ b/compiler/src/definition/definitions.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/definition/mod.rs b/compiler/src/definition/mod.rs index c62d778a71..5c4f68da6d 100644 --- a/compiler/src/definition/mod.rs +++ b/compiler/src/definition/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/compiler.rs b/compiler/src/errors/compiler.rs index cfffad87a0..ff433e1301 100644 --- a/compiler/src/errors/compiler.rs +++ b/compiler/src/errors/compiler.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/console.rs b/compiler/src/errors/console.rs index 7366bf806f..c68a0035dd 100644 --- a/compiler/src/errors/console.rs +++ b/compiler/src/errors/console.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/expression.rs b/compiler/src/errors/expression.rs index aebc0acfbf..05f650e309 100644 --- a/compiler/src/errors/expression.rs +++ b/compiler/src/errors/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/function.rs b/compiler/src/errors/function.rs index 49dfae9467..d50c9e99c0 100644 --- a/compiler/src/errors/function.rs +++ b/compiler/src/errors/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/import.rs b/compiler/src/errors/import.rs index a38de223ad..3406ec33e0 100644 --- a/compiler/src/errors/import.rs +++ b/compiler/src/errors/import.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/mod.rs b/compiler/src/errors/mod.rs index 81d3d6814e..daf4325aa2 100644 --- a/compiler/src/errors/mod.rs +++ b/compiler/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/output_bytes.rs b/compiler/src/errors/output_bytes.rs index ee1366944e..3e2b3bc4d4 100644 --- a/compiler/src/errors/output_bytes.rs +++ b/compiler/src/errors/output_bytes.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/output_file.rs b/compiler/src/errors/output_file.rs index c47a4e8ead..c8b18185d6 100644 --- a/compiler/src/errors/output_file.rs +++ b/compiler/src/errors/output_file.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/statement.rs b/compiler/src/errors/statement.rs index eedff6892f..e62d74aed6 100644 --- a/compiler/src/errors/statement.rs +++ b/compiler/src/errors/statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/address.rs b/compiler/src/errors/value/address.rs index 7d8bcfbf00..aa5c769ffb 100644 --- a/compiler/src/errors/value/address.rs +++ b/compiler/src/errors/value/address.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/boolean.rs b/compiler/src/errors/value/boolean.rs index 375c312c7a..fd0a5d8470 100644 --- a/compiler/src/errors/value/boolean.rs +++ b/compiler/src/errors/value/boolean.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/field.rs b/compiler/src/errors/value/field.rs index f125f0d8bc..55509037eb 100644 --- a/compiler/src/errors/value/field.rs +++ b/compiler/src/errors/value/field.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/group.rs b/compiler/src/errors/value/group.rs index 88a4e4c987..3de87b9b99 100644 --- a/compiler/src/errors/value/group.rs +++ b/compiler/src/errors/value/group.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/integer.rs b/compiler/src/errors/value/integer.rs index e2ce8ec198..43be823d92 100644 --- a/compiler/src/errors/value/integer.rs +++ b/compiler/src/errors/value/integer.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/mod.rs b/compiler/src/errors/value/mod.rs index 5871cd0494..91913b9730 100644 --- a/compiler/src/errors/value/mod.rs +++ b/compiler/src/errors/value/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/errors/value/value.rs b/compiler/src/errors/value/value.rs index 41c4c50e0c..66a7d50e83 100644 --- a/compiler/src/errors/value/value.rs +++ b/compiler/src/errors/value/value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/add.rs b/compiler/src/expression/arithmetic/add.rs index a64218c78f..e0b21d9da5 100644 --- a/compiler/src/expression/arithmetic/add.rs +++ b/compiler/src/expression/arithmetic/add.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/div.rs b/compiler/src/expression/arithmetic/div.rs index 77a86c10b5..981a165aac 100644 --- a/compiler/src/expression/arithmetic/div.rs +++ b/compiler/src/expression/arithmetic/div.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/mod.rs b/compiler/src/expression/arithmetic/mod.rs index f2805a29f2..5e5914ff2d 100644 --- a/compiler/src/expression/arithmetic/mod.rs +++ b/compiler/src/expression/arithmetic/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/mul.rs b/compiler/src/expression/arithmetic/mul.rs index 913c31f19a..7aaa93523d 100644 --- a/compiler/src/expression/arithmetic/mul.rs +++ b/compiler/src/expression/arithmetic/mul.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/negate.rs b/compiler/src/expression/arithmetic/negate.rs index d7994d14b5..8cd42843e6 100644 --- a/compiler/src/expression/arithmetic/negate.rs +++ b/compiler/src/expression/arithmetic/negate.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/pow.rs b/compiler/src/expression/arithmetic/pow.rs index a48458482f..5d269ce591 100644 --- a/compiler/src/expression/arithmetic/pow.rs +++ b/compiler/src/expression/arithmetic/pow.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/arithmetic/sub.rs b/compiler/src/expression/arithmetic/sub.rs index 632ed925fb..e3fa60add2 100644 --- a/compiler/src/expression/arithmetic/sub.rs +++ b/compiler/src/expression/arithmetic/sub.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/array/access.rs b/compiler/src/expression/array/access.rs index 1079a46df1..9ee6884bb4 100644 --- a/compiler/src/expression/array/access.rs +++ b/compiler/src/expression/array/access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/array/array.rs b/compiler/src/expression/array/array.rs index c52fec00d1..079a00ae96 100644 --- a/compiler/src/expression/array/array.rs +++ b/compiler/src/expression/array/array.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/array/index.rs b/compiler/src/expression/array/index.rs index 0c67ed4cdc..f59bef1a6a 100644 --- a/compiler/src/expression/array/index.rs +++ b/compiler/src/expression/array/index.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/array/mod.rs b/compiler/src/expression/array/mod.rs index 810c212678..c2cf2af54a 100644 --- a/compiler/src/expression/array/mod.rs +++ b/compiler/src/expression/array/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/binary/binary.rs b/compiler/src/expression/binary/binary.rs index 270e05fb1d..42bf89cf85 100644 --- a/compiler/src/expression/binary/binary.rs +++ b/compiler/src/expression/binary/binary.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/binary/mod.rs b/compiler/src/expression/binary/mod.rs index 1227a562c9..6f9529b70c 100644 --- a/compiler/src/expression/binary/mod.rs +++ b/compiler/src/expression/binary/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/binary/operand.rs b/compiler/src/expression/binary/operand.rs index 44730d2fea..a57d2deb0e 100644 --- a/compiler/src/expression/binary/operand.rs +++ b/compiler/src/expression/binary/operand.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/circuit/access.rs b/compiler/src/expression/circuit/access.rs index 244fc4512c..2e2a132b52 100644 --- a/compiler/src/expression/circuit/access.rs +++ b/compiler/src/expression/circuit/access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/circuit/circuit.rs b/compiler/src/expression/circuit/circuit.rs index 09f9c525d6..f561809107 100644 --- a/compiler/src/expression/circuit/circuit.rs +++ b/compiler/src/expression/circuit/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/circuit/mod.rs b/compiler/src/expression/circuit/mod.rs index 0f44eabce1..90ee5bdad8 100644 --- a/compiler/src/expression/circuit/mod.rs +++ b/compiler/src/expression/circuit/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/circuit/static_access.rs b/compiler/src/expression/circuit/static_access.rs index b10e9d0440..cbd2d70a79 100644 --- a/compiler/src/expression/circuit/static_access.rs +++ b/compiler/src/expression/circuit/static_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/conditional/conditional.rs b/compiler/src/expression/conditional/conditional.rs index 8d55c79741..891a196a4d 100644 --- a/compiler/src/expression/conditional/conditional.rs +++ b/compiler/src/expression/conditional/conditional.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/conditional/mod.rs b/compiler/src/expression/conditional/mod.rs index 08c326f92d..8e0f8d1b32 100644 --- a/compiler/src/expression/conditional/mod.rs +++ b/compiler/src/expression/conditional/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/expression.rs b/compiler/src/expression/expression.rs index 5d51f7f497..8abbaec91c 100644 --- a/compiler/src/expression/expression.rs +++ b/compiler/src/expression/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/function/core_circuit.rs b/compiler/src/expression/function/core_circuit.rs index 5e74cf38cf..889f4cfb12 100644 --- a/compiler/src/expression/function/core_circuit.rs +++ b/compiler/src/expression/function/core_circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/function/function.rs b/compiler/src/expression/function/function.rs index 24f510c2fe..2da8504a5b 100644 --- a/compiler/src/expression/function/function.rs +++ b/compiler/src/expression/function/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/function/mod.rs b/compiler/src/expression/function/mod.rs index e8f769f2ae..89e0cf4543 100644 --- a/compiler/src/expression/function/mod.rs +++ b/compiler/src/expression/function/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/identifier/identifier.rs b/compiler/src/expression/identifier/identifier.rs index a23634b082..3184e20309 100644 --- a/compiler/src/expression/identifier/identifier.rs +++ b/compiler/src/expression/identifier/identifier.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/identifier/mod.rs b/compiler/src/expression/identifier/mod.rs index e7782a19b7..56b8007a80 100644 --- a/compiler/src/expression/identifier/mod.rs +++ b/compiler/src/expression/identifier/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/logical/and.rs b/compiler/src/expression/logical/and.rs index 1000a2b7de..299891d555 100644 --- a/compiler/src/expression/logical/and.rs +++ b/compiler/src/expression/logical/and.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/logical/mod.rs b/compiler/src/expression/logical/mod.rs index 6edcf02686..699e39da6b 100644 --- a/compiler/src/expression/logical/mod.rs +++ b/compiler/src/expression/logical/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/logical/not.rs b/compiler/src/expression/logical/not.rs index 1401ed99d2..0f362126eb 100644 --- a/compiler/src/expression/logical/not.rs +++ b/compiler/src/expression/logical/not.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/logical/or.rs b/compiler/src/expression/logical/or.rs index d8bce5d7cc..9d4be1e1ca 100644 --- a/compiler/src/expression/logical/or.rs +++ b/compiler/src/expression/logical/or.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/mod.rs b/compiler/src/expression/mod.rs index 45fcde4b00..2e6d5eab08 100644 --- a/compiler/src/expression/mod.rs +++ b/compiler/src/expression/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/relational/eq.rs b/compiler/src/expression/relational/eq.rs index fc140d9203..6674af0c41 100644 --- a/compiler/src/expression/relational/eq.rs +++ b/compiler/src/expression/relational/eq.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/relational/ge.rs b/compiler/src/expression/relational/ge.rs index 9ffdae4f7e..92be95a607 100644 --- a/compiler/src/expression/relational/ge.rs +++ b/compiler/src/expression/relational/ge.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/relational/gt.rs b/compiler/src/expression/relational/gt.rs index 7f7e817660..b78a984cf1 100644 --- a/compiler/src/expression/relational/gt.rs +++ b/compiler/src/expression/relational/gt.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/relational/le.rs b/compiler/src/expression/relational/le.rs index ef615a76b4..5cde657024 100644 --- a/compiler/src/expression/relational/le.rs +++ b/compiler/src/expression/relational/le.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/relational/lt.rs b/compiler/src/expression/relational/lt.rs index f77fdb2a73..03012ab749 100644 --- a/compiler/src/expression/relational/lt.rs +++ b/compiler/src/expression/relational/lt.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/relational/mod.rs b/compiler/src/expression/relational/mod.rs index 892404cc36..0f064a5d8e 100644 --- a/compiler/src/expression/relational/mod.rs +++ b/compiler/src/expression/relational/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/tuple/access.rs b/compiler/src/expression/tuple/access.rs index 1218cdf15b..5134b14576 100644 --- a/compiler/src/expression/tuple/access.rs +++ b/compiler/src/expression/tuple/access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/tuple/mod.rs b/compiler/src/expression/tuple/mod.rs index db73733462..ab52716476 100644 --- a/compiler/src/expression/tuple/mod.rs +++ b/compiler/src/expression/tuple/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/expression/tuple/tuple.rs b/compiler/src/expression/tuple/tuple.rs index 358def9bdf..a04a0aa229 100644 --- a/compiler/src/expression/tuple/tuple.rs +++ b/compiler/src/expression/tuple/tuple.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/function.rs b/compiler/src/function/function.rs index 18cc1d86dc..18b1cbf68d 100644 --- a/compiler/src/function/function.rs +++ b/compiler/src/function/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/array.rs b/compiler/src/function/input/array.rs index 78df4e1802..6bedb7575f 100644 --- a/compiler/src/function/input/array.rs +++ b/compiler/src/function/input/array.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/function_input.rs b/compiler/src/function/input/function_input.rs index aee14ff3e6..190a079c92 100644 --- a/compiler/src/function/input/function_input.rs +++ b/compiler/src/function/input/function_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/input_keyword.rs b/compiler/src/function/input/input_keyword.rs index 040fb27a01..3dafc25f05 100644 --- a/compiler/src/function/input/input_keyword.rs +++ b/compiler/src/function/input/input_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/input_section.rs b/compiler/src/function/input/input_section.rs index 69947906d7..6cea5b62c0 100644 --- a/compiler/src/function/input/input_section.rs +++ b/compiler/src/function/input/input_section.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/main_function_input.rs b/compiler/src/function/input/main_function_input.rs index 0a14a9ac61..140d582dc2 100644 --- a/compiler/src/function/input/main_function_input.rs +++ b/compiler/src/function/input/main_function_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/mod.rs b/compiler/src/function/input/mod.rs index 562a9165b0..761a8abe54 100644 --- a/compiler/src/function/input/mod.rs +++ b/compiler/src/function/input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/input/tuple.rs b/compiler/src/function/input/tuple.rs index db75c63ed0..c7148cb138 100644 --- a/compiler/src/function/input/tuple.rs +++ b/compiler/src/function/input/tuple.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/main_function.rs b/compiler/src/function/main_function.rs index d08faa169f..56254ba236 100644 --- a/compiler/src/function/main_function.rs +++ b/compiler/src/function/main_function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/mod.rs b/compiler/src/function/mod.rs index 0f15a38d04..8a9971313e 100644 --- a/compiler/src/function/mod.rs +++ b/compiler/src/function/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/result/mod.rs b/compiler/src/function/result/mod.rs index 1b9e990453..bfb03b4072 100644 --- a/compiler/src/function/result/mod.rs +++ b/compiler/src/function/result/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/function/result/result.rs b/compiler/src/function/result/result.rs index 81aa93b55b..a82b19d555 100644 --- a/compiler/src/function/result/result.rs +++ b/compiler/src/function/result/result.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/import/mod.rs b/compiler/src/import/mod.rs index e4767afd6b..b50745b166 100644 --- a/compiler/src/import/mod.rs +++ b/compiler/src/import/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/import/store/core_package.rs b/compiler/src/import/store/core_package.rs index efefe7147a..b566ffc604 100644 --- a/compiler/src/import/store/core_package.rs +++ b/compiler/src/import/store/core_package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/import/store/import.rs b/compiler/src/import/store/import.rs index 37f8206505..40ba8e607f 100644 --- a/compiler/src/import/store/import.rs +++ b/compiler/src/import/store/import.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/import/store/mod.rs b/compiler/src/import/store/mod.rs index 6b881f6016..6eddd9523f 100644 --- a/compiler/src/import/store/mod.rs +++ b/compiler/src/import/store/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/import/store/symbol.rs b/compiler/src/import/store/symbol.rs index 61b781b8e2..d1bc151025 100644 --- a/compiler/src/import/store/symbol.rs +++ b/compiler/src/import/store/symbol.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/lib.rs b/compiler/src/lib.rs index 03abbf4457..c94a638aae 100644 --- a/compiler/src/lib.rs +++ b/compiler/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/output/mod.rs b/compiler/src/output/mod.rs index 83b6844bc7..a5c2e0951b 100644 --- a/compiler/src/output/mod.rs +++ b/compiler/src/output/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/output/output_bytes.rs b/compiler/src/output/output_bytes.rs index c8b5578a61..f69dcfe80f 100644 --- a/compiler/src/output/output_bytes.rs +++ b/compiler/src/output/output_bytes.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/output/output_file.rs b/compiler/src/output/output_file.rs index fabe70b585..53194fcd28 100644 --- a/compiler/src/output/output_file.rs +++ b/compiler/src/output/output_file.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/program/mod.rs b/compiler/src/program/mod.rs index 86fb38e5ab..38258e4a0f 100644 --- a/compiler/src/program/mod.rs +++ b/compiler/src/program/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/program/program.rs b/compiler/src/program/program.rs index e97ac49370..f2f15267a0 100644 --- a/compiler/src/program/program.rs +++ b/compiler/src/program/program.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/assign/assign.rs b/compiler/src/statement/assign/assign.rs index da95bde369..66beadfa54 100644 --- a/compiler/src/statement/assign/assign.rs +++ b/compiler/src/statement/assign/assign.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/assign/assignee.rs b/compiler/src/statement/assign/assignee.rs index deac8ba26a..8d7c1bcff1 100644 --- a/compiler/src/statement/assign/assignee.rs +++ b/compiler/src/statement/assign/assignee.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/assign/mod.rs b/compiler/src/statement/assign/mod.rs index 8babdd3d79..7691435c86 100644 --- a/compiler/src/statement/assign/mod.rs +++ b/compiler/src/statement/assign/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/block/block.rs b/compiler/src/statement/block/block.rs index 68fdb6177c..68edf5aab6 100644 --- a/compiler/src/statement/block/block.rs +++ b/compiler/src/statement/block/block.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/block/mod.rs b/compiler/src/statement/block/mod.rs index 5b21387b97..1f53722716 100644 --- a/compiler/src/statement/block/mod.rs +++ b/compiler/src/statement/block/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/conditional/conditional.rs b/compiler/src/statement/conditional/conditional.rs index 1dd761da5d..58d546ab5c 100644 --- a/compiler/src/statement/conditional/conditional.rs +++ b/compiler/src/statement/conditional/conditional.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/conditional/mod.rs b/compiler/src/statement/conditional/mod.rs index b70034d9a3..68fdf0b5c8 100644 --- a/compiler/src/statement/conditional/mod.rs +++ b/compiler/src/statement/conditional/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/definition/definition.rs b/compiler/src/statement/definition/definition.rs index 326ee69276..e93d715b3b 100644 --- a/compiler/src/statement/definition/definition.rs +++ b/compiler/src/statement/definition/definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/definition/mod.rs b/compiler/src/statement/definition/mod.rs index a2ec2c8689..9753fa9954 100644 --- a/compiler/src/statement/definition/mod.rs +++ b/compiler/src/statement/definition/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/iteration/iteration.rs b/compiler/src/statement/iteration/iteration.rs index c446029368..8c3bb9e852 100644 --- a/compiler/src/statement/iteration/iteration.rs +++ b/compiler/src/statement/iteration/iteration.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/iteration/mod.rs b/compiler/src/statement/iteration/mod.rs index fe09bd951e..38d8c9d7d5 100644 --- a/compiler/src/statement/iteration/mod.rs +++ b/compiler/src/statement/iteration/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/mod.rs b/compiler/src/statement/mod.rs index 63c00ccd32..5b98524826 100644 --- a/compiler/src/statement/mod.rs +++ b/compiler/src/statement/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/return_/mod.rs b/compiler/src/statement/return_/mod.rs index 9e6e183dbd..ca74473a62 100644 --- a/compiler/src/statement/return_/mod.rs +++ b/compiler/src/statement/return_/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/return_/return_.rs b/compiler/src/statement/return_/return_.rs index bb2450350d..07b19e3b44 100644 --- a/compiler/src/statement/return_/return_.rs +++ b/compiler/src/statement/return_/return_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/statement/statement.rs b/compiler/src/statement/statement.rs index b97235d226..2e08223f7c 100644 --- a/compiler/src/statement/statement.rs +++ b/compiler/src/statement/statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/address/address.rs b/compiler/src/value/address/address.rs index 7f63cdfde6..87a38ba67a 100644 --- a/compiler/src/value/address/address.rs +++ b/compiler/src/value/address/address.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/address/mod.rs b/compiler/src/value/address/mod.rs index 14e6d2758d..90df8a5e0c 100644 --- a/compiler/src/value/address/mod.rs +++ b/compiler/src/value/address/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/boolean/input.rs b/compiler/src/value/boolean/input.rs index f09eea9460..7fc30aaea9 100644 --- a/compiler/src/value/boolean/input.rs +++ b/compiler/src/value/boolean/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/boolean/mod.rs b/compiler/src/value/boolean/mod.rs index 3ef6438651..eb57444f83 100644 --- a/compiler/src/value/boolean/mod.rs +++ b/compiler/src/value/boolean/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/field/field_type.rs b/compiler/src/value/field/field_type.rs index 372cf8bacf..ecf21a5d04 100644 --- a/compiler/src/value/field/field_type.rs +++ b/compiler/src/value/field/field_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/field/input.rs b/compiler/src/value/field/input.rs index 12674b151a..e3c99edde5 100644 --- a/compiler/src/value/field/input.rs +++ b/compiler/src/value/field/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/field/mod.rs b/compiler/src/value/field/mod.rs index f17f118f57..fab23912b2 100644 --- a/compiler/src/value/field/mod.rs +++ b/compiler/src/value/field/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/group/group_type.rs b/compiler/src/value/group/group_type.rs index 00ebc44f9c..183c20fc63 100644 --- a/compiler/src/value/group/group_type.rs +++ b/compiler/src/value/group/group_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/group/input.rs b/compiler/src/value/group/input.rs index d1cbd7c06f..62a613d263 100644 --- a/compiler/src/value/group/input.rs +++ b/compiler/src/value/group/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/group/mod.rs b/compiler/src/value/group/mod.rs index 5697fe1217..efc778b6cf 100644 --- a/compiler/src/value/group/mod.rs +++ b/compiler/src/value/group/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/group/targets/edwards_bls12.rs b/compiler/src/value/group/targets/edwards_bls12.rs index 0102d859ac..3b14ba9251 100644 --- a/compiler/src/value/group/targets/edwards_bls12.rs +++ b/compiler/src/value/group/targets/edwards_bls12.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/group/targets/mod.rs b/compiler/src/value/group/targets/mod.rs index 5bf08cbc54..5efd8393fb 100644 --- a/compiler/src/value/group/targets/mod.rs +++ b/compiler/src/value/group/targets/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/implicit/implicit.rs b/compiler/src/value/implicit/implicit.rs index bb8398ad87..2f042db5dc 100644 --- a/compiler/src/value/implicit/implicit.rs +++ b/compiler/src/value/implicit/implicit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/implicit/mod.rs b/compiler/src/value/implicit/mod.rs index 136af271f6..e9d1ba7b7a 100644 --- a/compiler/src/value/implicit/mod.rs +++ b/compiler/src/value/implicit/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/integer/integer.rs b/compiler/src/value/integer/integer.rs index c9f2323275..cc87d840c7 100644 --- a/compiler/src/value/integer/integer.rs +++ b/compiler/src/value/integer/integer.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/integer/macros.rs b/compiler/src/value/integer/macros.rs index dbe4dd0099..cb6eb81f8c 100644 --- a/compiler/src/value/integer/macros.rs +++ b/compiler/src/value/integer/macros.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/integer/mod.rs b/compiler/src/value/integer/mod.rs index 068cfceef3..2dd7a93129 100644 --- a/compiler/src/value/integer/mod.rs +++ b/compiler/src/value/integer/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/mod.rs b/compiler/src/value/mod.rs index 2836c9c3dd..b03dfb0064 100644 --- a/compiler/src/value/mod.rs +++ b/compiler/src/value/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/src/value/value.rs b/compiler/src/value/value.rs index 64c344cacd..933bad3c61 100644 --- a/compiler/src/value/value.rs +++ b/compiler/src/value/value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/address/mod.rs b/compiler/tests/address/mod.rs index eb93b660f9..a43a485854 100644 --- a/compiler/tests/address/mod.rs +++ b/compiler/tests/address/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/array/mod.rs b/compiler/tests/array/mod.rs index 406047270c..d6e6742a00 100644 --- a/compiler/tests/array/mod.rs +++ b/compiler/tests/array/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/boolean/mod.rs b/compiler/tests/boolean/mod.rs index 02d5dad962..e6d34cecca 100644 --- a/compiler/tests/boolean/mod.rs +++ b/compiler/tests/boolean/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/circuits/mod.rs b/compiler/tests/circuits/mod.rs index 37c88ac7f9..94792cc190 100644 --- a/compiler/tests/circuits/mod.rs +++ b/compiler/tests/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/compiler/mod.rs b/compiler/tests/compiler/mod.rs index 4c680282e3..ec07bfa672 100644 --- a/compiler/tests/compiler/mod.rs +++ b/compiler/tests/compiler/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/console/mod.rs b/compiler/tests/console/mod.rs index 7741c9034c..520a3681cd 100644 --- a/compiler/tests/console/mod.rs +++ b/compiler/tests/console/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/core/mod.rs b/compiler/tests/core/mod.rs index 11ad5f71df..871695f047 100644 --- a/compiler/tests/core/mod.rs +++ b/compiler/tests/core/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/core/packages/mod.rs b/compiler/tests/core/packages/mod.rs index d92a5f8b8f..6093aa3391 100644 --- a/compiler/tests/core/packages/mod.rs +++ b/compiler/tests/core/packages/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/core/packages/unstable/blake2s/mod.rs b/compiler/tests/core/packages/unstable/blake2s/mod.rs index db8877fd21..848b4dc3d3 100644 --- a/compiler/tests/core/packages/unstable/blake2s/mod.rs +++ b/compiler/tests/core/packages/unstable/blake2s/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/core/packages/unstable/mod.rs b/compiler/tests/core/packages/unstable/mod.rs index 7143446cfe..16304197fe 100644 --- a/compiler/tests/core/packages/unstable/mod.rs +++ b/compiler/tests/core/packages/unstable/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/definition/mod.rs b/compiler/tests/definition/mod.rs index 75dff4e557..e5faf8b2de 100644 --- a/compiler/tests/definition/mod.rs +++ b/compiler/tests/definition/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/field/mod.rs b/compiler/tests/field/mod.rs index 9219a8beab..f8f97fe5c6 100644 --- a/compiler/tests/field/mod.rs +++ b/compiler/tests/field/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/function/mod.rs b/compiler/tests/function/mod.rs index 652964fafb..ce0429ba44 100644 --- a/compiler/tests/function/mod.rs +++ b/compiler/tests/function/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/group/mod.rs b/compiler/tests/group/mod.rs index 9cb54cea76..65680f0b14 100644 --- a/compiler/tests/group/mod.rs +++ b/compiler/tests/group/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify @@ -15,13 +15,8 @@ // along with the Leo library. If not, see . use crate::{ - assert_satisfied, - expect_compiler_error, - expect_synthesis_error, - field::field_to_decimal_string, - generate_main_input, - parse_program, - parse_program_with_input, + assert_satisfied, expect_compiler_error, expect_synthesis_error, field::field_to_decimal_string, + generate_main_input, parse_program, parse_program_with_input, }; use leo_ast::{GroupCoordinate, GroupTuple, GroupValue, InputValue, Span}; diff --git a/compiler/tests/import/mod.rs b/compiler/tests/import/mod.rs index 2218046389..1a3440b577 100644 --- a/compiler/tests/import/mod.rs +++ b/compiler/tests/import/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/input_files/mod.rs b/compiler/tests/input_files/mod.rs index 49eba0b9bc..c0dc97c1a3 100644 --- a/compiler/tests/input_files/mod.rs +++ b/compiler/tests/input_files/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/input_files/program_input/mod.rs b/compiler/tests/input_files/program_input/mod.rs index befe97057e..7d7888a30c 100644 --- a/compiler/tests/input_files/program_input/mod.rs +++ b/compiler/tests/input_files/program_input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/input_files/program_input_and_program_state/mod.rs b/compiler/tests/input_files/program_input_and_program_state/mod.rs index 26f2fead35..25541030ab 100644 --- a/compiler/tests/input_files/program_input_and_program_state/mod.rs +++ b/compiler/tests/input_files/program_input_and_program_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/input_files/program_registers/mod.rs b/compiler/tests/input_files/program_registers/mod.rs index 894f24b810..b172c141e0 100644 --- a/compiler/tests/input_files/program_registers/mod.rs +++ b/compiler/tests/input_files/program_registers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/input_files/program_state/mod.rs b/compiler/tests/input_files/program_state/mod.rs index ac775270b1..c5959196f5 100644 --- a/compiler/tests/input_files/program_state/mod.rs +++ b/compiler/tests/input_files/program_state/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/i128/mod.rs b/compiler/tests/integers/i128/mod.rs index 8cb73fff1a..1ff6b8ced3 100644 --- a/compiler/tests/integers/i128/mod.rs +++ b/compiler/tests/integers/i128/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/i16/mod.rs b/compiler/tests/integers/i16/mod.rs index ad2988aad0..3cd717e0c2 100644 --- a/compiler/tests/integers/i16/mod.rs +++ b/compiler/tests/integers/i16/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/i32/mod.rs b/compiler/tests/integers/i32/mod.rs index f4df3cc7ff..ef13fb1efd 100644 --- a/compiler/tests/integers/i32/mod.rs +++ b/compiler/tests/integers/i32/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/i64/mod.rs b/compiler/tests/integers/i64/mod.rs index 713e02dd8e..36306198db 100644 --- a/compiler/tests/integers/i64/mod.rs +++ b/compiler/tests/integers/i64/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/i8/mod.rs b/compiler/tests/integers/i8/mod.rs index 813e2c13d2..30cc71149d 100644 --- a/compiler/tests/integers/i8/mod.rs +++ b/compiler/tests/integers/i8/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/int_macro.rs b/compiler/tests/integers/int_macro.rs index 9346ced2d8..328db3aa3d 100644 --- a/compiler/tests/integers/int_macro.rs +++ b/compiler/tests/integers/int_macro.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/integer_tester.rs b/compiler/tests/integers/integer_tester.rs index 41b0d05656..b63ba7c7ef 100644 --- a/compiler/tests/integers/integer_tester.rs +++ b/compiler/tests/integers/integer_tester.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/mod.rs b/compiler/tests/integers/mod.rs index 3aa0c691c8..0cfd4f643c 100644 --- a/compiler/tests/integers/mod.rs +++ b/compiler/tests/integers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/u128/mod.rs b/compiler/tests/integers/u128/mod.rs index 5312c43e5a..35f0df1714 100644 --- a/compiler/tests/integers/u128/mod.rs +++ b/compiler/tests/integers/u128/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/u16/mod.rs b/compiler/tests/integers/u16/mod.rs index fac708a456..d9738cea14 100644 --- a/compiler/tests/integers/u16/mod.rs +++ b/compiler/tests/integers/u16/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/u32/mod.rs b/compiler/tests/integers/u32/mod.rs index ac6b51f3fd..90b9c06622 100644 --- a/compiler/tests/integers/u32/mod.rs +++ b/compiler/tests/integers/u32/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/u64/mod.rs b/compiler/tests/integers/u64/mod.rs index d66ec56e64..be667c6c2f 100644 --- a/compiler/tests/integers/u64/mod.rs +++ b/compiler/tests/integers/u64/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/u8/mod.rs b/compiler/tests/integers/u8/mod.rs index 3eb3666263..b8e67b8a3b 100644 --- a/compiler/tests/integers/u8/mod.rs +++ b/compiler/tests/integers/u8/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/integers/uint_macro.rs b/compiler/tests/integers/uint_macro.rs index e220a82be7..8216a6f3b5 100644 --- a/compiler/tests/integers/uint_macro.rs +++ b/compiler/tests/integers/uint_macro.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/mod.rs b/compiler/tests/mod.rs index 7f20a94217..58d48416bb 100644 --- a/compiler/tests/mod.rs +++ b/compiler/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/mutability/mod.rs b/compiler/tests/mutability/mod.rs index bbb9f3a639..25bc66a498 100644 --- a/compiler/tests/mutability/mod.rs +++ b/compiler/tests/mutability/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/statements/conditional/mod.rs b/compiler/tests/statements/conditional/mod.rs index 84d03eb71b..040c8108dd 100644 --- a/compiler/tests/statements/conditional/mod.rs +++ b/compiler/tests/statements/conditional/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/statements/mod.rs b/compiler/tests/statements/mod.rs index a2e1581fda..5bfcf845b6 100644 --- a/compiler/tests/statements/mod.rs +++ b/compiler/tests/statements/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/syntax/identifiers/mod.rs b/compiler/tests/syntax/identifiers/mod.rs index 1adf8697d9..aeebdaf884 100644 --- a/compiler/tests/syntax/identifiers/mod.rs +++ b/compiler/tests/syntax/identifiers/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/syntax/mod.rs b/compiler/tests/syntax/mod.rs index 1bb6493d4b..4a3962d438 100644 --- a/compiler/tests/syntax/mod.rs +++ b/compiler/tests/syntax/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/compiler/tests/tuples/mod.rs b/compiler/tests/tuples/mod.rs index 5ed5cd357f..67798288a6 100644 --- a/compiler/tests/tuples/mod.rs +++ b/compiler/tests/tuples/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/errors/core_circuit.rs b/core/src/errors/core_circuit.rs index 1882b016e8..eaeea07595 100644 --- a/core/src/errors/core_circuit.rs +++ b/core/src/errors/core_circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/errors/core_package.rs b/core/src/errors/core_package.rs index 7ce7f150b8..9242435802 100644 --- a/core/src/errors/core_package.rs +++ b/core/src/errors/core_package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/errors/core_package_list.rs b/core/src/errors/core_package_list.rs index f8c2f35026..b5c1eaec04 100644 --- a/core/src/errors/core_package_list.rs +++ b/core/src/errors/core_package_list.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/errors/leo_core_package.rs b/core/src/errors/leo_core_package.rs index 30db8ef7d3..fbf549d586 100644 --- a/core/src/errors/leo_core_package.rs +++ b/core/src/errors/leo_core_package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/errors/mod.rs b/core/src/errors/mod.rs index a99f9e8f47..74cab0d9a9 100644 --- a/core/src/errors/mod.rs +++ b/core/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/lib.rs b/core/src/lib.rs index d8b39b5f30..a7aa49dd37 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/packages/mod.rs b/core/src/packages/mod.rs index be0ea4f96c..d701791565 100644 --- a/core/src/packages/mod.rs +++ b/core/src/packages/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/packages/unstable/blake2s.rs b/core/src/packages/unstable/blake2s.rs index c958718997..71873daf98 100644 --- a/core/src/packages/unstable/blake2s.rs +++ b/core/src/packages/unstable/blake2s.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/packages/unstable/mod.rs b/core/src/packages/unstable/mod.rs index e50f072527..fd4c347b1e 100644 --- a/core/src/packages/unstable/mod.rs +++ b/core/src/packages/unstable/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/types/core_circuit.rs b/core/src/types/core_circuit.rs index 6e21c6667c..430b7bb6b0 100644 --- a/core/src/types/core_circuit.rs +++ b/core/src/types/core_circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/types/core_circuit_struct_list.rs b/core/src/types/core_circuit_struct_list.rs index 8da8f6f160..58a54a322e 100644 --- a/core/src/types/core_circuit_struct_list.rs +++ b/core/src/types/core_circuit_struct_list.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/types/core_package.rs b/core/src/types/core_package.rs index 6a65544c3a..f4d97a1cee 100644 --- a/core/src/types/core_package.rs +++ b/core/src/types/core_package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/types/core_package_list.rs b/core/src/types/core_package_list.rs index cf2c760921..5ec7d5cfea 100644 --- a/core/src/types/core_package_list.rs +++ b/core/src/types/core_package_list.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/types/mod.rs b/core/src/types/mod.rs index e7a3bd1012..5f875ed0ac 100644 --- a/core/src/types/mod.rs +++ b/core/src/types/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/core/src/types/value.rs b/core/src/types/value.rs index d950bd3550..05edeac2b5 100644 --- a/core/src/types/value.rs +++ b/core/src/types/value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/benches/integer_arithmetic.rs b/gadgets/benches/integer_arithmetic.rs index 104a952576..306cdbeb8a 100644 --- a/gadgets/benches/integer_arithmetic.rs +++ b/gadgets/benches/integer_arithmetic.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/add.rs b/gadgets/src/arithmetic/add.rs index 63deb68995..ad60182080 100644 --- a/gadgets/src/arithmetic/add.rs +++ b/gadgets/src/arithmetic/add.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/div.rs b/gadgets/src/arithmetic/div.rs index 3094d529a2..ce43241628 100644 --- a/gadgets/src/arithmetic/div.rs +++ b/gadgets/src/arithmetic/div.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/mod.rs b/gadgets/src/arithmetic/mod.rs index 084aeb03a5..469b8cf078 100644 --- a/gadgets/src/arithmetic/mod.rs +++ b/gadgets/src/arithmetic/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/mul.rs b/gadgets/src/arithmetic/mul.rs index f2f56aef64..d98cad6a26 100644 --- a/gadgets/src/arithmetic/mul.rs +++ b/gadgets/src/arithmetic/mul.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/neg.rs b/gadgets/src/arithmetic/neg.rs index 2279ee9f54..b9b9624188 100644 --- a/gadgets/src/arithmetic/neg.rs +++ b/gadgets/src/arithmetic/neg.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/pow.rs b/gadgets/src/arithmetic/pow.rs index d17b8bea02..c20ba7d0ae 100644 --- a/gadgets/src/arithmetic/pow.rs +++ b/gadgets/src/arithmetic/pow.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/arithmetic/sub.rs b/gadgets/src/arithmetic/sub.rs index f7f5e7dbed..f553816c3f 100644 --- a/gadgets/src/arithmetic/sub.rs +++ b/gadgets/src/arithmetic/sub.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/bits/adder.rs b/gadgets/src/bits/adder.rs index 7616592fc6..dda2b909c2 100644 --- a/gadgets/src/bits/adder.rs +++ b/gadgets/src/bits/adder.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/bits/comparator.rs b/gadgets/src/bits/comparator.rs index e14d3dda82..7e5f2a59be 100644 --- a/gadgets/src/bits/comparator.rs +++ b/gadgets/src/bits/comparator.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/bits/mod.rs b/gadgets/src/bits/mod.rs index cec0d61008..e4842090db 100644 --- a/gadgets/src/bits/mod.rs +++ b/gadgets/src/bits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/bits/rca.rs b/gadgets/src/bits/rca.rs index 9c07c78bf9..6a07cf672e 100644 --- a/gadgets/src/bits/rca.rs +++ b/gadgets/src/bits/rca.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/bits/sign_extend.rs b/gadgets/src/bits/sign_extend.rs index 44791ca41b..a0ee439a45 100644 --- a/gadgets/src/bits/sign_extend.rs +++ b/gadgets/src/bits/sign_extend.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/errors/mod.rs b/gadgets/src/errors/mod.rs index 0b8e578304..39c7dd79cc 100644 --- a/gadgets/src/errors/mod.rs +++ b/gadgets/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/errors/signed_integer.rs b/gadgets/src/errors/signed_integer.rs index 318ca70217..f7a900b741 100644 --- a/gadgets/src/errors/signed_integer.rs +++ b/gadgets/src/errors/signed_integer.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/lib.rs b/gadgets/src/lib.rs index 87bfd4dfad..d5ae0dea06 100644 --- a/gadgets/src/lib.rs +++ b/gadgets/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/add.rs b/gadgets/src/signed_integer/arithmetic/add.rs index 1ef982f1c1..3c440a3add 100644 --- a/gadgets/src/signed_integer/arithmetic/add.rs +++ b/gadgets/src/signed_integer/arithmetic/add.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/div.rs b/gadgets/src/signed_integer/arithmetic/div.rs index f185062c4a..e50ca1da76 100644 --- a/gadgets/src/signed_integer/arithmetic/div.rs +++ b/gadgets/src/signed_integer/arithmetic/div.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/mod.rs b/gadgets/src/signed_integer/arithmetic/mod.rs index 6ce2d7f4ef..69fc0f7f7b 100644 --- a/gadgets/src/signed_integer/arithmetic/mod.rs +++ b/gadgets/src/signed_integer/arithmetic/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/mul.rs b/gadgets/src/signed_integer/arithmetic/mul.rs index 620e3ea491..2c448492d9 100644 --- a/gadgets/src/signed_integer/arithmetic/mul.rs +++ b/gadgets/src/signed_integer/arithmetic/mul.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/neg.rs b/gadgets/src/signed_integer/arithmetic/neg.rs index fdcc89dd77..fc0e14b332 100644 --- a/gadgets/src/signed_integer/arithmetic/neg.rs +++ b/gadgets/src/signed_integer/arithmetic/neg.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/pow.rs b/gadgets/src/signed_integer/arithmetic/pow.rs index 1b9174b218..f8689783bd 100644 --- a/gadgets/src/signed_integer/arithmetic/pow.rs +++ b/gadgets/src/signed_integer/arithmetic/pow.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/arithmetic/sub.rs b/gadgets/src/signed_integer/arithmetic/sub.rs index 9d24638762..c13ec13048 100644 --- a/gadgets/src/signed_integer/arithmetic/sub.rs +++ b/gadgets/src/signed_integer/arithmetic/sub.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/int_impl.rs b/gadgets/src/signed_integer/int_impl.rs index 45dcdd0b24..005d207033 100644 --- a/gadgets/src/signed_integer/int_impl.rs +++ b/gadgets/src/signed_integer/int_impl.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/mod.rs b/gadgets/src/signed_integer/mod.rs index 8fb0bd56b9..b54aa25db6 100644 --- a/gadgets/src/signed_integer/mod.rs +++ b/gadgets/src/signed_integer/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/relational/cmp.rs b/gadgets/src/signed_integer/relational/cmp.rs index 1735d08844..5f5bd562a1 100644 --- a/gadgets/src/signed_integer/relational/cmp.rs +++ b/gadgets/src/signed_integer/relational/cmp.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/relational/eq.rs b/gadgets/src/signed_integer/relational/eq.rs index 4c0b488e46..11edf05678 100644 --- a/gadgets/src/signed_integer/relational/eq.rs +++ b/gadgets/src/signed_integer/relational/eq.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/relational/mod.rs b/gadgets/src/signed_integer/relational/mod.rs index b88c46fc2f..aec7552341 100644 --- a/gadgets/src/signed_integer/relational/mod.rs +++ b/gadgets/src/signed_integer/relational/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/utilities/alloc.rs b/gadgets/src/signed_integer/utilities/alloc.rs index ad8be3afa7..c031adf754 100644 --- a/gadgets/src/signed_integer/utilities/alloc.rs +++ b/gadgets/src/signed_integer/utilities/alloc.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/utilities/eq.rs b/gadgets/src/signed_integer/utilities/eq.rs index 7094421f97..15dbc74306 100644 --- a/gadgets/src/signed_integer/utilities/eq.rs +++ b/gadgets/src/signed_integer/utilities/eq.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/utilities/mod.rs b/gadgets/src/signed_integer/utilities/mod.rs index 4bdf1730db..3f2c19414d 100644 --- a/gadgets/src/signed_integer/utilities/mod.rs +++ b/gadgets/src/signed_integer/utilities/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/src/signed_integer/utilities/select.rs b/gadgets/src/signed_integer/utilities/select.rs index 0a7b202a1e..a2db10dffe 100644 --- a/gadgets/src/signed_integer/utilities/select.rs +++ b/gadgets/src/signed_integer/utilities/select.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/mod.rs b/gadgets/tests/mod.rs index 0b8e578304..39c7dd79cc 100644 --- a/gadgets/tests/mod.rs +++ b/gadgets/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/signed_integer/i128.rs b/gadgets/tests/signed_integer/i128.rs index bdbd17532d..c1eb5d0436 100644 --- a/gadgets/tests/signed_integer/i128.rs +++ b/gadgets/tests/signed_integer/i128.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/signed_integer/i16.rs b/gadgets/tests/signed_integer/i16.rs index 442ccb590d..9b1d862f3f 100644 --- a/gadgets/tests/signed_integer/i16.rs +++ b/gadgets/tests/signed_integer/i16.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/signed_integer/i32.rs b/gadgets/tests/signed_integer/i32.rs index 72bc3d99e5..c7dd61b035 100644 --- a/gadgets/tests/signed_integer/i32.rs +++ b/gadgets/tests/signed_integer/i32.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/signed_integer/i64.rs b/gadgets/tests/signed_integer/i64.rs index 6723c13842..6405cc1866 100644 --- a/gadgets/tests/signed_integer/i64.rs +++ b/gadgets/tests/signed_integer/i64.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/signed_integer/i8.rs b/gadgets/tests/signed_integer/i8.rs index aa15b9549d..ef4cc707b4 100644 --- a/gadgets/tests/signed_integer/i8.rs +++ b/gadgets/tests/signed_integer/i8.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/gadgets/tests/signed_integer/mod.rs b/gadgets/tests/signed_integer/mod.rs index 67bf1c0b4b..7d9e327e70 100644 --- a/gadgets/tests/signed_integer/mod.rs +++ b/gadgets/tests/signed_integer/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/benches/ast.rs b/grammar/benches/ast.rs index 4b6d48b105..ec24d5edb7 100644 --- a/grammar/benches/ast.rs +++ b/grammar/benches/ast.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/access.rs b/grammar/src/access/access.rs index ac3e26bb17..1c33808692 100644 --- a/grammar/src/access/access.rs +++ b/grammar/src/access/access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/array_access.rs b/grammar/src/access/array_access.rs index 5e4096b6e5..fe98590ce9 100644 --- a/grammar/src/access/array_access.rs +++ b/grammar/src/access/array_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/assignee_access.rs b/grammar/src/access/assignee_access.rs index ad66ee3539..880ad65255 100644 --- a/grammar/src/access/assignee_access.rs +++ b/grammar/src/access/assignee_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/call_access.rs b/grammar/src/access/call_access.rs index 00bd0e19d6..398c05a3f9 100644 --- a/grammar/src/access/call_access.rs +++ b/grammar/src/access/call_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/member_access.rs b/grammar/src/access/member_access.rs index 721ab473c6..a3e2e9e030 100644 --- a/grammar/src/access/member_access.rs +++ b/grammar/src/access/member_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/mod.rs b/grammar/src/access/mod.rs index d896bd2ebe..2d159e074a 100644 --- a/grammar/src/access/mod.rs +++ b/grammar/src/access/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/static_member_access.rs b/grammar/src/access/static_member_access.rs index 560f9143f2..7452d3e804 100644 --- a/grammar/src/access/static_member_access.rs +++ b/grammar/src/access/static_member_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/access/tuple_access.rs b/grammar/src/access/tuple_access.rs index 0e96ac0870..952e6a426f 100644 --- a/grammar/src/access/tuple_access.rs +++ b/grammar/src/access/tuple_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/annotations/annotation_arguments.rs b/grammar/src/annotations/annotation_arguments.rs index eb56ed4aaf..bf58a2c358 100644 --- a/grammar/src/annotations/annotation_arguments.rs +++ b/grammar/src/annotations/annotation_arguments.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/annotations/annotation_name.rs b/grammar/src/annotations/annotation_name.rs index 0220598408..d7cb1c12c9 100644 --- a/grammar/src/annotations/annotation_name.rs +++ b/grammar/src/annotations/annotation_name.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/annotations/annotation_symbol.rs b/grammar/src/annotations/annotation_symbol.rs index d11c5965b4..16f042be92 100644 --- a/grammar/src/annotations/annotation_symbol.rs +++ b/grammar/src/annotations/annotation_symbol.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/annotations/annotations.rs b/grammar/src/annotations/annotations.rs index a865dc95d7..045eb3a47e 100644 --- a/grammar/src/annotations/annotations.rs +++ b/grammar/src/annotations/annotations.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/annotations/mod.rs b/grammar/src/annotations/mod.rs index 8825f1954f..1da61336ed 100644 --- a/grammar/src/annotations/mod.rs +++ b/grammar/src/annotations/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/ast.rs b/grammar/src/ast.rs index a41bf13806..48a4a2802e 100644 --- a/grammar/src/ast.rs +++ b/grammar/src/ast.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/circuits/circuit.rs b/grammar/src/circuits/circuit.rs index 26bc545e00..a704df6962 100644 --- a/grammar/src/circuits/circuit.rs +++ b/grammar/src/circuits/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/circuits/circuit_member.rs b/grammar/src/circuits/circuit_member.rs index 32da1ca4d3..6ce1c822b8 100644 --- a/grammar/src/circuits/circuit_member.rs +++ b/grammar/src/circuits/circuit_member.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/circuits/circuit_variable.rs b/grammar/src/circuits/circuit_variable.rs index 0f14fa43e0..30c35bbb0a 100644 --- a/grammar/src/circuits/circuit_variable.rs +++ b/grammar/src/circuits/circuit_variable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/circuits/circuit_variable_definition.rs b/grammar/src/circuits/circuit_variable_definition.rs index b3a84ef629..cef9933bc6 100644 --- a/grammar/src/circuits/circuit_variable_definition.rs +++ b/grammar/src/circuits/circuit_variable_definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/circuits/mod.rs b/grammar/src/circuits/mod.rs index c967ed655e..ddbe004951 100644 --- a/grammar/src/circuits/mod.rs +++ b/grammar/src/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/assignee.rs b/grammar/src/common/assignee.rs index 6136b05440..066fe1b0dd 100644 --- a/grammar/src/common/assignee.rs +++ b/grammar/src/common/assignee.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/declare.rs b/grammar/src/common/declare.rs index dabc1bbfdb..c5a77ecacb 100644 --- a/grammar/src/common/declare.rs +++ b/grammar/src/common/declare.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/eoi.rs b/grammar/src/common/eoi.rs index 610ba45329..26d13e339e 100644 --- a/grammar/src/common/eoi.rs +++ b/grammar/src/common/eoi.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/identifier.rs b/grammar/src/common/identifier.rs index e349a3b259..0406e51336 100644 --- a/grammar/src/common/identifier.rs +++ b/grammar/src/common/identifier.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/keyword_or_identifier.rs b/grammar/src/common/keyword_or_identifier.rs index 525b64e99f..39f0e39b58 100644 --- a/grammar/src/common/keyword_or_identifier.rs +++ b/grammar/src/common/keyword_or_identifier.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/line_end.rs b/grammar/src/common/line_end.rs index 82b862a71f..bfbc27948a 100644 --- a/grammar/src/common/line_end.rs +++ b/grammar/src/common/line_end.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/mod.rs b/grammar/src/common/mod.rs index 6a45652fc7..d72b2ea578 100644 --- a/grammar/src/common/mod.rs +++ b/grammar/src/common/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/mut_self_keyword.rs b/grammar/src/common/mut_self_keyword.rs index 12d269e191..1ddc0cfa57 100644 --- a/grammar/src/common/mut_self_keyword.rs +++ b/grammar/src/common/mut_self_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/mutable.rs b/grammar/src/common/mutable.rs index e627286ce5..283ec9eae1 100644 --- a/grammar/src/common/mutable.rs +++ b/grammar/src/common/mutable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/range.rs b/grammar/src/common/range.rs index 2bf4de441a..cdb1f923f5 100644 --- a/grammar/src/common/range.rs +++ b/grammar/src/common/range.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/range_or_expression.rs b/grammar/src/common/range_or_expression.rs index 5a13b3e4cc..2b7ae2eb68 100644 --- a/grammar/src/common/range_or_expression.rs +++ b/grammar/src/common/range_or_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/self_keyword.rs b/grammar/src/common/self_keyword.rs index 278f125e0c..60721a7fab 100644 --- a/grammar/src/common/self_keyword.rs +++ b/grammar/src/common/self_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/self_keyword_or_identifier.rs b/grammar/src/common/self_keyword_or_identifier.rs index 44818d7610..83e27901eb 100644 --- a/grammar/src/common/self_keyword_or_identifier.rs +++ b/grammar/src/common/self_keyword_or_identifier.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/spread.rs b/grammar/src/common/spread.rs index f801063345..c9dd266816 100644 --- a/grammar/src/common/spread.rs +++ b/grammar/src/common/spread.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/spread_or_expression.rs b/grammar/src/common/spread_or_expression.rs index 3dfcedb7d3..cd4bbc21d6 100644 --- a/grammar/src/common/spread_or_expression.rs +++ b/grammar/src/common/spread_or_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/static_.rs b/grammar/src/common/static_.rs index 1f035515ce..82ee9edfd1 100644 --- a/grammar/src/common/static_.rs +++ b/grammar/src/common/static_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/variable_name.rs b/grammar/src/common/variable_name.rs index 76197bb0ed..f9c6fe2e28 100644 --- a/grammar/src/common/variable_name.rs +++ b/grammar/src/common/variable_name.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/common/variables.rs b/grammar/src/common/variables.rs index 9d63803a93..939107fd7a 100644 --- a/grammar/src/common/variables.rs +++ b/grammar/src/common/variables.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_assert.rs b/grammar/src/console/console_assert.rs index d64dc0eaa7..681f10dfc9 100644 --- a/grammar/src/console/console_assert.rs +++ b/grammar/src/console/console_assert.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_debug.rs b/grammar/src/console/console_debug.rs index 8debc30580..81b463947e 100644 --- a/grammar/src/console/console_debug.rs +++ b/grammar/src/console/console_debug.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_error.rs b/grammar/src/console/console_error.rs index 45f729a846..8155c8d75f 100644 --- a/grammar/src/console/console_error.rs +++ b/grammar/src/console/console_error.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_function.rs b/grammar/src/console/console_function.rs index 0b48af1a43..b2cb97a418 100644 --- a/grammar/src/console/console_function.rs +++ b/grammar/src/console/console_function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_function_call.rs b/grammar/src/console/console_function_call.rs index 2c14af2d76..18183927e9 100644 --- a/grammar/src/console/console_function_call.rs +++ b/grammar/src/console/console_function_call.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_keyword.rs b/grammar/src/console/console_keyword.rs index c2c3872aaf..b9f98355ed 100644 --- a/grammar/src/console/console_keyword.rs +++ b/grammar/src/console/console_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/console_log.rs b/grammar/src/console/console_log.rs index 26b58d58f0..06e6f457f0 100644 --- a/grammar/src/console/console_log.rs +++ b/grammar/src/console/console_log.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/formatted_container.rs b/grammar/src/console/formatted_container.rs index e6234dc723..2943280b52 100644 --- a/grammar/src/console/formatted_container.rs +++ b/grammar/src/console/formatted_container.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/formatted_string.rs b/grammar/src/console/formatted_string.rs index e95b2b78dc..f0e80d3209 100644 --- a/grammar/src/console/formatted_string.rs +++ b/grammar/src/console/formatted_string.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/console/mod.rs b/grammar/src/console/mod.rs index ed1229edfc..30bd4481ab 100644 --- a/grammar/src/console/mod.rs +++ b/grammar/src/console/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/definitions/annotated_definition.rs b/grammar/src/definitions/annotated_definition.rs index 20177facb9..2bb3bf2d77 100644 --- a/grammar/src/definitions/annotated_definition.rs +++ b/grammar/src/definitions/annotated_definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/definitions/definition.rs b/grammar/src/definitions/definition.rs index bfe6289241..7fd46ef7f5 100644 --- a/grammar/src/definitions/definition.rs +++ b/grammar/src/definitions/definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/definitions/deprecated.rs b/grammar/src/definitions/deprecated.rs index 47f2851737..5c8d514113 100644 --- a/grammar/src/definitions/deprecated.rs +++ b/grammar/src/definitions/deprecated.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/definitions/mod.rs b/grammar/src/definitions/mod.rs index ef02ceba8b..b1f44725ff 100644 --- a/grammar/src/definitions/mod.rs +++ b/grammar/src/definitions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/errors/mod.rs b/grammar/src/errors/mod.rs index c60030f31f..9a69051aaa 100644 --- a/grammar/src/errors/mod.rs +++ b/grammar/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/errors/parser.rs b/grammar/src/errors/parser.rs index 12753ee0df..6f831d0ec2 100644 --- a/grammar/src/errors/parser.rs +++ b/grammar/src/errors/parser.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/errors/syntax.rs b/grammar/src/errors/syntax.rs index c79fdb1676..9f8f98b81b 100644 --- a/grammar/src/errors/syntax.rs +++ b/grammar/src/errors/syntax.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/array_initializer_expression.rs b/grammar/src/expressions/array_initializer_expression.rs index 0ce9e90a5d..c2a73e0d09 100644 --- a/grammar/src/expressions/array_initializer_expression.rs +++ b/grammar/src/expressions/array_initializer_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/array_inline_expression.rs b/grammar/src/expressions/array_inline_expression.rs index e7580c1f6d..5b3f4b7810 100644 --- a/grammar/src/expressions/array_inline_expression.rs +++ b/grammar/src/expressions/array_inline_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/binary_expression.rs b/grammar/src/expressions/binary_expression.rs index 372cafca47..1086121d5b 100644 --- a/grammar/src/expressions/binary_expression.rs +++ b/grammar/src/expressions/binary_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/circuit_inline_expression.rs b/grammar/src/expressions/circuit_inline_expression.rs index bef44d9618..bfb3a5bac8 100644 --- a/grammar/src/expressions/circuit_inline_expression.rs +++ b/grammar/src/expressions/circuit_inline_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/expression.rs b/grammar/src/expressions/expression.rs index d5047aedf5..ff1b2657e6 100644 --- a/grammar/src/expressions/expression.rs +++ b/grammar/src/expressions/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/mod.rs b/grammar/src/expressions/mod.rs index f4f5fd0e39..47e1c1acef 100644 --- a/grammar/src/expressions/mod.rs +++ b/grammar/src/expressions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/postfix_expression.rs b/grammar/src/expressions/postfix_expression.rs index 8c260bd74c..923de16161 100644 --- a/grammar/src/expressions/postfix_expression.rs +++ b/grammar/src/expressions/postfix_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/ternary_expression.rs b/grammar/src/expressions/ternary_expression.rs index 309bbe0bdd..163750bd61 100644 --- a/grammar/src/expressions/ternary_expression.rs +++ b/grammar/src/expressions/ternary_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/tuple_expression.rs b/grammar/src/expressions/tuple_expression.rs index eca27a69a6..16b8727fe9 100644 --- a/grammar/src/expressions/tuple_expression.rs +++ b/grammar/src/expressions/tuple_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/expressions/unary_expression.rs b/grammar/src/expressions/unary_expression.rs index 4990d0e123..b2d50fb4c4 100644 --- a/grammar/src/expressions/unary_expression.rs +++ b/grammar/src/expressions/unary_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/files/file.rs b/grammar/src/files/file.rs index ca4cd79652..6d1bc2fea3 100644 --- a/grammar/src/files/file.rs +++ b/grammar/src/files/file.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/files/mod.rs b/grammar/src/files/mod.rs index d61114399a..da089614bf 100644 --- a/grammar/src/files/mod.rs +++ b/grammar/src/files/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/function.rs b/grammar/src/functions/function.rs index 503ae65ef3..cd342b34bf 100644 --- a/grammar/src/functions/function.rs +++ b/grammar/src/functions/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/input/function_input.rs b/grammar/src/functions/input/function_input.rs index 583cff1547..efce2a17db 100644 --- a/grammar/src/functions/input/function_input.rs +++ b/grammar/src/functions/input/function_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/input/input.rs b/grammar/src/functions/input/input.rs index d6eb28250c..9b2ef22ab7 100644 --- a/grammar/src/functions/input/input.rs +++ b/grammar/src/functions/input/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/input/input_keyword.rs b/grammar/src/functions/input/input_keyword.rs index 877d2346cd..5032ae4436 100644 --- a/grammar/src/functions/input/input_keyword.rs +++ b/grammar/src/functions/input/input_keyword.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/input/mod.rs b/grammar/src/functions/input/mod.rs index 90c793d89d..d75e262d32 100644 --- a/grammar/src/functions/input/mod.rs +++ b/grammar/src/functions/input/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/mod.rs b/grammar/src/functions/mod.rs index bb15f47eb9..f16e3448d2 100644 --- a/grammar/src/functions/mod.rs +++ b/grammar/src/functions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/functions/test_function.rs b/grammar/src/functions/test_function.rs index 44ca161606..1e28efc53c 100644 --- a/grammar/src/functions/test_function.rs +++ b/grammar/src/functions/test_function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/import.rs b/grammar/src/imports/import.rs index 5a8ff43b8a..37a9fde2ec 100644 --- a/grammar/src/imports/import.rs +++ b/grammar/src/imports/import.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/import_symbol.rs b/grammar/src/imports/import_symbol.rs index 619a9212aa..3643406618 100644 --- a/grammar/src/imports/import_symbol.rs +++ b/grammar/src/imports/import_symbol.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/mod.rs b/grammar/src/imports/mod.rs index 4a1343664a..d16b54c012 100644 --- a/grammar/src/imports/mod.rs +++ b/grammar/src/imports/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/package.rs b/grammar/src/imports/package.rs index 75a3935913..0b3f1a0ecb 100644 --- a/grammar/src/imports/package.rs +++ b/grammar/src/imports/package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/package_access.rs b/grammar/src/imports/package_access.rs index 0e04906152..e22194e231 100644 --- a/grammar/src/imports/package_access.rs +++ b/grammar/src/imports/package_access.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/package_name.rs b/grammar/src/imports/package_name.rs index a4102ab2b2..a2e400460e 100644 --- a/grammar/src/imports/package_name.rs +++ b/grammar/src/imports/package_name.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/imports/star.rs b/grammar/src/imports/star.rs index bb50b3e864..29cb6b6e35 100644 --- a/grammar/src/imports/star.rs +++ b/grammar/src/imports/star.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/lib.rs b/grammar/src/lib.rs index 15d26b9605..d38b826c08 100644 --- a/grammar/src/lib.rs +++ b/grammar/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/main.rs b/grammar/src/main.rs index 27f1f7f7a7..ae9259084c 100644 --- a/grammar/src/main.rs +++ b/grammar/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/operations/assign_operation.rs b/grammar/src/operations/assign_operation.rs index 33c5a06ee7..49ea705c3f 100644 --- a/grammar/src/operations/assign_operation.rs +++ b/grammar/src/operations/assign_operation.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/operations/binary_operation.rs b/grammar/src/operations/binary_operation.rs index 31d56ffba7..c6d0290c80 100644 --- a/grammar/src/operations/binary_operation.rs +++ b/grammar/src/operations/binary_operation.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/operations/mod.rs b/grammar/src/operations/mod.rs index b58e3bd651..60772f4b04 100644 --- a/grammar/src/operations/mod.rs +++ b/grammar/src/operations/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/operations/unary_operation.rs b/grammar/src/operations/unary_operation.rs index 2603795ecb..f261fe7533 100644 --- a/grammar/src/operations/unary_operation.rs +++ b/grammar/src/operations/unary_operation.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/span.rs b/grammar/src/span.rs index daa999d4cf..3ad9dead75 100644 --- a/grammar/src/span.rs +++ b/grammar/src/span.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/assign_statement.rs b/grammar/src/statements/assign_statement.rs index 2a7eb29b8c..5325fd7b17 100644 --- a/grammar/src/statements/assign_statement.rs +++ b/grammar/src/statements/assign_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/block.rs b/grammar/src/statements/block.rs index 660b20e8a1..bbbfe41ff7 100644 --- a/grammar/src/statements/block.rs +++ b/grammar/src/statements/block.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/conditional_nested_or_end_statement.rs b/grammar/src/statements/conditional_nested_or_end_statement.rs index 42f0246f37..3bab38d701 100644 --- a/grammar/src/statements/conditional_nested_or_end_statement.rs +++ b/grammar/src/statements/conditional_nested_or_end_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/conditional_statement.rs b/grammar/src/statements/conditional_statement.rs index f0cc149f3c..2e6861f98b 100644 --- a/grammar/src/statements/conditional_statement.rs +++ b/grammar/src/statements/conditional_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/definition_statement.rs b/grammar/src/statements/definition_statement.rs index a8637cd0c1..c1db3c212d 100644 --- a/grammar/src/statements/definition_statement.rs +++ b/grammar/src/statements/definition_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/expression_statement.rs b/grammar/src/statements/expression_statement.rs index e03639bb52..bbef3f3568 100644 --- a/grammar/src/statements/expression_statement.rs +++ b/grammar/src/statements/expression_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/for_statement.rs b/grammar/src/statements/for_statement.rs index 90cb2f40c8..c1be00e303 100644 --- a/grammar/src/statements/for_statement.rs +++ b/grammar/src/statements/for_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/mod.rs b/grammar/src/statements/mod.rs index 7edba95216..b6ec4c1136 100644 --- a/grammar/src/statements/mod.rs +++ b/grammar/src/statements/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/return_statement.rs b/grammar/src/statements/return_statement.rs index 71c3800f52..11d6b4ddcb 100644 --- a/grammar/src/statements/return_statement.rs +++ b/grammar/src/statements/return_statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/statements/statement.rs b/grammar/src/statements/statement.rs index 76b2707c9b..d01c5d072e 100644 --- a/grammar/src/statements/statement.rs +++ b/grammar/src/statements/statement.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/address_type.rs b/grammar/src/types/address_type.rs index 7918496c79..5c55367b1a 100644 --- a/grammar/src/types/address_type.rs +++ b/grammar/src/types/address_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/array_dimensions.rs b/grammar/src/types/array_dimensions.rs index c01a740d35..eb0aa89b1c 100644 --- a/grammar/src/types/array_dimensions.rs +++ b/grammar/src/types/array_dimensions.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/array_type.rs b/grammar/src/types/array_type.rs index 04ba864f17..a91b08558b 100644 --- a/grammar/src/types/array_type.rs +++ b/grammar/src/types/array_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/boolean_type.rs b/grammar/src/types/boolean_type.rs index 2ebc567f6f..f5502067c7 100644 --- a/grammar/src/types/boolean_type.rs +++ b/grammar/src/types/boolean_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/circuit_type.rs b/grammar/src/types/circuit_type.rs index c60bee604d..c0156e100a 100644 --- a/grammar/src/types/circuit_type.rs +++ b/grammar/src/types/circuit_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/data_type.rs b/grammar/src/types/data_type.rs index e42f40c14c..78143384a5 100644 --- a/grammar/src/types/data_type.rs +++ b/grammar/src/types/data_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/field_type.rs b/grammar/src/types/field_type.rs index 2c8aa13061..6a5215e9cb 100644 --- a/grammar/src/types/field_type.rs +++ b/grammar/src/types/field_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/group_type.rs b/grammar/src/types/group_type.rs index 9529a91058..c1fe720dcd 100644 --- a/grammar/src/types/group_type.rs +++ b/grammar/src/types/group_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/integer_type.rs b/grammar/src/types/integer_type.rs index e75785ea4e..729ac0fcc4 100644 --- a/grammar/src/types/integer_type.rs +++ b/grammar/src/types/integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/mod.rs b/grammar/src/types/mod.rs index e00ea64af2..20da13b6db 100644 --- a/grammar/src/types/mod.rs +++ b/grammar/src/types/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/self_type.rs b/grammar/src/types/self_type.rs index f4a91fccb5..e3fb6bd072 100644 --- a/grammar/src/types/self_type.rs +++ b/grammar/src/types/self_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/signed_integer_type.rs b/grammar/src/types/signed_integer_type.rs index 91cde4e4b1..f615ffd747 100644 --- a/grammar/src/types/signed_integer_type.rs +++ b/grammar/src/types/signed_integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/tuple_type.rs b/grammar/src/types/tuple_type.rs index 9547ee3fff..57f39c9261 100644 --- a/grammar/src/types/tuple_type.rs +++ b/grammar/src/types/tuple_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/type_.rs b/grammar/src/types/type_.rs index 3664b232ab..d020a7ef07 100644 --- a/grammar/src/types/type_.rs +++ b/grammar/src/types/type_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/types/unsigned_integer_type.rs b/grammar/src/types/unsigned_integer_type.rs index 764d5030b2..734737604c 100644 --- a/grammar/src/types/unsigned_integer_type.rs +++ b/grammar/src/types/unsigned_integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/address.rs b/grammar/src/values/address.rs index 5ea7a60fd9..e1e815a6e7 100644 --- a/grammar/src/values/address.rs +++ b/grammar/src/values/address.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/address_value.rs b/grammar/src/values/address_value.rs index 94c46f9ea3..decf47431e 100644 --- a/grammar/src/values/address_value.rs +++ b/grammar/src/values/address_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/boolean_value.rs b/grammar/src/values/boolean_value.rs index ef06a9da98..9e26d369f9 100644 --- a/grammar/src/values/boolean_value.rs +++ b/grammar/src/values/boolean_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/field_value.rs b/grammar/src/values/field_value.rs index d4106cb7f1..fad986b83e 100644 --- a/grammar/src/values/field_value.rs +++ b/grammar/src/values/field_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/group_coordinate.rs b/grammar/src/values/group_coordinate.rs index 66ff4bd94e..4f12c477d4 100644 --- a/grammar/src/values/group_coordinate.rs +++ b/grammar/src/values/group_coordinate.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/group_value.rs b/grammar/src/values/group_value.rs index eafe115b88..56ab231908 100644 --- a/grammar/src/values/group_value.rs +++ b/grammar/src/values/group_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/integer_value.rs b/grammar/src/values/integer_value.rs index 6605c83724..64c0ebd640 100644 --- a/grammar/src/values/integer_value.rs +++ b/grammar/src/values/integer_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/mod.rs b/grammar/src/values/mod.rs index d1e2114977..8fd2211392 100644 --- a/grammar/src/values/mod.rs +++ b/grammar/src/values/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/negative_number.rs b/grammar/src/values/negative_number.rs index 7287967380..5cd52eaef0 100644 --- a/grammar/src/values/negative_number.rs +++ b/grammar/src/values/negative_number.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/number_value.rs b/grammar/src/values/number_value.rs index 02c5171b68..1d090c7528 100644 --- a/grammar/src/values/number_value.rs +++ b/grammar/src/values/number_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/positive_number.rs b/grammar/src/values/positive_number.rs index 1971237fe6..8fd522836f 100644 --- a/grammar/src/values/positive_number.rs +++ b/grammar/src/values/positive_number.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/signed_integer_value.rs b/grammar/src/values/signed_integer_value.rs index eadc7824ec..5c49a0ebf1 100644 --- a/grammar/src/values/signed_integer_value.rs +++ b/grammar/src/values/signed_integer_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/unsigned_integer_value.rs b/grammar/src/values/unsigned_integer_value.rs index 4da4fdb2da..9b85ae8eea 100644 --- a/grammar/src/values/unsigned_integer_value.rs +++ b/grammar/src/values/unsigned_integer_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/src/values/value.rs b/grammar/src/values/value.rs index 11cbd0fd2a..2d92362c28 100644 --- a/grammar/src/values/value.rs +++ b/grammar/src/values/value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/annotated.rs b/grammar/tests/annotated.rs index 1fc9185cf1..32ac106dba 100644 --- a/grammar/tests/annotated.rs +++ b/grammar/tests/annotated.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/deprecated.rs b/grammar/tests/deprecated.rs index d3953403c2..5ff8f94cb0 100644 --- a/grammar/tests/deprecated.rs +++ b/grammar/tests/deprecated.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/display.rs b/grammar/tests/display.rs index 7f8750cd2e..38aaf42a70 100644 --- a/grammar/tests/display.rs +++ b/grammar/tests/display.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/expression.rs b/grammar/tests/expression.rs index f05aa7fb27..589c16bcee 100644 --- a/grammar/tests/expression.rs +++ b/grammar/tests/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/function.rs b/grammar/tests/function.rs index 42f24f184b..3ff8cfbd3a 100644 --- a/grammar/tests/function.rs +++ b/grammar/tests/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/mod.rs b/grammar/tests/mod.rs index 516d586ba0..6b53d18df3 100644 --- a/grammar/tests/mod.rs +++ b/grammar/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/multiline.rs b/grammar/tests/multiline.rs index 7974c04ed6..2c3fca1706 100644 --- a/grammar/tests/multiline.rs +++ b/grammar/tests/multiline.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/serialization/json.rs b/grammar/tests/serialization/json.rs index 13a62c1b71..e940b4e764 100644 --- a/grammar/tests/serialization/json.rs +++ b/grammar/tests/serialization/json.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/serialization/mod.rs b/grammar/tests/serialization/mod.rs index 19cc88a3bf..5096607ede 100644 --- a/grammar/tests/serialization/mod.rs +++ b/grammar/tests/serialization/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/grammar/tests/tuple.rs b/grammar/tests/tuple.rs index 201ac1b1da..11f4d2f6df 100644 --- a/grammar/tests/tuple.rs +++ b/grammar/tests/tuple.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/errors/import_parser.rs b/imports/src/errors/import_parser.rs index fa1fccf773..ac24897ca8 100644 --- a/imports/src/errors/import_parser.rs +++ b/imports/src/errors/import_parser.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/errors/mod.rs b/imports/src/errors/mod.rs index 8cd075bde1..bf08c78578 100644 --- a/imports/src/errors/mod.rs +++ b/imports/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/lib.rs b/imports/src/lib.rs index 8807f72fca..9a9feb531c 100644 --- a/imports/src/lib.rs +++ b/imports/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/parser/core_package.rs b/imports/src/parser/core_package.rs index 67c3df8d47..33189bb564 100644 --- a/imports/src/parser/core_package.rs +++ b/imports/src/parser/core_package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/parser/import_parser.rs b/imports/src/parser/import_parser.rs index fde6aa4d95..73408f43ef 100644 --- a/imports/src/parser/import_parser.rs +++ b/imports/src/parser/import_parser.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/parser/mod.rs b/imports/src/parser/mod.rs index 4cc48bcdc2..2d5a8a5456 100644 --- a/imports/src/parser/mod.rs +++ b/imports/src/parser/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/parser/parse_package.rs b/imports/src/parser/parse_package.rs index 78118acd53..40123bdd46 100644 --- a/imports/src/parser/parse_package.rs +++ b/imports/src/parser/parse_package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/imports/src/parser/parse_symbol.rs b/imports/src/parser/parse_symbol.rs index 20d22d48c5..a6f1419b72 100644 --- a/imports/src/parser/parse_symbol.rs +++ b/imports/src/parser/parse_symbol.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/ast.rs b/input/src/ast.rs index 26be6946f9..cfb3deef07 100644 --- a/input/src/ast.rs +++ b/input/src/ast.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/common/eoi.rs b/input/src/common/eoi.rs index 615d0fd49f..738cd6e0c2 100644 --- a/input/src/common/eoi.rs +++ b/input/src/common/eoi.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/common/identifier.rs b/input/src/common/identifier.rs index 226e7fd9c7..606ac424ee 100644 --- a/input/src/common/identifier.rs +++ b/input/src/common/identifier.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/common/line_end.rs b/input/src/common/line_end.rs index 45c4f29e99..3cfde86f5e 100644 --- a/input/src/common/line_end.rs +++ b/input/src/common/line_end.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/common/mod.rs b/input/src/common/mod.rs index feca4d8fe4..6956627b12 100644 --- a/input/src/common/mod.rs +++ b/input/src/common/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/definitions/definition.rs b/input/src/definitions/definition.rs index 72a1bfb7d2..c0c64bbe67 100644 --- a/input/src/definitions/definition.rs +++ b/input/src/definitions/definition.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/definitions/mod.rs b/input/src/definitions/mod.rs index 8e4bb3d9ce..d59ffd9d5d 100644 --- a/input/src/definitions/mod.rs +++ b/input/src/definitions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/errors/mod.rs b/input/src/errors/mod.rs index c60030f31f..9a69051aaa 100644 --- a/input/src/errors/mod.rs +++ b/input/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/errors/parser.rs b/input/src/errors/parser.rs index a3f3684a04..71bdbee253 100644 --- a/input/src/errors/parser.rs +++ b/input/src/errors/parser.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/errors/syntax.rs b/input/src/errors/syntax.rs index 27f163bbc3..df03534215 100644 --- a/input/src/errors/syntax.rs +++ b/input/src/errors/syntax.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/expressions/array_initializer_expression.rs b/input/src/expressions/array_initializer_expression.rs index 0a01c4e90d..7870ac76ba 100644 --- a/input/src/expressions/array_initializer_expression.rs +++ b/input/src/expressions/array_initializer_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/expressions/array_inline_expression.rs b/input/src/expressions/array_inline_expression.rs index daec4d1694..573085bc79 100644 --- a/input/src/expressions/array_inline_expression.rs +++ b/input/src/expressions/array_inline_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/expressions/expression.rs b/input/src/expressions/expression.rs index fc8ce43f44..4694307b58 100644 --- a/input/src/expressions/expression.rs +++ b/input/src/expressions/expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/expressions/mod.rs b/input/src/expressions/mod.rs index 1caedd92a3..09e4554026 100644 --- a/input/src/expressions/mod.rs +++ b/input/src/expressions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/expressions/tuple_expression.rs b/input/src/expressions/tuple_expression.rs index 7de1345d69..5cbb95dffb 100644 --- a/input/src/expressions/tuple_expression.rs +++ b/input/src/expressions/tuple_expression.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/files/file.rs b/input/src/files/file.rs index 7032da4aa9..61142390b8 100644 --- a/input/src/files/file.rs +++ b/input/src/files/file.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/files/mod.rs b/input/src/files/mod.rs index 5c80e428e0..64275480c6 100644 --- a/input/src/files/mod.rs +++ b/input/src/files/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/files/table_or_section.rs b/input/src/files/table_or_section.rs index 1c24b8fedf..93dd31dfc9 100644 --- a/input/src/files/table_or_section.rs +++ b/input/src/files/table_or_section.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/lib.rs b/input/src/lib.rs index 60fc9ee262..e2537eeeb1 100644 --- a/input/src/lib.rs +++ b/input/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/parameters/mod.rs b/input/src/parameters/mod.rs index c1ae3fad35..15f8820a53 100644 --- a/input/src/parameters/mod.rs +++ b/input/src/parameters/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/parameters/parameter.rs b/input/src/parameters/parameter.rs index b04fe2e57c..410ef775a9 100644 --- a/input/src/parameters/parameter.rs +++ b/input/src/parameters/parameter.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/header.rs b/input/src/sections/header.rs index c374691f2d..ca437c0a45 100644 --- a/input/src/sections/header.rs +++ b/input/src/sections/header.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/main_.rs b/input/src/sections/main_.rs index af2400b2d8..0e8763a638 100644 --- a/input/src/sections/main_.rs +++ b/input/src/sections/main_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/mod.rs b/input/src/sections/mod.rs index f9dbbc8913..918990dd8d 100644 --- a/input/src/sections/mod.rs +++ b/input/src/sections/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/record.rs b/input/src/sections/record.rs index e742061136..8f431dd040 100644 --- a/input/src/sections/record.rs +++ b/input/src/sections/record.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/registers.rs b/input/src/sections/registers.rs index 15a923b387..0c14fe007f 100644 --- a/input/src/sections/registers.rs +++ b/input/src/sections/registers.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/section.rs b/input/src/sections/section.rs index d91089cca4..e53a6331cd 100644 --- a/input/src/sections/section.rs +++ b/input/src/sections/section.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/state.rs b/input/src/sections/state.rs index c3dc5313c8..25b454245f 100644 --- a/input/src/sections/state.rs +++ b/input/src/sections/state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/sections/state_leaf.rs b/input/src/sections/state_leaf.rs index 4ad6c2aa3e..c44ef71a4e 100644 --- a/input/src/sections/state_leaf.rs +++ b/input/src/sections/state_leaf.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/tables/mod.rs b/input/src/tables/mod.rs index d2b77b3f3c..4edfa339dd 100644 --- a/input/src/tables/mod.rs +++ b/input/src/tables/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/tables/private.rs b/input/src/tables/private.rs index aa96a6173f..3735989fae 100644 --- a/input/src/tables/private.rs +++ b/input/src/tables/private.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/tables/public.rs b/input/src/tables/public.rs index 213d7d724d..aaee16f425 100644 --- a/input/src/tables/public.rs +++ b/input/src/tables/public.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/tables/table.rs b/input/src/tables/table.rs index 1aa3863aa7..9ea777cbda 100644 --- a/input/src/tables/table.rs +++ b/input/src/tables/table.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/tables/visibility.rs b/input/src/tables/visibility.rs index dd8e7ef928..0abe3828ee 100644 --- a/input/src/tables/visibility.rs +++ b/input/src/tables/visibility.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/address_type.rs b/input/src/types/address_type.rs index d45fe1fe3e..a3bc14b2ad 100644 --- a/input/src/types/address_type.rs +++ b/input/src/types/address_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/array_dimensions.rs b/input/src/types/array_dimensions.rs index 0602abcce8..776ca0d899 100644 --- a/input/src/types/array_dimensions.rs +++ b/input/src/types/array_dimensions.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/array_type.rs b/input/src/types/array_type.rs index 00a05f4968..0132228e0d 100644 --- a/input/src/types/array_type.rs +++ b/input/src/types/array_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/boolean_type.rs b/input/src/types/boolean_type.rs index 0799f41acc..a482295004 100644 --- a/input/src/types/boolean_type.rs +++ b/input/src/types/boolean_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/data_type.rs b/input/src/types/data_type.rs index cfb96d5b6b..ecb82e3bda 100644 --- a/input/src/types/data_type.rs +++ b/input/src/types/data_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/field_type.rs b/input/src/types/field_type.rs index 52bb665e79..867868394e 100644 --- a/input/src/types/field_type.rs +++ b/input/src/types/field_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/group_type.rs b/input/src/types/group_type.rs index e73432a4b6..cc99e58d24 100644 --- a/input/src/types/group_type.rs +++ b/input/src/types/group_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/integer_type.rs b/input/src/types/integer_type.rs index 876b1405ec..a66e28d079 100644 --- a/input/src/types/integer_type.rs +++ b/input/src/types/integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/mod.rs b/input/src/types/mod.rs index b7a6793d7e..54e309a43b 100644 --- a/input/src/types/mod.rs +++ b/input/src/types/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/signed_integer_type.rs b/input/src/types/signed_integer_type.rs index 9273586fd7..eaac0faadc 100644 --- a/input/src/types/signed_integer_type.rs +++ b/input/src/types/signed_integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/tuple_type.rs b/input/src/types/tuple_type.rs index ebe9c9d068..c5086c077a 100644 --- a/input/src/types/tuple_type.rs +++ b/input/src/types/tuple_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/type_.rs b/input/src/types/type_.rs index 691d178f03..605f919f1d 100644 --- a/input/src/types/type_.rs +++ b/input/src/types/type_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/types/unsigned_integer_type.rs b/input/src/types/unsigned_integer_type.rs index 1860b4a85b..819bb372de 100644 --- a/input/src/types/unsigned_integer_type.rs +++ b/input/src/types/unsigned_integer_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/address.rs b/input/src/values/address.rs index 78b56ea02f..becdf5f31f 100644 --- a/input/src/values/address.rs +++ b/input/src/values/address.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/address_typed.rs b/input/src/values/address_typed.rs index ed987e10d9..17e678e86c 100644 --- a/input/src/values/address_typed.rs +++ b/input/src/values/address_typed.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/address_value.rs b/input/src/values/address_value.rs index 694173d97f..6134c41278 100644 --- a/input/src/values/address_value.rs +++ b/input/src/values/address_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/boolean_value.rs b/input/src/values/boolean_value.rs index 8a0b3d1a7d..769cddd049 100644 --- a/input/src/values/boolean_value.rs +++ b/input/src/values/boolean_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/field_value.rs b/input/src/values/field_value.rs index 6e0ecd6f48..f3bc21ebb4 100644 --- a/input/src/values/field_value.rs +++ b/input/src/values/field_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/group_coordinate.rs b/input/src/values/group_coordinate.rs index b021547e11..8a4882c39c 100644 --- a/input/src/values/group_coordinate.rs +++ b/input/src/values/group_coordinate.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/group_value.rs b/input/src/values/group_value.rs index bd8ee5a625..bc4c72eb17 100644 --- a/input/src/values/group_value.rs +++ b/input/src/values/group_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/integer_value.rs b/input/src/values/integer_value.rs index 3a81dad4fd..9e1004a929 100644 --- a/input/src/values/integer_value.rs +++ b/input/src/values/integer_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/mod.rs b/input/src/values/mod.rs index 74bc4e00d5..2a1c3c9e97 100644 --- a/input/src/values/mod.rs +++ b/input/src/values/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/negative_number.rs b/input/src/values/negative_number.rs index 9d87d258f8..704580fb9e 100644 --- a/input/src/values/negative_number.rs +++ b/input/src/values/negative_number.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/number_value.rs b/input/src/values/number_value.rs index b498bc5606..2071dca1a3 100644 --- a/input/src/values/number_value.rs +++ b/input/src/values/number_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/positive_number.rs b/input/src/values/positive_number.rs index 7477049cce..9ccf38cff2 100644 --- a/input/src/values/positive_number.rs +++ b/input/src/values/positive_number.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/signed_integer_value.rs b/input/src/values/signed_integer_value.rs index 298b6d1c6b..acd4301c0e 100644 --- a/input/src/values/signed_integer_value.rs +++ b/input/src/values/signed_integer_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/unsigned_integer_value.rs b/input/src/values/unsigned_integer_value.rs index 50ff67ca9f..7b0193069c 100644 --- a/input/src/values/unsigned_integer_value.rs +++ b/input/src/values/unsigned_integer_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/input/src/values/value.rs b/input/src/values/value.rs index a46886ac12..214b705bb0 100644 --- a/input/src/values/value.rs +++ b/input/src/values/value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/cli.rs b/leo/cli.rs index caff530283..fb224e06ec 100644 --- a/leo/cli.rs +++ b/leo/cli.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/cli_types.rs b/leo/cli_types.rs index a2527635e7..5fac70df71 100644 --- a/leo/cli_types.rs +++ b/leo/cli_types.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/add.rs b/leo/commands/add.rs index acd27a85cf..d531057895 100644 --- a/leo/commands/add.rs +++ b/leo/commands/add.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/build.rs b/leo/commands/build.rs index a51f0ca4ce..35a11ecf43 100644 --- a/leo/commands/build.rs +++ b/leo/commands/build.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/clean.rs b/leo/commands/clean.rs index 6cf2427a1e..c7d950e3bb 100644 --- a/leo/commands/clean.rs +++ b/leo/commands/clean.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/deploy.rs b/leo/commands/deploy.rs index 5d46863e68..7cbd1d5b5a 100644 --- a/leo/commands/deploy.rs +++ b/leo/commands/deploy.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/init.rs b/leo/commands/init.rs index 8f38690aa5..bf0d4a956e 100644 --- a/leo/commands/init.rs +++ b/leo/commands/init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/lint.rs b/leo/commands/lint.rs index 33c2349572..8db6b7577b 100644 --- a/leo/commands/lint.rs +++ b/leo/commands/lint.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/login.rs b/leo/commands/login.rs index bc0c96ecf9..1e29c3b1ff 100644 --- a/leo/commands/login.rs +++ b/leo/commands/login.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/logout.rs b/leo/commands/logout.rs index 191c559052..439570e051 100644 --- a/leo/commands/logout.rs +++ b/leo/commands/logout.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/mod.rs b/leo/commands/mod.rs index e3ec6f620f..96f2279e4a 100644 --- a/leo/commands/mod.rs +++ b/leo/commands/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/new.rs b/leo/commands/new.rs index 9905c74927..bc42eb7477 100644 --- a/leo/commands/new.rs +++ b/leo/commands/new.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/prove.rs b/leo/commands/prove.rs index 71eb4df9d5..b9967c75ce 100644 --- a/leo/commands/prove.rs +++ b/leo/commands/prove.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/publish.rs b/leo/commands/publish.rs index 973f548404..e25b4e7093 100644 --- a/leo/commands/publish.rs +++ b/leo/commands/publish.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/remove.rs b/leo/commands/remove.rs index 2a8a99e91d..8be8ea1b1c 100644 --- a/leo/commands/remove.rs +++ b/leo/commands/remove.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/run.rs b/leo/commands/run.rs index 8f9d688aab..bde7c99877 100644 --- a/leo/commands/run.rs +++ b/leo/commands/run.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/setup.rs b/leo/commands/setup.rs index d85d70e1b9..2e8ab518db 100644 --- a/leo/commands/setup.rs +++ b/leo/commands/setup.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/test.rs b/leo/commands/test.rs index e1b53e4e19..6f8a18886e 100644 --- a/leo/commands/test.rs +++ b/leo/commands/test.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/update.rs b/leo/commands/update.rs index 824630534a..dad803c947 100644 --- a/leo/commands/update.rs +++ b/leo/commands/update.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/commands/watch.rs b/leo/commands/watch.rs index 6475be7782..a4ef19067e 100644 --- a/leo/commands/watch.rs +++ b/leo/commands/watch.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/config.rs b/leo/config.rs index 50580069dd..5fa4ddcedb 100644 --- a/leo/config.rs +++ b/leo/config.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/cli.rs b/leo/errors/cli.rs index a2b6de693d..3d33adfef1 100644 --- a/leo/errors/cli.rs +++ b/leo/errors/cli.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/add.rs b/leo/errors/commands/add.rs index 720497a17f..bbcd33f45b 100644 --- a/leo/errors/commands/add.rs +++ b/leo/errors/commands/add.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/build.rs b/leo/errors/commands/build.rs index 0c7fbb39e0..9d478b2c68 100644 --- a/leo/errors/commands/build.rs +++ b/leo/errors/commands/build.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/init.rs b/leo/errors/commands/init.rs index ff9042444e..caa2945bde 100644 --- a/leo/errors/commands/init.rs +++ b/leo/errors/commands/init.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/login.rs b/leo/errors/commands/login.rs index 838f8550c8..ce506b84e9 100644 --- a/leo/errors/commands/login.rs +++ b/leo/errors/commands/login.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/mod.rs b/leo/errors/commands/mod.rs index dba067d1bc..079c24deec 100644 --- a/leo/errors/commands/mod.rs +++ b/leo/errors/commands/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/new.rs b/leo/errors/commands/new.rs index ffa4586c4d..9df2571e87 100644 --- a/leo/errors/commands/new.rs +++ b/leo/errors/commands/new.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/publish.rs b/leo/errors/commands/publish.rs index cd67e7fc0e..1a8026b088 100644 --- a/leo/errors/commands/publish.rs +++ b/leo/errors/commands/publish.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/run.rs b/leo/errors/commands/run.rs index 385f29c34d..98bfd7d28d 100644 --- a/leo/errors/commands/run.rs +++ b/leo/errors/commands/run.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/commands/test.rs b/leo/errors/commands/test.rs index 8071f0f579..5ba1914378 100644 --- a/leo/errors/commands/test.rs +++ b/leo/errors/commands/test.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/mod.rs b/leo/errors/mod.rs index 9fa3bd3d12..1370f5bef7 100644 --- a/leo/errors/mod.rs +++ b/leo/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/errors/updater.rs b/leo/errors/updater.rs index 8bfa4bdec9..e885b47cbb 100644 --- a/leo/errors/updater.rs +++ b/leo/errors/updater.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/lib.rs b/leo/lib.rs index 1fa729229c..d419917b72 100644 --- a/leo/lib.rs +++ b/leo/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/logger.rs b/leo/logger.rs index cd5de1f697..4873c7781f 100644 --- a/leo/logger.rs +++ b/leo/logger.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/main.rs b/leo/main.rs index 22be64947a..af03a4fb3b 100644 --- a/leo/main.rs +++ b/leo/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/synthesizer/circuit_synthesizer.rs b/leo/synthesizer/circuit_synthesizer.rs index 2ace963321..3acaf080db 100644 --- a/leo/synthesizer/circuit_synthesizer.rs +++ b/leo/synthesizer/circuit_synthesizer.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/synthesizer/mod.rs b/leo/synthesizer/mod.rs index a86b333e7f..a220def1fe 100644 --- a/leo/synthesizer/mod.rs +++ b/leo/synthesizer/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/synthesizer/serialized_circuit.rs b/leo/synthesizer/serialized_circuit.rs index 9cbaa1662d..6527a5277c 100644 --- a/leo/synthesizer/serialized_circuit.rs +++ b/leo/synthesizer/serialized_circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/synthesizer/serialized_field.rs b/leo/synthesizer/serialized_field.rs index 1c59e99267..6e1cbc9aa1 100644 --- a/leo/synthesizer/serialized_field.rs +++ b/leo/synthesizer/serialized_field.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/synthesizer/serialized_index.rs b/leo/synthesizer/serialized_index.rs index 76a05cced4..283309530c 100644 --- a/leo/synthesizer/serialized_index.rs +++ b/leo/synthesizer/serialized_index.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/leo/updater.rs b/leo/updater.rs index b2c9c85d50..fe50b3ba90 100644 --- a/leo/updater.rs +++ b/leo/updater.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/linter/src/main.rs b/linter/src/main.rs index b40b180fce..36c4f89d1f 100644 --- a/linter/src/main.rs +++ b/linter/src/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/imports/directory.rs b/package/src/errors/imports/directory.rs index e36d3740dd..05e6cfadf2 100644 --- a/package/src/errors/imports/directory.rs +++ b/package/src/errors/imports/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/imports/mod.rs b/package/src/errors/imports/mod.rs index e2aec2333d..35ff3d6fab 100644 --- a/package/src/errors/imports/mod.rs +++ b/package/src/errors/imports/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/inputs/directory.rs b/package/src/errors/inputs/directory.rs index b54c091243..ee93d8c6d6 100644 --- a/package/src/errors/inputs/directory.rs +++ b/package/src/errors/inputs/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/inputs/input.rs b/package/src/errors/inputs/input.rs index 8c08355a0e..659fcf32a3 100644 --- a/package/src/errors/inputs/input.rs +++ b/package/src/errors/inputs/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/inputs/mod.rs b/package/src/errors/inputs/mod.rs index 93d930fa71..ff9df5e267 100644 --- a/package/src/errors/inputs/mod.rs +++ b/package/src/errors/inputs/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/inputs/state.rs b/package/src/errors/inputs/state.rs index 869b0f7b0b..8d56253b46 100644 --- a/package/src/errors/inputs/state.rs +++ b/package/src/errors/inputs/state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/mod.rs b/package/src/errors/mod.rs index 7f09f85707..32bf1fc55c 100644 --- a/package/src/errors/mod.rs +++ b/package/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/checksum.rs b/package/src/errors/outputs/checksum.rs index 780c0b9617..e2a6bd4375 100644 --- a/package/src/errors/outputs/checksum.rs +++ b/package/src/errors/outputs/checksum.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/circuit.rs b/package/src/errors/outputs/circuit.rs index 631d3b8f72..ce006c88f2 100644 --- a/package/src/errors/outputs/circuit.rs +++ b/package/src/errors/outputs/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/directory.rs b/package/src/errors/outputs/directory.rs index 8fecb31e15..2e16be7e39 100644 --- a/package/src/errors/outputs/directory.rs +++ b/package/src/errors/outputs/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/mod.rs b/package/src/errors/outputs/mod.rs index 6a6d806842..e936884a57 100644 --- a/package/src/errors/outputs/mod.rs +++ b/package/src/errors/outputs/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/proof.rs b/package/src/errors/outputs/proof.rs index 31db518ea0..461a3ab259 100644 --- a/package/src/errors/outputs/proof.rs +++ b/package/src/errors/outputs/proof.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/proving_key.rs b/package/src/errors/outputs/proving_key.rs index fe73a56cdf..d78e62aec4 100644 --- a/package/src/errors/outputs/proving_key.rs +++ b/package/src/errors/outputs/proving_key.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/outputs/verification_key.rs b/package/src/errors/outputs/verification_key.rs index 8c4ac9dbb4..51398e630c 100644 --- a/package/src/errors/outputs/verification_key.rs +++ b/package/src/errors/outputs/verification_key.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/package.rs b/package/src/errors/package.rs index 73694d3259..63bab79fd8 100644 --- a/package/src/errors/package.rs +++ b/package/src/errors/package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/root/gitignore.rs b/package/src/errors/root/gitignore.rs index 83fbf7ce44..bb8b5d2bca 100644 --- a/package/src/errors/root/gitignore.rs +++ b/package/src/errors/root/gitignore.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/root/manifest.rs b/package/src/errors/root/manifest.rs index 10c0a5fd8f..b9645830d3 100644 --- a/package/src/errors/root/manifest.rs +++ b/package/src/errors/root/manifest.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/root/mod.rs b/package/src/errors/root/mod.rs index 6ed3f4bc07..6b90439ca1 100644 --- a/package/src/errors/root/mod.rs +++ b/package/src/errors/root/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/root/readme.rs b/package/src/errors/root/readme.rs index 919d767aa5..7e9203fdc6 100644 --- a/package/src/errors/root/readme.rs +++ b/package/src/errors/root/readme.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/root/zip.rs b/package/src/errors/root/zip.rs index 0f9391c3fe..e9a9c15b82 100644 --- a/package/src/errors/root/zip.rs +++ b/package/src/errors/root/zip.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/source/directory.rs b/package/src/errors/source/directory.rs index 2913162223..00d0629ec2 100644 --- a/package/src/errors/source/directory.rs +++ b/package/src/errors/source/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/source/lib.rs b/package/src/errors/source/lib.rs index 75d643a14c..6b754373e7 100644 --- a/package/src/errors/source/lib.rs +++ b/package/src/errors/source/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/source/main.rs b/package/src/errors/source/main.rs index 5bda24693f..07460b50e2 100644 --- a/package/src/errors/source/main.rs +++ b/package/src/errors/source/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/errors/source/mod.rs b/package/src/errors/source/mod.rs index 35f5b284ac..0e073f0423 100644 --- a/package/src/errors/source/mod.rs +++ b/package/src/errors/source/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/imports/directory.rs b/package/src/imports/directory.rs index d301aded63..a1d7e850ea 100644 --- a/package/src/imports/directory.rs +++ b/package/src/imports/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/imports/mod.rs b/package/src/imports/mod.rs index e2aec2333d..35ff3d6fab 100644 --- a/package/src/imports/mod.rs +++ b/package/src/imports/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/inputs/directory.rs b/package/src/inputs/directory.rs index 73b8443856..77b4701501 100644 --- a/package/src/inputs/directory.rs +++ b/package/src/inputs/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/inputs/input.rs b/package/src/inputs/input.rs index dedf7a3177..60365535c4 100644 --- a/package/src/inputs/input.rs +++ b/package/src/inputs/input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/inputs/mod.rs b/package/src/inputs/mod.rs index 963f0e1e22..d6c805d1b7 100644 --- a/package/src/inputs/mod.rs +++ b/package/src/inputs/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/inputs/pairs.rs b/package/src/inputs/pairs.rs index fc0484d59b..9ffcca0df4 100644 --- a/package/src/inputs/pairs.rs +++ b/package/src/inputs/pairs.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/inputs/state.rs b/package/src/inputs/state.rs index 5809a9b278..cba6d515c9 100644 --- a/package/src/inputs/state.rs +++ b/package/src/inputs/state.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/lib.rs b/package/src/lib.rs index d162cfa8f8..fb3d000893 100644 --- a/package/src/lib.rs +++ b/package/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/checksum.rs b/package/src/outputs/checksum.rs index cb7208b199..cf2de78c96 100644 --- a/package/src/outputs/checksum.rs +++ b/package/src/outputs/checksum.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/circuit.rs b/package/src/outputs/circuit.rs index 9d3888cf71..7de45f1fb3 100644 --- a/package/src/outputs/circuit.rs +++ b/package/src/outputs/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/directory.rs b/package/src/outputs/directory.rs index 2e0d810add..e2557f343c 100644 --- a/package/src/outputs/directory.rs +++ b/package/src/outputs/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/mod.rs b/package/src/outputs/mod.rs index 7dccb07d83..f4c02b8f18 100644 --- a/package/src/outputs/mod.rs +++ b/package/src/outputs/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/proof.rs b/package/src/outputs/proof.rs index 161b84e218..b1f2be7c4b 100644 --- a/package/src/outputs/proof.rs +++ b/package/src/outputs/proof.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/proving_key.rs b/package/src/outputs/proving_key.rs index 28ee50f8e6..fa336714b7 100644 --- a/package/src/outputs/proving_key.rs +++ b/package/src/outputs/proving_key.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/outputs/verification_key.rs b/package/src/outputs/verification_key.rs index a1e1d85756..d3499c7b05 100644 --- a/package/src/outputs/verification_key.rs +++ b/package/src/outputs/verification_key.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/package.rs b/package/src/package.rs index b01a362e36..f149c4ddf1 100644 --- a/package/src/package.rs +++ b/package/src/package.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/root/gitignore.rs b/package/src/root/gitignore.rs index 7414e9303e..756c51be05 100644 --- a/package/src/root/gitignore.rs +++ b/package/src/root/gitignore.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/root/manifest.rs b/package/src/root/manifest.rs index 2bf9b466e0..3a85f60447 100644 --- a/package/src/root/manifest.rs +++ b/package/src/root/manifest.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/root/mod.rs b/package/src/root/mod.rs index 6ed3f4bc07..6b90439ca1 100644 --- a/package/src/root/mod.rs +++ b/package/src/root/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/root/readme.rs b/package/src/root/readme.rs index 7f35c1762f..468f5e58b9 100644 --- a/package/src/root/readme.rs +++ b/package/src/root/readme.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/root/zip.rs b/package/src/root/zip.rs index a8ff66b39c..76f82c1aee 100644 --- a/package/src/root/zip.rs +++ b/package/src/root/zip.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/source/directory.rs b/package/src/source/directory.rs index 0b63d615de..5764f972df 100644 --- a/package/src/source/directory.rs +++ b/package/src/source/directory.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/source/library.rs b/package/src/source/library.rs index 275f2db1dc..90a5193b85 100644 --- a/package/src/source/library.rs +++ b/package/src/source/library.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/source/main.rs b/package/src/source/main.rs index 149341e92c..7ac8c4990d 100644 --- a/package/src/source/main.rs +++ b/package/src/source/main.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/src/source/mod.rs b/package/src/source/mod.rs index 7c849f7f94..3057d1a2b5 100644 --- a/package/src/source/mod.rs +++ b/package/src/source/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/tests/initialize/initialize.rs b/package/tests/initialize/initialize.rs index 82763d4124..e3cffcfd8c 100644 --- a/package/tests/initialize/initialize.rs +++ b/package/tests/initialize/initialize.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/tests/initialize/mod.rs b/package/tests/initialize/mod.rs index c0fbdb773b..26482569f5 100644 --- a/package/tests/initialize/mod.rs +++ b/package/tests/initialize/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/tests/manifest/manifest.rs b/package/tests/manifest/manifest.rs index 92be326b69..d58fce5150 100644 --- a/package/tests/manifest/manifest.rs +++ b/package/tests/manifest/manifest.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/tests/manifest/mod.rs b/package/tests/manifest/mod.rs index 10d357ff78..009f858690 100644 --- a/package/tests/manifest/mod.rs +++ b/package/tests/manifest/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/package/tests/mod.rs b/package/tests/mod.rs index 27a23865ae..8f72a16b3e 100644 --- a/package/tests/mod.rs +++ b/package/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/dpc_record_values.rs b/state/src/errors/dpc_record_values.rs index 56e7ed07fd..e47ba1cdcd 100644 --- a/state/src/errors/dpc_record_values.rs +++ b/state/src/errors/dpc_record_values.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/input_value.rs b/state/src/errors/input_value.rs index 2b91fa921a..2463d27d4b 100644 --- a/state/src/errors/input_value.rs +++ b/state/src/errors/input_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/local_data_commitment.rs b/state/src/errors/local_data_commitment.rs index f5539b01ae..f2dd08aa13 100644 --- a/state/src/errors/local_data_commitment.rs +++ b/state/src/errors/local_data_commitment.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/mod.rs b/state/src/errors/mod.rs index f9a717fc71..961b1fad08 100644 --- a/state/src/errors/mod.rs +++ b/state/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/record_commitment.rs b/state/src/errors/record_commitment.rs index a919dce2d1..a0205248ab 100644 --- a/state/src/errors/record_commitment.rs +++ b/state/src/errors/record_commitment.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/state_leaf_values.rs b/state/src/errors/state_leaf_values.rs index 75f19797f8..83b377178a 100644 --- a/state/src/errors/state_leaf_values.rs +++ b/state/src/errors/state_leaf_values.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/errors/state_values.rs b/state/src/errors/state_values.rs index 8f29ed9968..94af651517 100644 --- a/state/src/errors/state_values.rs +++ b/state/src/errors/state_values.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/lib.rs b/state/src/lib.rs index d2badc4385..91b4f3b3e2 100644 --- a/state/src/lib.rs +++ b/state/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/local_data_commitment/local_data_commitment.rs b/state/src/local_data_commitment/local_data_commitment.rs index 0615c71f21..02bd5d7ca9 100644 --- a/state/src/local_data_commitment/local_data_commitment.rs +++ b/state/src/local_data_commitment/local_data_commitment.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/local_data_commitment/mod.rs b/state/src/local_data_commitment/mod.rs index 4c6f19230d..65b44b4c1c 100644 --- a/state/src/local_data_commitment/mod.rs +++ b/state/src/local_data_commitment/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/local_data_commitment/state_leaf_values.rs b/state/src/local_data_commitment/state_leaf_values.rs index 600af06633..8c7148741d 100644 --- a/state/src/local_data_commitment/state_leaf_values.rs +++ b/state/src/local_data_commitment/state_leaf_values.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/local_data_commitment/state_values.rs b/state/src/local_data_commitment/state_values.rs index b5e2619c7e..0ba48af568 100644 --- a/state/src/local_data_commitment/state_values.rs +++ b/state/src/local_data_commitment/state_values.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/record_commitment/dpc_record_values.rs b/state/src/record_commitment/dpc_record_values.rs index 3ee90d8779..55ea334b69 100644 --- a/state/src/record_commitment/dpc_record_values.rs +++ b/state/src/record_commitment/dpc_record_values.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/record_commitment/mod.rs b/state/src/record_commitment/mod.rs index 69adaa0da6..e019ee0585 100644 --- a/state/src/record_commitment/mod.rs +++ b/state/src/record_commitment/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/record_commitment/record_commitment.rs b/state/src/record_commitment/record_commitment.rs index 24e730ab86..9dc8785227 100644 --- a/state/src/record_commitment/record_commitment.rs +++ b/state/src/record_commitment/record_commitment.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/utilities/input_value.rs b/state/src/utilities/input_value.rs index 01ff5d3017..cdcf32feb1 100644 --- a/state/src/utilities/input_value.rs +++ b/state/src/utilities/input_value.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/src/utilities/mod.rs b/state/src/utilities/mod.rs index e4668829a0..2bffeb586a 100644 --- a/state/src/utilities/mod.rs +++ b/state/src/utilities/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/tests/mod.rs b/state/tests/mod.rs index 5ecc95c701..2c287a3b13 100644 --- a/state/tests/mod.rs +++ b/state/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/tests/test_verify_local_data_commitment.rs b/state/tests/test_verify_local_data_commitment.rs index 7df7f58357..69e649a0a7 100644 --- a/state/tests/test_verify_local_data_commitment.rs +++ b/state/tests/test_verify_local_data_commitment.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/state/tests/test_verify_record_commitment.rs b/state/tests/test_verify_record_commitment.rs index 98fc1543c4..3cc2a736cb 100644 --- a/state/tests/test_verify_record_commitment.rs +++ b/state/tests/test_verify_record_commitment.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/attributes/attribute.rs b/symbol-table/src/attributes/attribute.rs index 81d1dca02e..92aa399110 100644 --- a/symbol-table/src/attributes/attribute.rs +++ b/symbol-table/src/attributes/attribute.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/attributes/mod.rs b/symbol-table/src/attributes/mod.rs index f8d19f5a62..5889dbbc6d 100644 --- a/symbol-table/src/attributes/mod.rs +++ b/symbol-table/src/attributes/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/errors/mod.rs b/symbol-table/src/errors/mod.rs index 107ac193f8..5a78a435c9 100644 --- a/symbol-table/src/errors/mod.rs +++ b/symbol-table/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/errors/symbol_table.rs b/symbol-table/src/errors/symbol_table.rs index e2ea24802c..07bfa9b00d 100644 --- a/symbol-table/src/errors/symbol_table.rs +++ b/symbol-table/src/errors/symbol_table.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/errors/type_.rs b/symbol-table/src/errors/type_.rs index c040fcc10a..b89f3c7a35 100644 --- a/symbol-table/src/errors/type_.rs +++ b/symbol-table/src/errors/type_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/imports/imported_symbols.rs b/symbol-table/src/imports/imported_symbols.rs index c344b9457b..f7444874e8 100644 --- a/symbol-table/src/imports/imported_symbols.rs +++ b/symbol-table/src/imports/imported_symbols.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/imports/mod.rs b/symbol-table/src/imports/mod.rs index 000a0a4885..73983a5fe8 100644 --- a/symbol-table/src/imports/mod.rs +++ b/symbol-table/src/imports/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/lib.rs b/symbol-table/src/lib.rs index 2156653e13..9e124dbe37 100644 --- a/symbol-table/src/lib.rs +++ b/symbol-table/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/symbol_table.rs b/symbol-table/src/symbol_table.rs index d3cf5cdf1a..87ccd8b953 100644 --- a/symbol-table/src/symbol_table.rs +++ b/symbol-table/src/symbol_table.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/circuits/circuit.rs b/symbol-table/src/types/circuits/circuit.rs index b0b123879c..af5ab9052d 100644 --- a/symbol-table/src/types/circuits/circuit.rs +++ b/symbol-table/src/types/circuits/circuit.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/circuits/circuit_variable.rs b/symbol-table/src/types/circuits/circuit_variable.rs index dfbb4d94dc..8f63acb232 100644 --- a/symbol-table/src/types/circuits/circuit_variable.rs +++ b/symbol-table/src/types/circuits/circuit_variable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/circuits/mod.rs b/symbol-table/src/types/circuits/mod.rs index 5af76a09fe..fabb21e6b1 100644 --- a/symbol-table/src/types/circuits/mod.rs +++ b/symbol-table/src/types/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/functions/function.rs b/symbol-table/src/types/functions/function.rs index 05fc6c43fb..0d5f50ee41 100644 --- a/symbol-table/src/types/functions/function.rs +++ b/symbol-table/src/types/functions/function.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/functions/function_input.rs b/symbol-table/src/types/functions/function_input.rs index cee5ed1df5..c0147a6c04 100644 --- a/symbol-table/src/types/functions/function_input.rs +++ b/symbol-table/src/types/functions/function_input.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/functions/function_input_variable.rs b/symbol-table/src/types/functions/function_input_variable.rs index 8e19d0153f..b1e63b494a 100644 --- a/symbol-table/src/types/functions/function_input_variable.rs +++ b/symbol-table/src/types/functions/function_input_variable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/functions/function_output.rs b/symbol-table/src/types/functions/function_output.rs index 2da52025cf..43919b10a3 100644 --- a/symbol-table/src/types/functions/function_output.rs +++ b/symbol-table/src/types/functions/function_output.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/functions/mod.rs b/symbol-table/src/types/functions/mod.rs index fe22157837..dbfc40c7dc 100644 --- a/symbol-table/src/types/functions/mod.rs +++ b/symbol-table/src/types/functions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/mod.rs b/symbol-table/src/types/mod.rs index 8c8adaad13..c8c083d597 100644 --- a/symbol-table/src/types/mod.rs +++ b/symbol-table/src/types/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/type_.rs b/symbol-table/src/types/type_.rs index 304ffa083d..652310ae9e 100644 --- a/symbol-table/src/types/type_.rs +++ b/symbol-table/src/types/type_.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/type_variable.rs b/symbol-table/src/types/type_variable.rs index 161c5f3953..7a20d66f9e 100644 --- a/symbol-table/src/types/type_variable.rs +++ b/symbol-table/src/types/type_variable.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/user_defined/mod.rs b/symbol-table/src/types/user_defined/mod.rs index c919d6a014..57ea279753 100644 --- a/symbol-table/src/types/user_defined/mod.rs +++ b/symbol-table/src/types/user_defined/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/src/types/user_defined/user_defined_type.rs b/symbol-table/src/types/user_defined/user_defined_type.rs index 80e75eedf8..2cee495cbc 100644 --- a/symbol-table/src/types/user_defined/user_defined_type.rs +++ b/symbol-table/src/types/user_defined/user_defined_type.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/tests/mod.rs b/symbol-table/tests/mod.rs index 98f1fcb17e..361261910c 100644 --- a/symbol-table/tests/mod.rs +++ b/symbol-table/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/symbol-table/tests/symbol_table/mod.rs b/symbol-table/tests/symbol_table/mod.rs index 3a3d15b57f..173f610821 100644 --- a/symbol-table/tests/symbol_table/mod.rs +++ b/symbol-table/tests/symbol_table/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/assertions/mod.rs b/type-inference/src/assertions/mod.rs index d98b3aad82..46b946bc4d 100644 --- a/type-inference/src/assertions/mod.rs +++ b/type-inference/src/assertions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/assertions/type_assertion.rs b/type-inference/src/assertions/type_assertion.rs index 8baf98f5b0..02bf3766fa 100644 --- a/type-inference/src/assertions/type_assertion.rs +++ b/type-inference/src/assertions/type_assertion.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/assertions/type_equality.rs b/type-inference/src/assertions/type_equality.rs index f20fd696ce..eff73784a4 100644 --- a/type-inference/src/assertions/type_equality.rs +++ b/type-inference/src/assertions/type_equality.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/assertions/type_membership.rs b/type-inference/src/assertions/type_membership.rs index 5df0edb0c7..ab89b3661e 100644 --- a/type-inference/src/assertions/type_membership.rs +++ b/type-inference/src/assertions/type_membership.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/assertions/type_variable_pair.rs b/type-inference/src/assertions/type_variable_pair.rs index e7cca2b2e6..3e6111ab73 100644 --- a/type-inference/src/assertions/type_variable_pair.rs +++ b/type-inference/src/assertions/type_variable_pair.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/errors/frame.rs b/type-inference/src/errors/frame.rs index 814d2e8ff2..55487f0dc9 100644 --- a/type-inference/src/errors/frame.rs +++ b/type-inference/src/errors/frame.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/errors/mod.rs b/type-inference/src/errors/mod.rs index 629a558e2f..a6ececc3fa 100644 --- a/type-inference/src/errors/mod.rs +++ b/type-inference/src/errors/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/errors/scope.rs b/type-inference/src/errors/scope.rs index e31c3aaea4..91c0108770 100644 --- a/type-inference/src/errors/scope.rs +++ b/type-inference/src/errors/scope.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/errors/type_assertion.rs b/type-inference/src/errors/type_assertion.rs index b8764007bb..0096150e28 100644 --- a/type-inference/src/errors/type_assertion.rs +++ b/type-inference/src/errors/type_assertion.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/errors/type_inference.rs b/type-inference/src/errors/type_inference.rs index dac08fc59b..73f96dd4db 100644 --- a/type-inference/src/errors/type_inference.rs +++ b/type-inference/src/errors/type_inference.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/errors/variable_table.rs b/type-inference/src/errors/variable_table.rs index d2f326e28e..59c9272f9d 100644 --- a/type-inference/src/errors/variable_table.rs +++ b/type-inference/src/errors/variable_table.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/lib.rs b/type-inference/src/lib.rs index ab20d42409..97d81ce99c 100644 --- a/type-inference/src/lib.rs +++ b/type-inference/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/objects/frame.rs b/type-inference/src/objects/frame.rs index b994bdaa59..acdefb89c0 100644 --- a/type-inference/src/objects/frame.rs +++ b/type-inference/src/objects/frame.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/objects/mod.rs b/type-inference/src/objects/mod.rs index 745c8eca50..632671824e 100644 --- a/type-inference/src/objects/mod.rs +++ b/type-inference/src/objects/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/objects/scope.rs b/type-inference/src/objects/scope.rs index 34a0e20c58..c0749720b0 100644 --- a/type-inference/src/objects/scope.rs +++ b/type-inference/src/objects/scope.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/objects/variable_table.rs b/type-inference/src/objects/variable_table.rs index 9d15007cf3..52b98264ff 100644 --- a/type-inference/src/objects/variable_table.rs +++ b/type-inference/src/objects/variable_table.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/src/type_inference.rs b/type-inference/src/type_inference.rs index 17baf6db4c..272c8cc96b 100644 --- a/type-inference/src/type_inference.rs +++ b/type-inference/src/type_inference.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/arrays/mod.rs b/type-inference/tests/arrays/mod.rs index d26c9c2bb7..b220ee818f 100644 --- a/type-inference/tests/arrays/mod.rs +++ b/type-inference/tests/arrays/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/circuits/mod.rs b/type-inference/tests/circuits/mod.rs index e05837c4d0..2c7ae98918 100644 --- a/type-inference/tests/circuits/mod.rs +++ b/type-inference/tests/circuits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/functions/mod.rs b/type-inference/tests/functions/mod.rs index c353cad388..3bdbd70730 100644 --- a/type-inference/tests/functions/mod.rs +++ b/type-inference/tests/functions/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/mod.rs b/type-inference/tests/mod.rs index f0de8b752e..9b42bfe3f6 100644 --- a/type-inference/tests/mod.rs +++ b/type-inference/tests/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/statements/mod.rs b/type-inference/tests/statements/mod.rs index 1bab5af354..1bbeaf9af8 100644 --- a/type-inference/tests/statements/mod.rs +++ b/type-inference/tests/statements/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/tuples/mod.rs b/type-inference/tests/tuples/mod.rs index 9667e11971..ce2e92c760 100644 --- a/type-inference/tests/tuples/mod.rs +++ b/type-inference/tests/tuples/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify diff --git a/type-inference/tests/variables/mod.rs b/type-inference/tests/variables/mod.rs index 1cadaa5e68..195152eba9 100644 --- a/type-inference/tests/variables/mod.rs +++ b/type-inference/tests/variables/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2020 Aleo Systems Inc. +// Copyright (C) 2019-2021 Aleo Systems Inc. // This file is part of the Leo library. // The Leo library is free software: you can redistribute it and/or modify From ad5cad2a084d86484de38d4742ad3d352331fa42 Mon Sep 17 00:00:00 2001 From: howardwu Date: Mon, 1 Feb 2021 20:28:33 -0800 Subject: [PATCH 3/4] Update precommit hook to use stable for clippy --- .rusty-hook.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rusty-hook.toml b/.rusty-hook.toml index 9c57ceedf9..bcdbfd8fa4 100644 --- a/.rusty-hook.toml +++ b/.rusty-hook.toml @@ -1,5 +1,5 @@ [hooks] -pre-commit = "cargo +nightly clippy && cargo +nightly fmt --all -- --check" +pre-commit = "cargo clippy && cargo +nightly fmt --all -- --check" [logging] verbose = true From cbd45e56d7fdbea0ce7d5172ccbafa45e300af28 Mon Sep 17 00:00:00 2001 From: howardwu Date: Mon, 1 Feb 2021 20:39:01 -0800 Subject: [PATCH 4/4] Resolves unknown clippy flags --- asg/src/lib.rs | 5 ++--- asg/src/program/mod.rs | 2 +- compiler/src/function/input/input_keyword.rs | 1 - 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/asg/src/lib.rs b/asg/src/lib.rs index 99f947c0e8..76eb75f661 100644 --- a/asg/src/lib.rs +++ b/asg/src/lib.rs @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with the Leo library. If not, see . -//! The abstract semantic graph (asg) for a Leo program. +//! The abstract semantic graph (ASG) for a Leo program. //! //! This module contains the [`Asg`] type, an abstract data type that represents a Leo program //! as a series of graph nodes. The [`Asg`] type is at a greater level of abstraction than an [`Ast`]. @@ -22,7 +22,6 @@ //! A new [`Asg`] type can be created from an [`Ast`]. //! Converting to an [`Asg`] provides greater type safety by canonicalizing and checking program types. -#![allow(clippy::from_over_into)] #[macro_use] extern crate thiserror; @@ -72,7 +71,7 @@ pub use leo_ast::{Identifier, Span}; use std::path::Path; -/// The abstract semantic graph (asg) for a Leo program. +/// The abstract semantic graph (ASG) for a Leo program. /// /// The [`Asg`] type represents a Leo program as a series of recursive data types. /// These data types form a graph that begins from a [`Program`] type node. diff --git a/asg/src/program/mod.rs b/asg/src/program/mod.rs index 281d3b9931..93683d7127 100644 --- a/asg/src/program/mod.rs +++ b/asg/src/program/mod.rs @@ -31,7 +31,7 @@ use indexmap::IndexMap; use std::{cell::RefCell, sync::Arc}; use uuid::Uuid; -/// Stores the Leo program abstract semantic graph (asg). +/// Stores the Leo program abstract semantic graph (ASG). #[derive(Clone)] pub struct InnerProgram { /// The unique id of the program. diff --git a/compiler/src/function/input/input_keyword.rs b/compiler/src/function/input/input_keyword.rs index 3dafc25f05..bc8acb10de 100644 --- a/compiler/src/function/input/input_keyword.rs +++ b/compiler/src/function/input/input_keyword.rs @@ -27,7 +27,6 @@ pub const REGISTERS_VARIABLE_NAME: &str = "registers"; pub const STATE_VARIABLE_NAME: &str = "state"; pub const STATE_LEAF_VARIABLE_NAME: &str = "state_leaf"; -#[allow(clippy::vec_init_then_push)] impl> ConstrainedProgram { pub fn allocate_input_keyword>( &mut self,