mirror of https://github.com/status-im/NimYAML.git
More refactoring
* Renamed ParserYamlStream to ParserContext * Moved almost all internal state from YamlParser to ParserContext
This commit is contained in:
parent
b83babf808
commit
30365d2f17
1694
private/parse.nim
1694
private/parse.nim
File diff suppressed because it is too large
Load Diff
12
yaml.nim
12
yaml.nim
|
@ -159,19 +159,9 @@ type
|
|||
## ``yamlEndDocument`` is yielded).
|
||||
tagLib: TagLibrary
|
||||
callback: WarningCallback
|
||||
anchors: Table[string, AnchorId]
|
||||
lexer: BaseLexer
|
||||
tokenstart: int
|
||||
content, after: string
|
||||
ancestry: seq[FastParseLevel]
|
||||
level: FastParseLevel
|
||||
tagUri: string
|
||||
tag: TagId
|
||||
anchor: AnchorId
|
||||
shorthands: Table[string, string]
|
||||
anchors: Table[string, AnchorId]
|
||||
nextAnchorId: AnchorId
|
||||
newlines: int
|
||||
indentation: int
|
||||
|
||||
PresentationStyle* = enum
|
||||
## Different styles for YAML character stream output.
|
||||
|
|
Loading…
Reference in New Issue