8fc5bd5141
stringer is more sensitive to certain errors than other generators, so by running it last we give the other generators a chance to get things straight before we ask stringer to run.
8 lines
379 B
Go
8 lines
379 B
Go
package zclsyntax
|
|
|
|
//go:generate go run expression_vars_gen.go
|
|
//go:generate ruby unicode2ragel.rb --url=http://www.unicode.org/Public/9.0.0/ucd/DerivedCoreProperties.txt -m UnicodeDerived -p ID_Start,ID_Continue -o unicode_derived.rl
|
|
//go:generate ragel -Z scan_tokens.rl
|
|
//go:generate gofmt -w scan_tokens.go
|
|
//go:generate stringer -type TokenType -output token_type_string.go
|