mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08: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)
|
|
}
|