We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2c2dea commit 1fc862dCopy full SHA for 1fc862d
quint/src/parsing/ToIrListener.ts
@@ -222,9 +222,7 @@ export class ToIrListener implements QuintListener {
222
exitAnnotatedOperDef(ctx: p.AnnotatedOperDefContext) {
223
const name = ctx.normalCallName().text
224
225
- const params = ctx._annotOperParam
226
- .map(_ => popOrFail(this.paramStack, 'annotated AnnotatedOperDef'))
227
- .reverse()
+ const params = ctx._annotOperParam.map(_ => popOrFail(this.paramStack, 'annotated AnnotatedOperDef')).reverse()
228
const res = this.popType().unwrap(() => 'violated grammar of annotated params return type')
229
const args = params.map(p => {
230
assert(isAnnotatedDef(p), 'violated grammar of annotated param type')
0 commit comments