From f635033e3e953e74d67b76a520c9760786330af5 Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Tue, 24 Jan 2017 23:43:28 +0000 Subject: Switch to scl, an extension of hcl --- vendor/github.com/homemade/scl/token.go | 39 +++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 vendor/github.com/homemade/scl/token.go (limited to 'vendor/github.com/homemade/scl/token.go') diff --git a/vendor/github.com/homemade/scl/token.go b/vendor/github.com/homemade/scl/token.go new file mode 100644 index 0000000..77d5ab2 --- /dev/null +++ b/vendor/github.com/homemade/scl/token.go @@ -0,0 +1,39 @@ +package scl + +//go:generate stringer -type=tokenKind -output=token_string.go +type tokenKind int + +const ( + tokenLineComment tokenKind = iota + tokenMixinDeclaration + tokenVariable + tokenVariableAssignment + tokenFunctionCall + tokenLiteral + tokenVariableDeclaration + tokenConditionalVariableAssignment + tokenCommentStart + tokenCommentEnd +) + +var tokenKindsByString = map[tokenKind]string{ + tokenLineComment: "line comment", + tokenMixinDeclaration: "mixin declaration", + tokenVariableAssignment: "variable assignment", + tokenVariableDeclaration: "variable declaration", + tokenConditionalVariableAssignment: "conditional variable declaration", + tokenFunctionCall: "function call", + tokenLiteral: "literal", + tokenCommentStart: "comment start", + tokenCommentEnd: "comment end", +} + +type token struct { + kind tokenKind + content string + line *scannerLine +} + +func (t token) String() string { + return tokenKindsByString[t.kind] +} -- cgit v1.2.3