Configuration of the TOML parser
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
type(toml_terminal), | public | :: | color | = | toml_terminal() |
Use colorful output for diagnostics |
|
integer, | public | :: | context_detail | = | 0 |
Record all tokens |
Create new configuration for the TOML parser
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
logical, | intent(in), | optional | :: | color |
Color support for diagnostics |
|
integer, | intent(in), | optional | :: | context_detail |
Record all tokens |
Configuration of the parser
type :: toml_parser_config !> Use colorful output for diagnostics type(toml_terminal) :: color = toml_terminal() !> Record all tokens integer :: context_detail = 0 end type toml_parser_config