Support for Yul functions in assembly blocks
Open
- Dominant language
- Haskell
- Stars
- 113
- Forks
- 9
- Avg merge
- 4d 9h
- Merged PRs (30d)
- 1
Description
For example
```
function allocate_memory() -> word {
let res : word;
assembly {
function allocate_unbounded() -> memPtr {
memPtr := mload(64)
}
res := allocate_unbounded()
}
return res;
}
```
Contributor guide
No contributing guide indexed for this repository
Research direction
No source file, test, or entry point is named. Start by locating the compiler's handling of assembly blocks and the existing parsing or type-checking tests, then use the provided Yul function example as the acceptance case: compilation should support local function declarations and calls inside an assembly block.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- haskell, solidity
- Domain
- compilers
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100