symbol-map.go: removed unsed definitons

This commit is contained in:
Celestino Amoroso 2024-10-13 08:44:21 +02:00
parent a28d24ba68
commit cb66c1ab19

View File

@ -10,12 +10,10 @@ import (
var symbolMap map[Symbol]symbolSpec
const operatorBaseSymbol = SymMinus
type symbolClass int16
const (
symClassOperator symbolClass = (1 << iota)
symClassOperator symbolClass = iota
symClassIdentifier
symClassParenthesis
symClassDeclaration