-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from mutablelogic/v4
Lots of changes
- Loading branch information
Showing
80 changed files
with
7,849 additions
and
258 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
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
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,5 +1,5 @@ | ||
|
||
# JSON configuration files | ||
# JSON configuration & parser test files | ||
|
||
Examples of JSON configuration files for the run command. This is not yet | ||
implemented, but will be in the future. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"arrays": { | ||
"bool_array": [ | ||
true, | ||
false | ||
], | ||
"string_array": [ | ||
"default", | ||
"prefix" | ||
], | ||
"number_array": [ | ||
1, | ||
2 | ||
], | ||
"null_array": [ | ||
null, | ||
null | ||
] | ||
}, | ||
"maps": { | ||
"bool_map": { | ||
"true": true, | ||
"false": false | ||
}, | ||
"string_map": { | ||
"default": "default", | ||
"prefix": "prefix" | ||
}, | ||
"number_map": { | ||
"one": 1, | ||
"two": 2 | ||
}, | ||
"null_map": { | ||
"null1": null, | ||
"null2": null | ||
} | ||
}, | ||
"fields": { | ||
"bool": true, | ||
"string": "string", | ||
"number": 1, | ||
"null": null | ||
}, | ||
"map_of_array": { | ||
"bool_array": [ | ||
true, | ||
false | ||
], | ||
"string_array": [ | ||
"default", | ||
"prefix" | ||
], | ||
"number_array": [ | ||
1, | ||
2 | ||
], | ||
"null_array": [ | ||
null, | ||
null | ||
] | ||
}, | ||
"empty_map": {}, | ||
"empty_map_array": { | ||
"array1": [], | ||
"array2": [] | ||
}, | ||
"empty_map_map": { | ||
"map1": {}, | ||
"map2": {} | ||
} | ||
} |
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,8 @@ | ||
{ | ||
"plugin": { | ||
"string": "string", | ||
"number": 1, | ||
"null": null, | ||
"bool": true | ||
} | ||
} |
Oops, something went wrong.