mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-11 08:32:19 -06:00
cb2e9119aa
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package tfdiags
|
|
|
|
// diagnosticBase can be embedded in other diagnostic structs to get
|
|
// default implementations of Severity and Description. This type also
|
|
// 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.
|
|
type diagnosticBase struct {
|
|
severity Severity
|
|
summary string
|
|
detail string
|
|
address string
|
|
}
|
|
|
|
func (d diagnosticBase) Severity() Severity {
|
|
return d.severity
|
|
}
|
|
|
|
func (d diagnosticBase) Description() Description {
|
|
return Description{
|
|
Summary: d.summary,
|
|
Detail: d.detail,
|
|
Address: d.address,
|
|
}
|
|
}
|
|
|
|
func (d diagnosticBase) Source() Source {
|
|
return Source{}
|
|
}
|
|
|
|
func (d diagnosticBase) FromExpr() *FromExpr {
|
|
return nil
|
|
}
|
|
|
|
func (d diagnosticBase) ExtraInfo() interface{} {
|
|
return nil
|
|
}
|