Method
Validate
(nestingLevel int, insideArraySubscript bool)
Source from the content-addressed store, hash-verified
| 108 | } |
| 109 | |
| 110 | func (a ArrayIndexRange) Validate(nestingLevel int, insideArraySubscript bool) error { |
| 111 | if err := a.Start.Validate(nestingLevel, insideArraySubscript); err != nil { |
| 112 | return err |
| 113 | } |
| 114 | if err := a.End.Validate(nestingLevel, insideArraySubscript); err != nil { |
| 115 | return err |
| 116 | } |
| 117 | return nil |
| 118 | } |
| 119 | |
| 120 | type ArrayList []Path |
| 121 | |
Callers
nothing calls this directly
Tested by
no test coverage detected