(threadName string, root yamlmeta.Node)
| 81 | } |
| 82 | |
| 83 | func newValidationRun(threadName string, root yamlmeta.Node) *validationRun { |
| 84 | return &validationRun{thread: &starlark.Thread{Name: threadName}, root: root} |
| 85 | } |
| 86 | |
| 87 | // VisitWithParent if `node` has validations in its meta. |
| 88 | // Runs those validations, collecting any violations |
no outgoing calls
no test coverage detected
searching dependent graphs…