-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
126 additions
and
312 deletions.
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
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
31 changes: 31 additions & 0 deletions
31
lib/haskell/natural4/test/testdata/golden/AaJsonSpec/must_sing.json.expected
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
|
||
{ | ||
"Person": { | ||
"All": { | ||
"label": { | ||
"Pre": "all of:" | ||
}, | ||
"children": [ | ||
{ | ||
"Leaf": "does the person walk?" | ||
}, | ||
{ | ||
"Any": { | ||
"label": { | ||
"Pre": "any of:" | ||
}, | ||
"children": [ | ||
{ | ||
"Leaf": "does the person eat?" | ||
}, | ||
{ | ||
"Leaf": "does the person drink?" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
50 changes: 0 additions & 50 deletions
50
lib/haskell/natural4/test/testdata/golden/AaJsonSpec/must_sing.purs.expected
This file was deleted.
Oops, something went wrong.
87 changes: 87 additions & 0 deletions
87
lib/haskell/natural4/test/testdata/golden/AaJsonSpec/rodents.json.expected
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 |
---|---|---|
@@ -0,0 +1,87 @@ | ||
|
||
|
||
nl4eng :: Object.Object (Item String) | ||
nl4eng = Object.fromFoldable | ||
[ Tuple "Covered If …" | ||
( Not | ||
( All | ||
( Pre "all of:" ) | ||
[ Any | ||
( Pre "Is the Loss or Damage caused by" ) | ||
[ Leaf "rodents?" | ||
, Leaf "insects?" | ||
, Leaf "vermin?" | ||
, Leaf "birds?" | ||
] | ||
, Not | ||
( Any | ||
( Pre "any of:" ) | ||
[ All | ||
( Pre "all of:" ) | ||
[ Leaf "is Loss or Damage to contents?" | ||
, Leaf "is Loss or Damage caused by birds?" | ||
] | ||
, All | ||
( Pre "all of:" ) | ||
[ Leaf "is Loss or Damage ensuing covered loss?" | ||
, Not | ||
( Any | ||
( Pre "any of:" ) | ||
[ Leaf "does any other exclusion apply?" | ||
, Any | ||
( Pre "did an animal cause water to escape from" ) | ||
[ Leaf "a household appliance?" | ||
, Leaf "a swimming pool?" | ||
, Leaf "a plumbing, heating, or air conditioning system?" | ||
] | ||
] | ||
) | ||
] | ||
] | ||
) | ||
] | ||
) | ||
) | ||
, Tuple "Not Covered If …" | ||
( All | ||
( Pre "all of:" ) | ||
[ Any | ||
( Pre "Is the Loss or Damage caused by" ) | ||
[ Leaf "rodents?" | ||
, Leaf "insects?" | ||
, Leaf "vermin?" | ||
, Leaf "birds?" | ||
] | ||
, Not | ||
( Any | ||
( Pre "any of:" ) | ||
[ All | ||
( Pre "all of:" ) | ||
[ Leaf "is Loss or Damage to contents?" | ||
, Leaf "is Loss or Damage caused by birds?" | ||
] | ||
, All | ||
( Pre "all of:" ) | ||
[ Leaf "is Loss or Damage ensuing covered loss?" | ||
, Not | ||
( Any | ||
( Pre "any of:" ) | ||
[ Leaf "does any other exclusion apply?" | ||
, Any | ||
( Pre "did an animal cause water to escape from" ) | ||
[ Leaf "a household appliance?" | ||
, Leaf "a swimming pool?" | ||
, Leaf "a plumbing, heating, or air conditioning system?" | ||
] | ||
] | ||
) | ||
] | ||
] | ||
) | ||
] | ||
) | ||
] | ||
|
||
|
||
|
||
allLang = ["nl4chi", "nl4eng", "nl4may"] |
Oops, something went wrong.