summaryrefslogtreecommitdiff
path: root/conf/scanner.go
diff options
context:
space:
mode:
Diffstat (limited to 'conf/scanner.go')
-rw-r--r--conf/scanner.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/scanner.go b/conf/scanner.go
index 3d83534..9bd7a4b 100644
--- a/conf/scanner.go
+++ b/conf/scanner.go
@@ -14,7 +14,8 @@ type tokentype int
const (
Name tokentype = iota
Literal
- Delimiter
+ DeliOpen
+ DeliClose
Nothing
IfStatement
)
@@ -27,7 +28,6 @@ type token struct {
}
type scanner struct {
- r io.Reader
data []byte
offset int
curline int