From c6ff109198546a8adb340a7be84a7fc03762081b Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Mon, 3 Mar 2025 18:04:25 +0100 Subject: chore: fix lint --- parser/parse.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/parser/parse.go b/parser/parse.go index 2aa5ce7..266ce8b 100644 --- a/parser/parse.go +++ b/parser/parse.go @@ -126,7 +126,6 @@ func (p *Parser) parseStmt(in Tokens) (out Tokens, err error) { return p.parseImports(in) case lang.Package: return p.parsePackage(in) - return out, err case lang.Return: return p.parseReturn(in) case lang.Switch: @@ -421,7 +420,7 @@ func (p *Parser) parseSwitch(in Tokens) (out Tokens, err error) { return out, err } -func (p *Parser) parseCaseClause(in Tokens, index, max int, condSwitch bool) (out Tokens, err error) { +func (p *Parser) parseCaseClause(in Tokens, index, maximum int, condSwitch bool) (out Tokens, err error) { in = append(in, scanner.Token{Tok: lang.Semicolon}) // Force a ';' at the end of body clause. var conds, body Tokens tl := in.Split(lang.Colon) @@ -440,7 +439,7 @@ func (p *Parser) parseCaseClause(in Tokens, index, max int, condSwitch bool) (ou txt := fmt.Sprintf("%sc%d.%d", p.scope, index, i) next := "" if i == len(lcond)-1 { // End of cond: next, go to next clause or exit - if index < max { + if index < maximum { next = fmt.Sprintf("%sc%d.%d", p.scope, index+1, 0) } else { next = p.scope + "e" @@ -457,7 +456,7 @@ func (p *Parser) parseCaseClause(in Tokens, index, max int, condSwitch bool) (ou out = append(out, scanner.Token{Tok: lang.JumpFalse, Str: next}) } out = append(out, body...) - if i != len(lcond)-1 || index != max { + if i != len(lcond)-1 || index != maximum { out = append(out, scanner.Token{Tok: lang.Goto, Str: p.scope + "e"}) } } -- cgit v1.2.3