compiler: drop TODO comment, #294 was fixed a while ago
This commit is contained in:
parent
dd357c9119
commit
1c7d203993
1 changed files with 0 additions and 3 deletions
|
@ -720,9 +720,6 @@ func (c *codegen) convertToken(tok token.Token) {
|
|||
case token.GEQ:
|
||||
emitOpcode(c.prog, vm.GTE)
|
||||
case token.EQL:
|
||||
// TODO: this is wrong (and the next one also is), see issue #294
|
||||
// Changing it EQUAL is not that big of an improvement, so we're
|
||||
// using NUMEQUAL for now
|
||||
emitOpcode(c.prog, vm.NUMEQUAL)
|
||||
case token.NEQ:
|
||||
emitOpcode(c.prog, vm.NUMNOTEQUAL)
|
||||
|
|
Loading…
Reference in a new issue