diff --git a/gherkin/ast.go b/gherkin/ast.go index d0909e6..519e0b3 100644 --- a/gherkin/ast.go +++ b/gherkin/ast.go @@ -24,14 +24,12 @@ type Feature struct { type Comment struct { Node - Location *Location `json:"location,omitempty"` - Text string `json:"text"` + Text string `json:"text"` } type Tag struct { Node - Location *Location `json:"location,omitempty"` - Name string `json:"name"` + Name string `json:"name"` } type Background struct {