(pos Pos)
| 397 | } |
| 398 | |
| 399 | func (p *Parser) tryParseRoleSettings(pos Pos) ([]*RoleSetting, error) { |
| 400 | if !p.tryConsumeKeywords(KeywordSettings) { |
| 401 | return nil, nil |
| 402 | } |
| 403 | return p.parseRoleSettings(pos) |
| 404 | } |
| 405 | |
| 406 | func (p *Parser) parseRoleSetting(_ Pos) (*RoleSetting, error) { |
| 407 | pairs := make([]*SettingPair, 0) |
no test coverage detected