- package parser
- const (
- infoDirective = "info"
- serviceDirective = "service"
- typeDirective = "type"
- typeStruct = "struct"
- at = '@'
- colon = ':'
- leftParenthesis = '('
- rightParenthesis = ')'
- leftBrace = "{"
- rightBrace = '}'
- multilineBeginTag = '>'
- multilineEndTag = '<'
- )
|