2018-03-16 00:02:23 +01:00
|
|
|
package tfdiags
|
|
|
|
|
|
|
|
// diagnosticBase can be embedded in other diagnostic structs to get
|
|
|
|
// default implementations of Severity and Description. This type also
|
2018-10-18 02:47:13 +02:00
|
|
|
// has default implementations of Source and FromExpr that return no source
|
|
|
|
// location or expression-related information, so embedders should generally
|
|
|
|
// override those method to return more useful results where possible.
|
2018-03-16 00:02:23 +01:00
|
|
|
type diagnosticBase struct {
|
|
|
|
severity Severity
|
|
|
|
summary string
|
|
|
|
detail string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d diagnosticBase) Severity() Severity {
|
|
|
|
return d.severity
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d diagnosticBase) Description() Description {
|
|
|
|
return Description{
|
|
|
|
Summary: d.summary,
|
|
|
|
Detail: d.detail,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d diagnosticBase) Source() Source {
|
|
|
|
return Source{}
|
|
|
|
}
|
2018-10-18 02:47:13 +02:00
|
|
|
|
|
|
|
func (d diagnosticBase) FromExpr() *FromExpr {
|
|
|
|
return nil
|
|
|
|
}
|