You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package github.com/talon-one/lexer is a parser, and there is parsing related code in github.com/talon-one/token. I think that clarifying the grammar and making a single package for parsing would be beneficial. So far I think the grammar is something like:
assumes that the correct format is time.RFC3339. I think the assumption is right since the former format has spaces and that makes it harder to parse in this context, but the documentation is confusing.
The text was updated successfully, but these errors were encountered:
The package
github.com/talon-one/lexer
is a parser, and there is parsing related code ingithub.com/talon-one/token
. I think that clarifying the grammar and making a single package for parsing would be beneficial. So far I think the grammar is something like:With
word
,string
,decimal
,time
andboolean
being terminal symbols.Also https://github.com/talon-one/talang/tree/master/docs suggests that "Mon Jan 2 15:04:05 MST 2006" is a valid time, while
talang/token/token.go
Line 253 in 8d2c20d
time.RFC3339
. I think the assumption is right since the former format has spaces and that makes it harder to parse in this context, but the documentation is confusing.The text was updated successfully, but these errors were encountered: