Skip to content

Commit 57d144b

Browse files
authored
Logical expressions should be allowed in function arguments (#82)
1 parent 576d2b9 commit 57d144b

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.6.6] - 2023-09-23
8+
### Fixed
9+
- Logical expressions should be allowed in function arguments
10+
711
## [0.6.5] - 2023-09-11
812
### Fixed
913
- Certain numbers were not parsed correctly
@@ -172,6 +176,7 @@ Previously, no modification would be made and no errors/exceptions thrown.
172176
### Added
173177
- Basic design draft
174178

179+
[0.6.6]: https://github.com/f3ath/jessie/compare/0.6.5...0.6.6
175180
[0.6.5]: https://github.com/f3ath/jessie/compare/0.6.4...0.6.5
176181
[0.6.4]: https://github.com/f3ath/jessie/compare/0.6.3...0.6.4
177182
[0.6.3]: https://github.com/f3ath/jessie/compare/0.6.2...0.6.3

lib/src/grammar/json_path.dart

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class JsonPathGrammarDefinition extends GrammarDefinition<Expression<Nodes>> {
6363
literal,
6464
_filterPath(),
6565
ref0(_funExpr),
66+
ref0(_logicalExpr),
6667
].toChoiceParser().trim();
6768

6869
Parser<T> _funCall<T>(T Function(FunCall) toFun) =>

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: json_path
2-
version: 0.6.5
2+
version: 0.6.6
33
description: Implementation of JSONPath expressions like "$.store.book[2].price". Reads and writes values in parsed JSON objects.
44
homepage: "https://github.com/f3ath/jessie"
55

test/cases/extra/cases.json

+6
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@
4747
"selector" : "$[?is_boolean(@)]",
4848
"document" : [1, true, {}, [42], "foo", {"a": "b"}, false],
4949
"result": [true, false]
50+
},
51+
{
52+
"name": "parens in functional args",
53+
"selector" : "$[?xor((@.b), (@.a))]",
54+
"document" : [{"a": 0}, {"a": 0, "b": 0}, {"b": 0}, {}],
55+
"result": [{"a": 0}, {"b": 0}]
5056
}
5157
]
5258
}

0 commit comments

Comments
 (0)