Brian R. Murphy

Results 66 comments of Brian R. Murphy

For example, see move-model/src/lib.rs near line 188: ``` target_sources_names.contains(fname.as_str()), ```

Note that the entire phrase `cannot use the & signer paremter` is problematic in multiple ways. Better would be `& signer is not supported as a parameter type to a...

When I first added inlining there were problems in various later stages if I didn't remove the inlined functions. That may have been the codegen stuff that Wolfgang says is...

(stackless) bytecode codegen doesn't like Lambda and Invoke, so we need to fix that (Invoke, at least; Lambda should only appear at call sites to inline functions, which will disappear...

We need ``` MVC_EXP=keep-inline-fun=off,lambda-lifting=on cargo test -p move-compiler-v2 ``` but it currently fails on some of our tests due to lambda lifting not handling mutated free variables. Added an issue...