-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jsondocck improvements #82311
Merged
Merged
Jsondocck improvements #82311
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a00eb7e
Add @is command to jsondocck
aDotInTheVoid cd5f603
Implement @set
aDotInTheVoid dd4b938
Implement using @set values
aDotInTheVoid a22d948
Apply suggestions from code review
aDotInTheVoid ba22a69
Extract string_to_value to its own function
aDotInTheVoid 4c949a4
Simplify Error Handling.
aDotInTheVoid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
// edition:2018 | ||
|
||
// @has nested.json "$.index[*][?(@.name=='nested')].kind" \"module\" | ||
// @has - "$.index[*][?(@.name=='nested')].inner.is_crate" true | ||
// @is nested.json "$.index[*][?(@.name=='nested')].kind" \"module\" | ||
// @is - "$.index[*][?(@.name=='nested')].inner.is_crate" true | ||
// @count - "$.index[*][?(@.name=='nested')].inner.items[*]" 1 | ||
|
||
// @has nested.json "$.index[*][?(@.name=='l1')].kind" \"module\" | ||
// @has - "$.index[*][?(@.name=='l1')].inner.is_crate" false | ||
// @is nested.json "$.index[*][?(@.name=='l1')].kind" \"module\" | ||
// @is - "$.index[*][?(@.name=='l1')].inner.is_crate" false | ||
// @count - "$.index[*][?(@.name=='l1')].inner.items[*]" 2 | ||
pub mod l1 { | ||
|
||
// @has nested.json "$.index[*][?(@.name=='l3')].kind" \"module\" | ||
// @has - "$.index[*][?(@.name=='l3')].inner.is_crate" false | ||
// @is nested.json "$.index[*][?(@.name=='l3')].kind" \"module\" | ||
// @is - "$.index[*][?(@.name=='l3')].inner.is_crate" false | ||
// @count - "$.index[*][?(@.name=='l3')].inner.items[*]" 1 | ||
// @set l3_id = - "$.index[*][?(@.name=='l3')].id" | ||
// @has - "$.index[*][?(@.name=='l1')].inner.items[*]" $l3_id | ||
pub mod l3 { | ||
|
||
// @has nested.json "$.index[*][?(@.name=='L4')].kind" \"struct\" | ||
// @has - "$.index[*][?(@.name=='L4')].inner.struct_type" \"unit\" | ||
// @is nested.json "$.index[*][?(@.name=='L4')].kind" \"struct\" | ||
// @is - "$.index[*][?(@.name=='L4')].inner.struct_type" \"unit\" | ||
// @set l4_id = - "$.index[*][?(@.name=='L4')].id" | ||
// @has - "$.index[*][?(@.name=='l3')].inner.items[*]" $l4_id | ||
pub struct L4; | ||
} | ||
// @has nested.json "$.index[*][?(@.inner.span=='l3::L4')].kind" \"import\" | ||
// @has - "$.index[*][?(@.inner.span=='l3::L4')].inner.glob" false | ||
// @is nested.json "$.index[*][?(@.inner.span=='l3::L4')].kind" \"import\" | ||
// @is - "$.index[*][?(@.inner.span=='l3::L4')].inner.glob" false | ||
pub use l3::L4; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$
already has a meaning in JSONPath, it means the root. I guess that shouldn't overlap here because you're testing a JSON value, it's not part of the path syntax? What happens if you want to match a string with$
in it?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$foo
-> Variablefoo
,"$foo"
-> String$foo
Because json can only start with
"
,{
, or[
, it is unambiguousThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But this should be documented