Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Jan 23, 2024
1 parent 7fcc6cf commit db1ca36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { mock } from 'jest-mock-extended';

import { AvmMachineState } from '../avm_machine_state.js';
import { AvmStateManager } from '../avm_state_manager.js';
import { initExecutionEnvironment } from '../fixtures/index.js';
import {
And,
/*Not,*/
Expand All @@ -12,7 +13,6 @@ import {
Shr,
Xor,
} from './bitwise.js';
import { initExecutionEnvironment } from '../fixtures/index.js';

describe('Bitwise instructions', () => {
let machineState: AvmMachineState;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Add, Div, Mul, Sub } from './arithmetic.js';
import { And, Not, Or, Shl, Shr, Xor } from './bitwise.js';
//import { Eq, Lt, Lte } from './comparators.js';
import {SLoad, SStore} from './storage.js';
import { InternalCall, InternalReturn, Jump, JumpI, Return } from './control_flow.js';
import { Instruction } from './instruction.js';
import { CMov, CalldataCopy, Cast, Mov, Set } from './memory.js';
import { Opcode } from './opcodes.js';
//import { Eq, Lt, Lte } from './comparators.js';
import { SLoad, SStore } from './storage.js';

/** - */
type InstructionConstructor = new (...args: any[]) => Instruction;
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/acir-simulator/src/avm/opcodes/memory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { mock } from 'jest-mock-extended';

import { AvmMachineState } from '../avm_machine_state.js';
import { AvmStateManager } from '../avm_state_manager.js';
import { CMov, CalldataCopy, Cast, Mov, Set } from './memory.js';
import { initExecutionEnvironment } from '../fixtures/index.js';
import { CMov, CalldataCopy, Cast, Mov, Set } from './memory.js';

describe('Memory instructions', () => {
let machineState: AvmMachineState;
Expand Down

0 comments on commit db1ca36

Please sign in to comment.