Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Shon Feder committed Oct 6, 2023
1 parent f59eca9 commit 3f0e956
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion quint/src/graphics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
import { QuintDeclaration, QuintEx, isAnnotatedDef } from './ir/quintIr'
import { ExecutionFrame } from './runtime/trace'
import { zerog } from './idGenerator'
import { ConcreteFixedRow, ConcreteRow, isUnitType, QuintType, Row } from './ir/quintTypes'
import { ConcreteRow, QuintType, Row, isUnitType } from './ir/quintTypes'
import { TypeScheme } from './types/base'
import { canonicalTypeScheme } from './types/printing'
import { declarationToString, qualifierToString, rowToString } from './ir/IRprinting'
Expand Down
2 changes: 1 addition & 1 deletion quint/src/parsing/ToIrListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import {
} from '../ir/quintIr'
import {
ConcreteFixedRow,
QuintConstType,
QuintSumType,
QuintType,
Row,
RowField,
isUnitType,
unitType,
QuintConstType,
} from '../ir/quintTypes'
import { strict as assert } from 'assert'
import { ErrorMessage, Loc } from './quintParserFrontend'
Expand Down
2 changes: 1 addition & 1 deletion quint/src/types/builtinSignatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/

import { parseTypeOrThrow } from './parser'
import { sumType, typeNames } from '../ir/quintTypes'
import { typeNames } from '../ir/quintTypes'
import { Signature, TypeScheme } from './base'
import { times } from 'lodash'
import { QuintBuiltinOpcode } from '../ir/quintIr'
Expand Down
2 changes: 1 addition & 1 deletion quint/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import JSONbig from 'json-bigint'
import lodash from 'lodash'
import { Maybe, just, none } from '@sweet-monads/maybe'
import { Maybe, none } from '@sweet-monads/maybe'

/** Add this at the end of a switch statement or if/then sequence to enforce exhaustiveness checking
*
Expand Down
1 change: 0 additions & 1 deletion quint/test/types/inferrer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { TypeInferenceResult, TypeInferrer } from '../../src/types/inferrer'
import { typeSchemeToString } from '../../src/types/printing'
import { errorTreeToString } from '../../src/errorTree'
import { parseMockedModule } from '../util'
import { moduleToString } from '../../src'

describe('inferTypes', () => {
function inferTypesForDefs(defs: string[]): TypeInferenceResult {
Expand Down

0 comments on commit 3f0e956

Please sign in to comment.