mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
It works both for reading and writing: > var t = (1, 2); > t.0; // 1 > t.0 = 5; > t; // (5, 2) It also works for typed/untyped tuples, producing INDEX and SETINDEX. Global tensors and tuples works. Nesting `t.0.1.2` works. `mutate` works. Even mixing tuples inside tensors inside a global for writing works.
121 lines
2.6 KiB
Text
121 lines
2.6 KiB
Text
fun justTrue(): bool { return true; }
|
|
|
|
fun unary_minus_1(a: int, b: int, c: int): int{return -(a+b) *c;}
|
|
fun unary_minus_2(a: int, b: int, c: int): int{return(-(a+b))*c;}
|
|
fun unary_minus_3(a: int, b: int, c: int): int{return-((a+b) *c);}
|
|
|
|
|
|
@method_id(101)
|
|
fun test1(x: int, y: int, z: int): bool {
|
|
return (x > 0) & (y > 0) & (z > 0);
|
|
}
|
|
|
|
@method_id(102)
|
|
fun test2(x: int, y: int, z: int): bool {
|
|
return x > (0 & (y > 0) as int & (z > 0) as int);
|
|
}
|
|
|
|
@method_id(103)
|
|
fun test3(x: int, y: int, z: int): bool {
|
|
if ((x < 0) | (y < 0)) {
|
|
return z < 0;
|
|
}
|
|
return (x > 0) & (y > 0);
|
|
}
|
|
|
|
@method_id(104)
|
|
fun test4(x: int, y: int, mode: int): bool {
|
|
if (mode == 1) {
|
|
return (x == 10) | (y == 20);
|
|
} if (mode == 2) {
|
|
return (x == 10) | (y == 20);
|
|
} else {
|
|
return x == (10 | (y == 20) as int);
|
|
}
|
|
}
|
|
|
|
@method_id(105)
|
|
fun test5(status: int): bool {
|
|
return justTrue() & (status == 1) & ((justTrue() as int & status) == 1);
|
|
}
|
|
|
|
@method_id(106)
|
|
fun test6(a: int, b: int, c: int): bool {
|
|
return (unary_minus_1(a,b,c) == unary_minus_2(a,b,c)) & (unary_minus_1(a,b,c) == unary_minus_3(a,b,c));
|
|
}
|
|
|
|
@method_id(107)
|
|
fun test7(b: int): int {
|
|
var a = b == 3 ? 3 : b == 4 ? 4 : (b == 5) & true ? 5 : 100;
|
|
return a;
|
|
}
|
|
|
|
@method_id(108)
|
|
fun test8(b: int): int {
|
|
var a = b == 3 ? 3 : b == 4 ? 4 : b = 5 ? 5 : 100;
|
|
return a;
|
|
}
|
|
|
|
fun `_<p`(a: int, b: int): bool { return true; }
|
|
|
|
fun main() {
|
|
// ok to parse
|
|
var c = [
|
|
(3 & 3) > 0, 3 & (3 > 0) as int, 3 & (`_<_`(3, 0)),
|
|
3 & `_<p`(3, 0) as int, (1 & 2) ^ (3 | 4),
|
|
true & ((1) == 1)
|
|
];
|
|
}
|
|
|
|
/**
|
|
@testcase | 101 | 1 2 3 | -1
|
|
@testcase | 101 | 1 0 3 | 0
|
|
@testcase | 101 | 1 2 -1 | 0
|
|
@testcase | 102 | 1 0 0 | -1
|
|
@testcase | 103 | -1 -2 -3 | -1
|
|
@testcase | 103 | -1 -2 0 | 0
|
|
@testcase | 103 | 1 2 0 | -1
|
|
@testcase | 103 | 1 0 2 | 0
|
|
@testcase | 104 | 10 20 1 | -1
|
|
@testcase | 104 | 10 20 2 | -1
|
|
@testcase | 104 | 10 20 3 | 0
|
|
@testcase | 105 | 1 | -1
|
|
@testcase | 105 | 0 | 0
|
|
@testcase | 106 | 1 2 3 | -1
|
|
@testcase | 107 | 3 | 3
|
|
@testcase | 107 | 4 | 4
|
|
@testcase | 107 | 5 | 5
|
|
@testcase | 107 | 6 | 100
|
|
@testcase | 108 | 3 | 3
|
|
@testcase | 108 | 4 | 4
|
|
@testcase | 108 | 6 | 5
|
|
|
|
@fif_codegen
|
|
"""
|
|
unary_minus_1 PROC:<{
|
|
// a b c
|
|
-ROT // c a b
|
|
ADD // c '3
|
|
NEGATE // c '4
|
|
SWAP // '4 c
|
|
MUL // '5
|
|
}>
|
|
unary_minus_2 PROC:<{
|
|
// a b c
|
|
-ROT // c a b
|
|
ADD // c '3
|
|
NEGATE // c '4
|
|
SWAP // '4 c
|
|
MUL // '5
|
|
}>
|
|
unary_minus_3 PROC:<{
|
|
// a b c
|
|
-ROT // c a b
|
|
ADD // c '3
|
|
SWAP // '3 c
|
|
MUL // '4
|
|
NEGATE // '5
|
|
}>
|
|
"""
|
|
|
|
*/
|