Skip to content

Commit

Permalink
Addressed PR comment
Browse files Browse the repository at this point in the history
Signed-off-by: Mitchell Gale <Mitchell.Gale@improving.com>
  • Loading branch information
MitchellGale committed Aug 22, 2023
1 parent 847faad commit e49e090
Showing 1 changed file with 23 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,29 @@ public void array_with_multiple_path_value() {
}

/**
* { "name": "bob smith" "project.year": 1990, "project": { "year": 2020 }, "address": { "state":
* "WA", "city": "seattle" "project.year": 1990 }, "address.local": { "state": "WA", }, "message":
* [ { "info": "message in array" }, { "info": "Only first index of array used" } ] }
*
*
* <pre>
* {
* "name": "bob smith"
* "project.year": 1990,
* "project": {
* "year": 2020
* },
* "address": {
* "state": "WA",
* "city": "seattle"
* "project.year": 1990
* },
* "address.local": {
* "state": "WA",
* },
* "message": [
* { "info": "message in array" },
* { "info": "Only first index of array used" }
* ]
* }
* </pre>
*/
private ExprTupleValue tuple() {
ExprValue address =
Expand Down

0 comments on commit e49e090

Please sign in to comment.