Supun Setunga
Supun Setunga
### Issue To Be Solved Currently the parser terminates upon certain syntax errors with a panic. Once this happens, syntax analyzing stops for the remainder of the program, and the...
## Description When a reference is taken to a resource, that reference remains valid even if the resource was transferred. In other words, references stay alive forever. This could be...
Updating flow-go master branch with the Cadence version [v0.25.0](https://github.com/onflow/cadence/releases/tag/v0.25.0)
Working towards the FLIP: https://github.com/onflow/flow/pull/1043 ## Description Statically check for invalidated references, whenever possible. All invalidations may not be caught by the static checker. Hence the runtime validation is also...
## Issue To Be Solved https://github.com/onflow/cadence/issues/331 proposed a testing framework for cadence. An initial version of this proposal is now implemented, and supports basic functionalities to write tests. However, there...
______ - [x] Targeted PR against `master` branch - [x] Linked to Github issue with discussion and accepted design OR link to spec that describes this work - [x] Code...
## Description This is the draft implementation of the FLIP: https://github.com/onflow/flow/pull/1043 Adds a run-time check to invalidate references, if the pointed resource is being moved. **Note**: This PR doesn't invalidate...
Stack depth limit was added with PR: https://github.com/onflow/cadence/pull/1138 Make this limit configurable.
## Description Conflicts: https://gist.github.com/SupunS/9f3c16a58bfdf036ce81bb9b225a5d03 Depends on https://github.com/onflow/cadence/pull/3178 ______ - [ ] Targeted PR against `master` branch - [x] Linked to Github issue with discussion and accepted design OR link to...
### Issue to be solved Suggestion from @bluesign (please feel free to update, add more info) If `Vault` conforms to `Receiver` i.e: ```cadence resource interface Vault: Receiver {} ``` And...