diff options
author | Vincent Ambo <mail@tazj.in> | 2021-02-27T09·27+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-02-27T13·05+0000 |
commit | 75750ba6835ae8ac3a97c24ca7ff5ebc1500f36d (patch) | |
tree | 35138b7ae42bcb6668b982224f6d5f3febbeafa6 /users/tazjin/rlox/src/bytecode | |
parent | ebc987f4aaf653c227d21bec5998c62e87da7f7b (diff) |
style(tazjin/rlox): Set max_width=80 r/2235
Change-Id: Ib64831c0b97c94fdfbdbae64f4dfccc86879ef73 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2554 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin/rlox/src/bytecode')
-rw-r--r-- | users/tazjin/rlox/src/bytecode/chunk.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/users/tazjin/rlox/src/bytecode/chunk.rs b/users/tazjin/rlox/src/bytecode/chunk.rs index 5d71df2b05a4..649aafcfd82c 100644 --- a/users/tazjin/rlox/src/bytecode/chunk.rs +++ b/users/tazjin/rlox/src/bytecode/chunk.rs @@ -78,7 +78,9 @@ pub fn disassemble_instruction(chunk: &Chunk, offset: usize) { } match chunk.code.index(offset) { - OpCode::OpConstant(idx) => println!("OpConstant({}) '{:?}'", *idx, chunk.constant(*idx)), + OpCode::OpConstant(idx) => { + println!("OpConstant({}) '{:?}'", *idx, chunk.constant(*idx)) + } op => println!("{:?}", op), } } |