mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-13 01:42:41 +00:00
12 lines
173 B
Go
12 lines
173 B
Go
|
package ini
|
||
|
|
||
|
var commaRunes = []rune(",")
|
||
|
|
||
|
func isComma(b rune) bool {
|
||
|
return b == ','
|
||
|
}
|
||
|
|
||
|
func newCommaToken() Token {
|
||
|
return newToken(TokenComma, commaRunes, NoneType)
|
||
|
}
|