1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00
ton/crypto/func
Aleksandr Kirsanov 7afa9292c3
[FunC] Change priority of & | ^ operators to a more intuitive one
Before, such code `if (slices_equal() & status == 1)` was parsed
as `if( (slices_equal()&status) == 1 )`.
Note, that this change leads to hash changes of some verified contracts,
but a new priority is more expected from the user experience.
2024-06-14 15:22:59 +03:00
..
auto-tests [FunC] Change priority of & | ^ operators to a more intuitive one 2024-06-14 15:22:59 +03:00
test [FunC] Make all functions impure by default, add "pure" specifier 2024-06-14 15:22:57 +03:00
abscode.cpp [FunC] Forbid impure operations inside pure functions 2024-06-14 15:22:58 +03:00
analyzer.cpp [FunC] Forbid impure operations inside pure functions 2024-06-14 15:22:58 +03:00
asmops.cpp [FunC] Auto-inline functions-wrappers T f(...args) { return anotherF(...args); } 2024-06-14 15:22:57 +03:00
builtins.cpp [FunC] Add builtin keyword to be used in stdlib later on 2024-06-14 15:22:58 +03:00
codegen.cpp [FunC] Auto-inline functions-wrappers T f(...args) { return anotherF(...args); } 2024-06-14 15:22:57 +03:00
func-main.cpp [FunC] Use td::OptionParser in func-main.cpp 2024-06-14 15:22:58 +03:00
func.cpp [FunC] Deprecate pragma compute-asm-ltr 2024-06-14 15:22:58 +03:00
func.h [FunC] Deprecate pragma compute-asm-ltr 2024-06-14 15:22:58 +03:00
gen-abscode.cpp [FunC] Refactor allow-post-modification, stop producing disabled Op::_Let 2024-06-14 15:22:58 +03:00
keywords.cpp [FunC] Add builtin keyword to be used in stdlib later on 2024-06-14 15:22:58 +03:00
optimize.cpp FunC: enable asserts and fix try/catch stack corruption (#699) 2023-05-15 15:31:42 +03:00
parse-func.cpp [FunC] Change priority of & | ^ operators to a more intuitive one 2024-06-14 15:22:59 +03:00
stack-transform.cpp FunC: enable asserts and fix try/catch stack corruption (#699) 2023-05-15 15:31:42 +03:00
unify-types.cpp [FunC] Auto-inline functions-wrappers T f(...args) { return anotherF(...args); } 2024-06-14 15:22:57 +03:00