2022-09-20
review、讨论: https://github.com/move-language/move/pull/490
测试 move tuple 语法的细节:
代码块 |
---|
let (_x1, _x2,) = (1, 2,); // Test a trailing comma in the let binding
let (_x1, _x2) = (1, 2); // Test a trailing comma in the let binding
let (_x) = (1);
let _x = (1);
let _x = (1,);
// 用最新的 move cli,analyzer,这里所有表达式都是合法的,所有变量都被推导为u64类型 |
2022-09-19
重新检查和关闭:https://github.com/starcoinorg/starcoin/issues/3508 ,https://github.com/starcoinorg/starcoin/issues/3654
...
review: https://github.com/move-language/move/pull/485
2022-09-16
pr: https://github.com/young-rocks/rocks-smt/pull/1
2022-09-14
调整https://github.com/starcoinorg/starcoin/pull/3725
时长?
2022-09-06
实验 llvm-cov 和 nextest 结合使用的方式,发现bug:https://github.com/taiki-e/cargo-llvm-cov/issues/213
2022-09-05