collin
6a7748e5fe
chore(leo): bump version for new release
2023-07-19 18:17:31 -07:00
Collin Chin
d44457fc32
[Feature] Implement leo execute ( #2491 )
...
* bump snarkvm rev
* update default gitignore
* impl leo execute
* bump snarkvm 0.14.5
* modify examples wip
* update run.sh examples
* impl env file
* clippy warning
* fix auction example
* fix auction example env
* generate new private key for new env - tests failing due to env not found err
* commit error changes
* Fix tests; clippy
* Get examples working
* leo build checks that build dir is well formed; clippy
* Clean up
* Update examples/README.md
Co-authored-by: d0cd <pranavsaig@gmail.com>
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
* do not commit .avm files
* use snarkvm commands
---------
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
Co-authored-by: Pranav Gaddamadugu <pranav@aleo.org>
Co-authored-by: d0cd <pranavsaig@gmail.com>
2023-07-19 18:04:09 -07:00
dependabot[bot]
6e29afb400
Bump regex from 1.8.4 to 1.9.1 ( #2481 )
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.8.4 to 1.9.1.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.8.4...1.9.1 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-10 15:05:56 -07:00
collin
a18899f253
chore(leo): bump version for new release
2023-07-05 21:25:34 -07:00
dependabot[bot]
208176bc5d
Bump backtrace from 0.3.67 to 0.3.68 ( #2438 )
...
Bumps [backtrace](https://github.com/rust-lang/backtrace-rs ) from 0.3.67 to 0.3.68.
- [Release notes](https://github.com/rust-lang/backtrace-rs/releases )
- [Commits](https://github.com/rust-lang/backtrace-rs/compare/0.3.67...0.3.68 )
---
updated-dependencies:
- dependency-name: backtrace
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-05 18:06:21 -07:00
d0cd
d92d48e4a5
[Fix] Fix issues related to flattening. ( #2439 )
...
* Implement fix
* Regen expectations
* Update AST printing for functions
* Fix code generation when there are no output operands
* Fix flattener
* Add additional tests
* Regen expectations
* Fmt
* Regen expectations
2023-07-05 15:45:15 -07:00
Collin Chin
b690a62676
impl Mapping::contains, Mapping::remove ( #2436 )
...
* impl Mapping::contains, Mapping::remove
* regen expectations
* Update compiler/passes/src/type_checking/checker.rs
Co-authored-by: Alessandro Coglio <coglio@kestrel.edu>
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
---------
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
Co-authored-by: Alessandro Coglio <coglio@kestrel.edu>
2023-06-29 17:04:55 -07:00
collin
9fccf015d7
chore(leo): bump version for new release
2023-06-28 21:09:44 -07:00
d0cd
b236918df4
[Feature] Support ChaCha::rand_*
( #2433 )
...
* Add tests for ChaCha::rand*
* Add Chacha::rand* to AST, tyc, and codegen
* Add lottery example
* Regen expectations
* Add check asserting that command is only used in finalize block
* Update example and related CI
2023-06-28 21:02:50 -07:00
d0cd
c373b898c4
Merge pull request #2427 from AleoHQ/feat/group-to-coordinate
...
[Feature] Support `to_x_coordinate` for `group`s.
2023-06-28 11:32:57 -04:00
Pranav Gaddamadugu
5699352ce6
Add tests and regen expectations
2023-06-23 21:03:32 -04:00
Pranav Gaddamadugu
4bbdf63da9
Add tests and regen expectations
2023-06-23 20:36:16 -04:00
Pranav Gaddamadugu
8b4552efd5
Fix implementation
2023-06-23 20:35:42 -04:00
collin
80b0976276
chore(leo): bump version for new release
2023-06-23 17:19:25 -07:00
d0cd
07d26ea43f
[Feature] Casting via the as
operator. ( #2426 )
...
* Revert "Revert WIP"
This reverts commit 5cce8b4a0e
.
* Update tyc
* Add parse, compile, and execute tests
* Regen expectations
2023-06-23 17:09:15 -07:00
Collin Chin
4a0ee1d9d8
[Feature] implement block.height command ( #2420 )
...
* implement initial block.height
* commit.height parsing and code generation
* patch self.caller tests
* add error for self.caller in a finalize context
* fix test
2023-06-20 16:36:11 -07:00
collin
7741f5b0c4
chore(leo): bump version for new release
2023-06-15 22:38:02 -07:00
collin
f5867a4fe4
chore(leo): bump version for new release
2023-06-15 22:26:19 -07:00
Collin Chin
e5ae160d1a
Implement new hash and commit functions ( #2415 )
...
* refactor hash -> hash_to_field
* refactor commit -> commit_to_field
* implement commit_to_address
* implement hash_to_address
* update hash and commit examples
* implement hash_to_scalar
* update tests
* implement bhp hash to integer variants
* implement bhp pedersen and poseidon integer variants
* Update compiler/passes/src/type_checking/checker.rs
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
* Update compiler/passes/src/type_checking/checker.rs
Co-authored-by: Alessandro Coglio <coglio@kestrel.edu>
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
* fix pedersen hash type checks
---------
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
Co-authored-by: Alessandro Coglio <coglio@kestrel.edu>
2023-06-15 19:55:03 -07:00
Collin Chin
d83c4be330
Implement Mapping::get_or_use ( #2413 )
...
* get_or_init -> get_or_use
* use mapping get_or_use in examples
* fix codegen for Mapping::get_or_use
* fix tests for Mapping::get_or_use
* fix warnings, update snarvm rev
* bump circle rust img v1.70
* fix codegen
* update snarkvm rev and regen tests
* Update compiler/parser/src/parser/expression.rs
Co-authored-by: d0cd <pranavsaig@gmail.com>
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
* Delete program.json
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
* Delete program.json
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
---------
Signed-off-by: Collin Chin <16715212+collinc97@users.noreply.github.com>
Co-authored-by: d0cd <pranavsaig@gmail.com>
2023-06-13 12:09:33 -07:00
Collin Chin
4e71f60cb4
Implement additional features to the "group" element type ( #2394 )
...
* add new hash and commit symbols
* pedersen commitment methods return fields
* use snarkvm rev a451d91, impl commit_to_group.bhp256
* implement bhp commit to group variants
* implement bhp hash_to_group variants
* implement pedersen commit_to_group and hash_to_scalar variants
* implement poseidon hash_to_group and hash_to_scalar variants
* remove hash_many symbol
* fix tests
* regen test expectations
2023-06-07 13:09:08 -07:00
collin
52dfc097c5
chore(leo): bump version for new release
2023-05-31 20:37:17 -07:00
Collin Chin
42d97d3d89
implement group::GEN Leo syntax ( #2401 )
...
* implement group::GEN Leo syntax
* revert unrelated test changes
* move new errors to bottom of file to keep previous error codes consistent
2023-05-31 16:05:56 -07:00
Collin Chin
ed734e878e
Bump/snarkvm v0.11.4 ( #2399 )
2023-05-30 19:50:01 -07:00
dependabot[bot]
c639735f47
Bump criterion from 0.4.0 to 0.5.0
...
Bumps [criterion](https://github.com/bheisler/criterion.rs ) from 0.4.0 to 0.5.0.
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0 )
---
updated-dependencies:
- dependency-name: criterion
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-05-24 10:59:58 +00:00
Collin Chin
2e1a9fc979
chore(leo): bump version for new release
2023-05-23 15:02:30 -07:00
collin
1c5de6fb80
bump snarkvm v0.11.2
2023-05-12 14:42:15 -07:00
d0cd
d0c29ce8e0
[Update] snarkvm 0.11.0 ( #2377 )
...
* Remove gates from tests
* Remove Finalize test namespace
* Remove gates from examples
* Remove gates from compiler
* Regen expectations
* Add test that gates is allowed as a standard field of a record
* Update Rust version in CI
* Add check for MAX_MAPPINGS
2023-05-10 21:32:37 -07:00
dependabot[bot]
1a6b6a2eeb
Bump regex from 1.7.3 to 1.8.0
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.7.3 to 1.8.0.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/commits )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-04-21 10:57:59 +00:00
collin
85821b524e
chore(leo): bump version for new release
2023-04-19 18:02:15 -07:00
Pranav Gaddamadugu
4b64fbe03a
Fix error message
2023-04-18 17:22:59 -07:00
Pranav Gaddamadugu
6a660c4ceb
Remove gates check
2023-04-18 17:14:01 -07:00
Pranav Gaddamadugu
581a671e31
Update maximum number of transitions
2023-04-18 17:14:01 -07:00
Pranav Gaddamadugu
2390d10677
Regen expectations
2023-04-18 17:14:01 -07:00
Pranav Gaddamadugu
93dbeb77b2
Update tests
2023-04-18 17:09:22 -07:00
Pranav Gaddamadugu
0b99135962
Update Mapping::get_or to Mapping::get_or_init
2023-04-18 17:09:22 -07:00
Pranav Gaddamadugu
209d9cb5e7
Regen expectations
2023-04-18 17:08:09 -07:00
Pranav Gaddamadugu
74c888b037
Add/update tests
2023-04-18 17:08:09 -07:00
Pranav Gaddamadugu
cff63e9918
Address feedback; remove leo-core
2023-04-18 17:08:09 -07:00
Pranav Gaddamadugu
7bef7c401f
Regen expectations
2023-04-18 17:08:09 -07:00
Pranav Gaddamadugu
d337cba6ac
Add test in Finalize namespace
2023-04-18 16:59:32 -07:00
Pranav Gaddamadugu
8b1861fff1
Regen expectations
2023-04-18 16:59:07 -07:00
Pranav Gaddamadugu
62f8506a28
Fix test
2023-04-18 16:53:27 -07:00
Pranav Gaddamadugu
0d64247b1e
Add tests that should pass
2023-04-18 16:51:42 -07:00
Pranav Gaddamadugu
ff5ce80be3
Update mapping tests to usenew operations
2023-04-18 16:51:42 -07:00
Pranav Gaddamadugu
00a7943746
Regen expectations
2023-04-18 16:51:42 -07:00
Pranav Gaddamadugu
d4eb6441d7
Enable warnings in compiler output
2023-04-18 16:37:45 -07:00
Pranav Gaddamadugu
9df7486053
Regen expectations
2023-04-18 16:21:40 -07:00
Pranav Gaddamadugu
a909a31dbf
Regen expectations
2023-04-18 16:21:40 -07:00
Pranav Gaddamadugu
871b35d6d1
Cleanup expectations
2023-04-12 12:38:44 -07:00
Pranav Gaddamadugu
fe1d9f9523
Disable DCE for test; regen expectations
2023-04-12 12:38:44 -07:00
Pranav Gaddamadugu
64548699a9
Fmt
2023-04-12 12:38:43 -07:00
Pranav Gaddamadugu
69f4a20aca
Regen expectations
2023-04-12 12:38:43 -07:00
Pranav Gaddamadugu
1adc4d232a
Update benches
2023-04-12 12:38:43 -07:00
Pranav Gaddamadugu
95a3deac94
Modify test
2023-04-12 12:38:43 -07:00
Pranav Gaddamadugu
444d32a52c
Add failing test
2023-04-12 12:38:43 -07:00
d0cd
c55ec9894e
Merge pull request #2347 from AleoHQ/fix/issue-2346
...
[Fix] Fixes variable renaming for inlined functions.
2023-04-12 12:27:54 -07:00
Pranav Gaddamadugu
e460ce1c8e
Support negative group literals
2023-04-11 10:44:26 -07:00
Pranav Gaddamadugu
ee0930b834
Regen expectations
2023-04-11 10:13:15 -07:00
Pranav Gaddamadugu
793e47a1a6
Add failing test
2023-04-11 10:09:33 -07:00
Pranav Gaddamadugu
b193d511ca
Update test and regen expectations
2023-04-09 19:58:08 -07:00
Pranav Gaddamadugu
aa8598c77f
Add failing test
2023-04-07 12:18:53 -07:00
Pranav Gaddamadugu
6f57c6e2ce
Cleanup and regen expectations
2023-04-05 09:14:17 -07:00
Pranav Gaddamadugu
d2b84e501f
Add test
2023-04-05 08:46:35 -07:00
d0cd
c74772cfac
Merge pull request #2328 from AleoHQ/fix/issue-2324
...
[Fix] Fixes unwrapping panic when unwrapping `lookup_struct` in `ProgramVisitor::visit_function`
2023-03-31 16:06:51 -07:00
d0cd
5cc6a06e2d
Merge pull request #2329 from AleoHQ/fix/issue-2325
...
[Fix] Panic: called Option::unwrap() on a Err value (Literal::Integer to Value)
2023-03-31 16:05:33 -07:00
Pranav Gaddamadugu
484eea5bd2
Regen expectations
2023-03-31 09:58:25 -07:00
Pranav Gaddamadugu
cc7aebf897
Add test
2023-03-31 09:57:10 -07:00
Pranav Gaddamadugu
b8df30075a
Regen expectations
2023-03-27 10:12:12 -07:00
Pranav Gaddamadugu
dcf2b6fa47
Add test
2023-03-27 10:08:21 -07:00
Pranav Gaddamadugu
8adc6c76b8
Fmts and clippies
2023-03-26 23:18:03 -07:00
d0cd
abd25b0896
Merge pull request #2295 from AleoHQ/feat/toggle-dce
...
Add an option to (dis/en)able DCE in the compiler.
2023-03-20 08:53:56 -07:00
d0cd
c5f7c01f02
Add an option to enable DCE in the compiler
2023-03-13 09:28:51 -07:00
d0cd
f7784ca779
Fix to get benchmarks working
2023-03-13 08:51:48 -07:00
d0cd
f7dc194d79
Add codegen to benchmarks
2023-03-13 08:51:48 -07:00
d0cd
2b5c24ada6
Regen expectations
2023-02-22 08:25:51 -08:00
d0cd
6c61296f78
Add targeted DCE test; cleanup
2023-02-21 17:13:54 -08:00
d0cd
0e6aa4729b
Clippy
2023-02-21 17:13:53 -08:00
d0cd
ce4d016742
Regen expectations
2023-02-21 17:13:53 -08:00
d0cd
dfc03db67e
Connect dead code elimination pass to compiler stages, CLI, and tests
2023-02-21 17:09:22 -08:00
d0cd
c8f6089be3
[Fix] Excludes inline
functions from produced bytecode. ( #2277 )
...
* Remove codegen for inline functions
* Regen expectations
2023-02-21 14:17:11 -08:00
Collin Chin
0a738d4994
chore(leo): bump version for new release
2023-02-17 22:30:17 -05:00
d0cd
0522c2a08f
Removes unused or deprecated keywords from the grammar. ( #2273 )
...
* Remove unused/deprecated symbols
* Remove tokens
* Update parser
* Update tests
* Regen expectations
2023-02-17 19:25:11 -08:00
d0cd
2158710d47
Update test
2023-02-10 23:07:22 -08:00
d0cd
a7f560e212
Regen expectations
2023-02-10 22:56:26 -08:00
d0cd
789bc52585
Add execution test
2023-02-10 22:56:14 -08:00
d0cd
4b28d81882
Regen other expectations
2023-02-10 21:51:54 -08:00
d0cd
f4a4a98d20
Add expectations for new tests
2023-02-10 21:50:57 -08:00
d0cd
ea077c83d5
Add compile tests for records and structs with visibilities
2023-02-10 21:44:30 -08:00
d0cd
cd21c1b01e
Add parser tests for records and structs with visibilities
2023-02-10 21:38:38 -08:00
d0cd
55bae5a71b
Fmt
2023-02-10 17:44:01 -08:00
d0cd
1dd5887518
Clippy and cleanup
2023-02-10 16:50:59 -08:00
d0cd
bf49a0cc48
Generate expectations
2023-02-10 16:26:25 -08:00
d0cd
1612bcccba
Add equivalence integration test for inlined functions
2023-02-10 16:25:32 -08:00
d0cd
0be98e30b7
Add compiler tests
2023-02-10 15:15:03 -08:00
d0cd
532ad7ea14
Add parser tests
2023-02-10 15:12:55 -08:00
d0cd
98c7825833
Regen expectations
2023-02-10 09:48:54 -08:00
d0cd
79bf13ff8e
Integrate function inlining into test framework
2023-02-10 09:30:43 -08:00
d0cd
6a3039277e
Regen exepectations
2023-02-08 16:41:32 -08:00
d0cd
12de60e55d
Update expectations
2023-02-08 12:16:02 -08:00
d0cd
afac7b55bc
Add more test cases; fmt
2023-02-08 11:32:53 -08:00
d0cd
641cbf251d
Cleanup test files
2023-02-08 11:32:53 -08:00
d0cd
ef0e455e2b
Add support for expected errors
2023-02-08 11:32:53 -08:00
d0cd
f0c7314e17
Regen expectations
2023-02-08 11:32:53 -08:00
d0cd
04ba80f59a
Reorganize tests files
2023-02-08 11:27:28 -08:00
d0cd
59915ed315
Initial implementation of Execute namespace; fmt
2023-02-08 11:21:20 -08:00
d0cd
789c2e6443
Remove input files from compiler tests
2023-02-08 11:18:40 -08:00
d0cd
5565150f30
Regen expectations
2023-02-05 12:46:21 -08:00
d0cd
74e358dde6
Add test for out of order functions
2023-02-05 12:46:21 -08:00
d0cd
498d4b698d
Add tests for recursion
2023-02-05 12:46:21 -08:00
d0cd
e633c62b71
Implement post-ordering for functions during code-generation
2023-02-05 12:46:21 -08:00
d0cd
b17702e019
Fix graph init; regen expectations
2023-02-05 12:46:20 -08:00
d0cd
0e7922f5a7
Add test
2023-02-05 12:46:20 -08:00
d0cd
899c12d85a
Implement post-order codegen for structs and records
2023-02-05 12:46:20 -08:00
d0cd
9f5be95f59
Add test cases
2023-02-05 12:46:20 -08:00
d0cd
b077a1745b
Regen expectations
2023-02-05 12:46:20 -08:00
d0cd
d91233f06e
Implement cycle detection for structs and records
2023-02-05 12:46:20 -08:00
ljedrz
b20308f049
chore: update the license headers ( #2252 )
...
Signed-off-by: ljedrz <ljedrz@gmail.com>
2023-02-02 14:27:06 -08:00
d0cd
9975a2c200
Regen expectations
2023-01-18 12:49:19 -08:00
dependabot[bot]
6beb9db7cb
Bump regex from 1.7.0 to 1.7.1
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.7.0 to 1.7.1.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.7.0...1.7.1 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-01-10 10:10:51 +00:00
dependabot[bot]
65fc26704b
Bump backtrace from 0.3.66 to 0.3.67 ( #2212 )
2023-01-03 19:16:42 -08:00
Collin Chin
5a7feb28f7
Improve testing infrastructure ( #2227 )
...
* wip
* re-enable get_process call for test programs
* remove local tests
* clean up
* remove rust version from cargo.toml
2023-01-03 17:51:13 -08:00
collin
d7b1b9ca56
chore(leo): bump version for new release
2022-12-12 19:31:56 -05:00
d0cd
48a1f0590b
Rename console.assert*
to assert*
. ( #2205 )
...
* Add assert statements to AST
* Add support in passes
* Add parser support
* Add tyc support
* Add support for assert statements in the remaining passes
* Fix examples, tests, and regen expectations
* Fmt
* Regen expectations
2022-12-06 21:56:48 -08:00
collin
1e01a3a686
chore(leo): bump version for new release
2022-11-30 13:40:52 -08:00
Collin Chin
3f2df5389c
use cargo workspace for dependencies ( #2195 )
2022-11-30 13:31:33 -08:00
collin
f6f286ac8a
pull testnet3, regen tests
2022-11-23 02:37:57 -05:00
collin
9e28591589
pull testnet3, regen tests
2022-11-23 01:56:37 -05:00
collin
801df56f9c
pull testnet3, regen tests
2022-11-22 20:55:12 -05:00
Collin Chin
40e56f8613
Merge pull request #2100 from AleoHQ/feat/tuple
...
Supports tuples.
2022-11-22 20:49:25 -05:00
d0cd
1ae833ba7c
Regen expectations
2022-11-16 10:24:29 -08:00
d0cd
de6ac4eb9b
Add test
2022-11-16 10:24:29 -08:00
d0cd
ae329c521b
Deprecate (async) finalize statements
2022-11-15 13:18:39 -08:00
collin
355d5a841f
fix test-framework cargo.toml
2022-11-14 19:05:41 -08:00
collin
44bca58821
chore(leo): bump version for new release
2022-11-14 18:56:09 -08:00
d0cd
f60dcca1a3
Regen expectations
2022-11-12 16:35:54 -08:00
d0cd
8048d2754b
Update tests
2022-11-12 11:28:58 -08:00
d0cd
232cbfb6bb
More tests
2022-11-12 10:05:00 -08:00
d0cd
a69c1b4dae
Regen expectations
2022-11-12 09:53:29 -08:00
d0cd
1b95340edc
Add tests
2022-11-12 09:52:52 -08:00
d0cd
036f8692eb
Add test case for singleton tuple
2022-11-11 21:07:58 -08:00
d0cd
8384c39e84
Regen tests
2022-11-11 21:03:23 -08:00
d0cd
cf9948e99c
Add tests for expr statements
2022-11-11 21:02:59 -08:00
d0cd
af8b63d12a
Add tuple test
2022-11-08 17:36:24 -08:00
d0cd
2f9bfd7ab9
Cleanup debug prints; fix bug, the flatten test builds
2022-11-08 17:10:39 -08:00
d0cd
62644d8851
Regen expectations
2022-11-08 16:02:16 -08:00
d0cd
ef4ae89b92
Add more test cases
2022-11-08 15:52:31 -08:00
d0cd
eb1534bb28
Regen expectations
2022-11-08 15:49:47 -08:00
d0cd
387db2e321
Add test case
2022-11-08 15:49:47 -08:00
d0cd
91db5c3b8a
Regen expectations
2022-11-08 15:49:47 -08:00
d0cd
d705fd1cce
Regen test expectations
2022-11-08 15:49:47 -08:00
d0cd
b911720ff0
Add test for tuple destructuring
2022-11-08 15:49:47 -08:00
d0cd
8a3ffbc141
Fix tests; regen expectations
2022-11-08 15:49:47 -08:00
d0cd
4d7b4381df
Regen expectations
2022-11-08 15:49:47 -08:00
d0cd
678f8b02a1
Fix unit expression
2022-11-08 15:49:47 -08:00
d0cd
3ab83f45f3
Fix bug, regen tests
2022-11-08 15:49:47 -08:00
d0cd
b60cd7e4b0
Remove redundant check
2022-11-08 15:49:47 -08:00
d0cd
367dc8b536
Regen expectations
2022-11-08 15:49:47 -08:00
d0cd
295cd7c96f
Refactor tests
2022-11-08 15:49:47 -08:00
d0cd
c651da0581
wip tuples
2022-11-08 15:49:47 -08:00
Pranav Gaddamadugu
9994a0451f
wip: basic tyc for empty and singleton tuples
2022-11-08 15:49:46 -08:00
Pranav Gaddamadugu
8d204a898b
Add tests for tuples
2022-11-08 15:49:46 -08:00
collin
e6c3700945
merge testnet3
2022-11-04 12:46:32 -07:00
Collin Chin
d329181999
Merge pull request #2151 from AleoHQ/fix/span-for-function-call-tyc
...
Better error messages for mistyped function calls.
2022-11-04 12:34:08 -07:00
Collin Chin
1c7fefac53
Merge pull request #2150 from AleoHQ/fix/tyc-for-member-access
...
Fix type checking for member access.
2022-11-04 12:33:37 -07:00
d0cd
474355dde6
Regen expectations
2022-10-31 20:12:02 -07:00
d0cd
b0fdb5cd69
Regen expectations
2022-10-31 18:01:04 -07:00
d0cd
3c2da076ff
Merge pull request #2144 from AleoHQ/fix/conditional-assert
...
Fixes flattening for `console` statements.
2022-10-31 17:11:43 -07:00
d0cd
c4279e2a83
Merge pull request #2146 from AleoHQ/fix/tyc-for-loop-bounds
...
Fix/tyc for loop bounds
2022-10-31 17:11:19 -07:00
d0cd
691ceae4a1
Regen expectations
2022-10-31 13:53:56 -07:00
d0cd
ba84d0892c
Add tests
2022-10-31 13:53:02 -07:00
d0cd
e2170e0d55
Regen expectations
2022-10-31 13:14:30 -07:00
d0cd
f1ca580e5a
Add test case
2022-10-31 13:13:49 -07:00
d0cd
9907d89886
Implement fix
2022-10-27 20:21:18 -07:00
d0cd
adb382cb33
Add test
2022-10-27 20:17:00 -07:00
d0cd
a904a1441a
Add test; regen expectations
2022-10-25 16:22:47 -07:00
d0cd
df01360010
Clippy
2022-10-24 22:41:10 -07:00
d0cd
a11be415fa
Add tests; regen expectations
2022-10-24 22:18:22 -07:00
Pranav Gaddamadugu
65f18fc7ea
Regen expectations
2022-10-12 00:15:06 -05:00
Pranav Gaddamadugu
047575f9bf
Fix failing case
2022-10-12 00:15:06 -05:00
Pranav Gaddamadugu
2354cc8b41
Add tests
2022-10-12 00:15:06 -05:00
Pranav Gaddamadugu
70051888e8
Regen expectations
2022-10-12 00:15:06 -05:00
Pranav Gaddamadugu
d7260aef62
Add test
2022-10-12 00:15:06 -05:00
Collin Chin
8b9ad3811d
Merge pull request #2114 from AleoHQ/update/aleo-snarkvm
...
Update revs.
2022-10-06 14:21:02 -07:00
Pranav Gaddamadugu
c42228713d
Regen expectations
2022-10-06 11:32:11 -07:00
Pranav Gaddamadugu
e1a148a93e
Regen expectations
2022-10-05 23:52:37 -07:00
Pranav Gaddamadugu
047ed7a08b
Update parser tests
2022-10-05 16:54:50 -07:00
Pranav Gaddamadugu
2329617fec
Update compiler tests
2022-10-05 16:53:49 -07:00
Pranav Gaddamadugu
8283c922f6
Some bug fixes; update some examples
2022-10-05 15:27:54 -07:00
Pranav Gaddamadugu
e15e8f05d6
Additional validation for program scope and imported files
2022-10-05 14:59:06 -07:00
Pranav Gaddamadugu
8872c3d53f
Remove use of default network domain
2022-10-04 19:11:36 -07:00
Pranav Gaddamadugu
6ce64f8a78
Add tests checking for invalid function calls
2022-10-03 16:33:15 -07:00
Pranav Gaddamadugu
dbb72ddbf8
Add tests showing program annotation fails
2022-10-03 15:02:28 -07:00
Pranav Gaddamadugu
ce3fd38cd4
Regen expectations
2022-10-03 14:57:14 -07:00
Pranav Gaddamadugu
e4bd8f8338
Update tests to use transition
2022-10-03 14:56:14 -07:00
Pranav Gaddamadugu
b92fefddc4
Add test for deprecated circuit; rename tests
2022-09-30 13:20:23 -07:00
Pranav Gaddamadugu
898d831249
Regen expectations
2022-09-30 12:58:39 -07:00
Pranav Gaddamadugu
8d12cd6651
Rename tests
2022-09-30 10:48:47 -07:00
Pranav Gaddamadugu
7a859e7b63
Regen test expectations
2022-09-21 13:18:50 -07:00
collin
bdaf486604
fix bug and regen tests
2022-09-20 22:05:49 -07:00
Collin Chin
bbd41f81b6
Merge pull request #2073 from AleoHQ/fix/core-function-composite-data-types
...
Enable core function calls on composite data types.
2022-09-20 00:14:22 +02:00
Pranav Gaddamadugu
798a682a6b
Regen expectations
2022-09-18 02:33:07 +02:00
Pranav Gaddamadugu
a96ae8e686
Add composite to compiler tests
2022-09-18 02:32:57 +02:00
Pranav Gaddamadugu
cb319b1678
Add test
2022-09-17 20:45:33 +02:00
Pranav Gaddamadugu
7b450b3f23
Add test for string literals
2022-09-17 19:21:23 +02:00
Pranav Gaddamadugu
7a29c76805
Regen expectations
2022-09-17 19:02:25 +02:00
collin
c1d21e699c
merge testnet3
2022-09-13 15:39:20 +02:00
d0cd
048be34524
Merge pull request #2059 from AleoHQ/dependabot/cargo/testnet3/criterion-0.4.0
...
Bump criterion from 0.3.6 to 0.4.0
2022-09-13 11:47:55 +02:00
Pranav Gaddamadugu
c2bed2bb54
Add name to finalize block
2022-09-13 11:06:24 +02:00
dependabot[bot]
1b086ac519
Bump criterion from 0.3.6 to 0.4.0
...
Bumps [criterion](https://github.com/bheisler/criterion.rs ) from 0.3.6 to 0.4.0.
- [Release notes](https://github.com/bheisler/criterion.rs/releases )
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bheisler/criterion.rs/compare/0.3.6...0.4.0 )
---
updated-dependencies:
- dependency-name: criterion
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-09-12 10:19:58 +00:00
Pranav Gaddamadugu
6d35560528
More tests
2022-09-07 23:09:11 -07:00
Pranav Gaddamadugu
48ce885860
Add more tyc checks
2022-09-07 10:39:00 -07:00
Pranav Gaddamadugu
dea8b987c7
Parser tests for finalize
2022-09-06 12:58:24 -07:00
Pranav Gaddamadugu
9032df19cb
Parser tests for mapping
2022-09-06 12:36:27 -07:00
Pranav Gaddamadugu
267fc99978
Add new tests; regen expectations
2022-09-06 12:14:37 -07:00
Pranav Gaddamadugu
3d5ddb9e1a
Clippy
2022-09-06 12:14:37 -07:00
Pranav Gaddamadugu
524066c91d
Regen expectations
2022-09-06 12:14:37 -07:00
Pranav Gaddamadugu
a4c0eb186e
Add test case
2022-09-06 12:14:36 -07:00
Pranav Gaddamadugu
0fa8082656
Update token example
2022-09-06 12:14:36 -07:00
Pranav Gaddamadugu
0e1768ac59
Hook flattening pass into compiler; regen expectations
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
18274bf4f9
More tyc
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
5d6c402c04
Fix buggy case
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
4266ba28c1
more wip
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
9f56b34677
wip
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
881ee569d1
Add test with buggy variant
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
75307d1d4e
More tests
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
8a8e198f59
Tyc for mappings
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
1b6dea395f
Add parser tests; regen expectations
2022-09-06 12:13:32 -07:00
Pranav Gaddamadugu
6e238eee42
Add check for type equality
2022-08-24 09:09:41 -07:00
Pranav Gaddamadugu
18482d7b18
Regen test expectations
2022-08-23 19:40:38 -07:00
Pranav Gaddamadugu
7933331430
Add test showing missed tyc
2022-08-23 19:37:25 -07:00
Pranav Gaddamadugu
b43d8b318f
Add and regen tests
2022-08-18 11:16:03 -07:00
Pranav Gaddamadugu
094c54a20d
Fix SSA for console statements
2022-08-18 09:17:09 -07:00
Pranav Gaddamadugu
5b732a33be
Regen tests
2022-08-17 17:03:30 -07:00
Pranav Gaddamadugu
7278a5bf39
Regen expectations
2022-08-17 16:03:57 -07:00
Pranav Gaddamadugu
4c658f7b01
Regen test expectations
2022-08-17 15:27:33 -07:00
Pranav Gaddamadugu
615cc61e9e
Add console.assert
2022-08-17 15:27:11 -07:00
collin
0c3342f151
Merge branch 'testnet3' of github.com:AleoHQ/leo into feat/ped-commit
2022-08-15 22:11:21 -07:00
collin
fbf0a0aea9
merge testnet3
2022-08-15 21:45:25 -07:00
collin
6b7c38cc4d
merge testnet3
2022-08-15 16:10:51 -07:00
Collin Chin
4d18031228
Merge pull request #2014 from AleoHQ/fix/error-on-unrecognized-type
...
Check for Unrecognized Type
2022-08-15 15:16:23 -07:00
collin
99c4676593
update rev and update tests
2022-08-15 12:05:52 -07:00
collin
a5b6557460
add ped64 ped128 tests
2022-08-15 11:56:17 -07:00
Pranav Gaddamadugu
64cecda841
Add more test cases checking for member records
2022-08-11 08:55:07 -07:00
Pranav Gaddamadugu
67f9890653
Address feedback
2022-08-11 07:50:10 -07:00
Pranav Gaddamadugu
da7ff48b11
Add check for nested records; fix codegen for circuit nested in record
2022-08-11 00:53:01 -07:00
Pranav Gaddamadugu
a69954b64a
Add tests for undefined types
2022-08-11 00:36:22 -07:00
Pranav Gaddamadugu
566d239153
Fix some tests
2022-08-10 11:40:24 -07:00
Pranav Gaddamadugu
2a34d31d33
Regen test expectations
2022-08-09 19:53:17 -07:00
Pranav Gaddamadugu
7ff7170c45
Fix unary negation parser; add test
2022-08-09 19:53:17 -07:00