Merge pull request #39 from hashicorp/f-hcl-diag-as-errors
hcl: Add Diagnostics.Errs()
This commit is contained in:
commit
2c946fb6e2
@ -96,6 +96,17 @@ func (d Diagnostics) HasErrors() bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (d Diagnostics) Errs() []error {
|
||||||
|
var errs []error
|
||||||
|
for _, diag := range d {
|
||||||
|
if diag.Severity == DiagError {
|
||||||
|
errs = append(errs, diag)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return errs
|
||||||
|
}
|
||||||
|
|
||||||
// A DiagnosticWriter emits diagnostics somehow.
|
// A DiagnosticWriter emits diagnostics somehow.
|
||||||
type DiagnosticWriter interface {
|
type DiagnosticWriter interface {
|
||||||
WriteDiagnostic(*Diagnostic) error
|
WriteDiagnostic(*Diagnostic) error
|
||||||
|
Loading…
x
Reference in New Issue
Block a user