summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/compiler/scanner/mode.go
blob: f67ceaf8f7dd1ccc7e283cb4c09840c95e0ce801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package scanner

// Mode represents a scanner mode.
type Mode int

// List of scanner modes.
const (
	ScanComments Mode = 1 << iota
	DontInsertSemis
)