Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions State.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ const (
// Parser constants
const (
STARTING_COMMENT = iota
IN_COMMENT = iota
CLOSING_COMMENT = iota
COMMENT_CLOSED = iota
IN_SELECTOR = iota
IN_PROPERTY = iota
IN_VALUE = iota
IN_COMMENT
CLOSING_COMMENT
COMMENT_CLOSED
IN_SELECTOR
IN_PROPERTY
IN_VALUE
)

func (s *State) parse(letter byte) {
Expand Down