| {{- /* |
| -------------------------------------------------------------------------------- |
| Template file for use with tools/src/cmd/gen to generate access.cc |
| |
| To update the generated file, run: |
| ./tools/run gen |
| |
| See: |
| * tools/src/cmd/gen for structures used by this template |
| * https://golang.org/pkg/text/template/ for documentation on the template syntax |
| -------------------------------------------------------------------------------- |
| */ -}} |
| |
| {{- Import "src/tint/templates/enums.tmpl.inc" -}} |
| {{- $enum := (Sem.Enum "access") -}} |
| |
| #include "src/tint/ast/access.h" |
| |
| namespace tint::ast { |
| |
| {{ Eval "ParseEnum" $enum}} |
| |
| {{ Eval "EnumOStream" $enum}} |
| |
| } // namespace tint::ast |