commit | 1370f0a46925482af80c0d6b817a86a0a15b0aec | [log] [tgz] |
---|---|---|
author | Marcel van Lohuizen <mpvl@golang.org> | Wed Apr 15 11:27:13 2020 +0200 |
committer | Marcel van Lohuizen <mpvl@golang.org> | Mon Apr 20 08:29:51 2020 +0000 |
tree | 16a4fa91d29b93cc8e89e02b4e3eaffa5c1ade93 | |
parent | 8040ce76ff34cd1606106351916bf8c507fa1013 [diff] [blame] |
cue: implement "front-style" list comprehensions This now also allows any of the non-JSON keywords to be used as references. Previously, these were already supported as field names. Issue #339 Issue #165 Change-Id: I721d054c8220ba3536f680fe2e3e502a62f99b6b Reviewed-on: https://cue-review.googlesource.com/c/cue/+/5683 Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
diff --git a/encoding/jsonschema/decode.go b/encoding/jsonschema/decode.go index 72bd2cb..db9007d 100644 --- a/encoding/jsonschema/decode.go +++ b/encoding/jsonschema/decode.go
@@ -419,7 +419,7 @@ default: if !n.IsConcrete() { - s.errf(n, "invalid non-concerte value") + s.errf(n, "invalid non-concrete value") } return n.Syntax(cue.Final()).(ast.Expr) }