diff options
Diffstat (limited to 'vendor/github.com/xeipuuv/gojsonschema/jsonContext.go')
-rw-r--r-- | vendor/github.com/xeipuuv/gojsonschema/jsonContext.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go b/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go index f40668a74..0e979707b 100644 --- a/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go +++ b/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go @@ -32,6 +32,7 @@ type JsonContext struct { tail *JsonContext } +// NewJsonContext creates a new JsonContext func NewJsonContext(head string, tail *JsonContext) *JsonContext { return &JsonContext{head, tail} } |