Skip to content

Commit 1fc862d

Browse files
author
Shon Feder
committed
Format fix
1 parent d2c2dea commit 1fc862d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

quint/src/parsing/ToIrListener.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,7 @@ export class ToIrListener implements QuintListener {
222222
exitAnnotatedOperDef(ctx: p.AnnotatedOperDefContext) {
223223
const name = ctx.normalCallName().text
224224

225-
const params = ctx._annotOperParam
226-
.map(_ => popOrFail(this.paramStack, 'annotated AnnotatedOperDef'))
227-
.reverse()
225+
const params = ctx._annotOperParam.map(_ => popOrFail(this.paramStack, 'annotated AnnotatedOperDef')).reverse()
228226
const res = this.popType().unwrap(() => 'violated grammar of annotated params return type')
229227
const args = params.map(p => {
230228
assert(isAnnotatedDef(p), 'violated grammar of annotated param type')

0 commit comments

Comments
 (0)