xgo/compiler/scanner/mode.go
2019-01-11 02:27:28 -08:00

8 lines
90 B
Go

package scanner
type Mode int
const (
ScanComments Mode = 1 << iota
DontInsertSemis
)