mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-29 02:02:06 -04:00
11 lines
173 B
Go
11 lines
173 B
Go
package ini
|
|
|
|
var commaRunes = []rune(",")
|
|
|
|
func isComma(b rune) bool {
|
|
return b == ','
|
|
}
|
|
|
|
func newCommaToken() Token {
|
|
return newToken(TokenComma, commaRunes, NoneType)
|
|
}
|