mirror of https://github.com/status-im/NimYAML.git
experimental: notnil
This commit is contained in:
parent
2328289dba
commit
51d33d4a05
|
@ -23,6 +23,8 @@ import tables, streams, hashes, sets, strutils
|
|||
import stream, taglib, serialization, private/internal, parser,
|
||||
presenter
|
||||
|
||||
when defined(nimNoNil):
|
||||
{.experimental: "notnil".}
|
||||
type
|
||||
YamlNodeKind* = enum
|
||||
yScalar, yMapping, ySequence
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
import hashes
|
||||
import private/internal, taglib
|
||||
|
||||
when defined(nimNoNil):
|
||||
{.experimental: "notnil".}
|
||||
|
||||
when defined(yamlScalarRepInd):
|
||||
type ScalarRepresentationIndicator* = enum
|
||||
srPlain, srSingleQuoted, srDoubleQuoted, srLiteral, srFolded
|
||||
|
|
Loading…
Reference in New Issue