*: gofmt -s

Appy gofmt for all the source tree.
This commit is contained in:
Roman Khimov 2019-09-09 11:23:27 +03:00
parent 90469399d7
commit fabd11699a
17 changed files with 29 additions and 32 deletions

View file

@ -361,7 +361,7 @@ func (c *codegen) Visit(node ast.Node) ast.Visitor {
case token.LOR:
ast.Walk(c, n.X)
emitJmp(c.prog, vm.JMPIF, int16(len(c.l) - 3))
emitJmp(c.prog, vm.JMPIF, int16(len(c.l)-3))
ast.Walk(c, n.Y)
return nil