hcl/ast: just adding a GoSTringer impl
This commit is contained in:
parent
197e8d3cf4
commit
578dd97468
@ -3,6 +3,7 @@
|
|||||||
package ast
|
package ast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/hashicorp/hcl/hcl/token"
|
"github.com/hashicorp/hcl/hcl/token"
|
||||||
@ -202,3 +203,9 @@ type CommentGroup struct {
|
|||||||
func (c *CommentGroup) Pos() token.Pos {
|
func (c *CommentGroup) Pos() token.Pos {
|
||||||
return c.List[0].Pos()
|
return c.List[0].Pos()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//-------------------------------------------------------------------
|
||||||
|
// GoStringer
|
||||||
|
//-------------------------------------------------------------------
|
||||||
|
|
||||||
|
func (o *ObjectKey) GoString() string { return fmt.Sprintf("*%#v", *o) }
|
||||||
|
Loading…
Reference in New Issue
Block a user