diff options
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/disassembly.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/src/disassembly.rs b/rust/src/disassembly.rs index 1c8bcd0d..1d0dfb8b 100644 --- a/rust/src/disassembly.rs +++ b/rust/src/disassembly.rs @@ -94,6 +94,7 @@ pub enum InstructionTextTokenContents { NameSpace, GotoLabel(u64), Indentation, + Brace, } impl InstructionTextToken { @@ -141,6 +142,7 @@ impl InstructionTextToken { InstructionTextTokenContents::NameSpace => InstructionTextTokenType::NameSpaceToken, InstructionTextTokenContents::GotoLabel(_) => InstructionTextTokenType::GotoLabelToken, InstructionTextTokenContents::Indentation => InstructionTextTokenType::IndentationToken, + InstructionTextTokenContents::Brace => InstructionTextTokenType::BraceToken, }; let width = text.len() as u64; |
