mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
clippy + fmt
This commit is contained in:
parent
fb7fa99b2c
commit
05a61e2210
11 changed files with 55 additions and 65 deletions
|
@ -20,9 +20,11 @@ pub enum Action {
|
|||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
enum BlockType {
|
||||
Loop(usize), // Loop block, with start address to loop back to
|
||||
Normal, // Block created by `block` instruction
|
||||
Locals(usize), // Special "block" for locals. Holds function index for debug
|
||||
Loop(usize), // Loop block, with start address to loop back to
|
||||
Normal, // Block created by `block` instruction
|
||||
#[allow(dead_code)]
|
||||
Locals(usize), // Special "block" for locals. Holds function index for debug
|
||||
#[allow(dead_code)]
|
||||
FunctionBody(usize), // Special block surrounding the function body. Holds function index for debug
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue