Moved private sources to yaml/private

This commit is contained in:
Felix Krause 2017-02-06 20:39:04 +01:00
parent d8f6ea5e2d
commit 0ef9cbf535
10 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
import ../private/lex
import ../yaml/private/lex
import unittest, strutils

View File

@ -20,7 +20,7 @@
## objects of Nim's `json module <http://nim-lang.org/docs/json.html>`_.
import tables, streams, hashes, sets, strutils
import stream, taglib, serialization, ../private/internal, parser,
import stream, taglib, serialization, private/internal, parser,
presenter
type

View File

@ -11,7 +11,7 @@
## The hints API enables you to guess the type of YAML scalars.
import macros
import ../private/internal
import private/internal
type
TypeHint* = enum

View File

@ -12,7 +12,7 @@
## non-nil string or Stream object as YAML character stream.
import tables, strutils, macros, streams
import taglib, stream, ../private/lex, ../private/internal
import taglib, stream, private/lex, private/internal
type
WarningCallback* = proc(line, column: int, lineContent: string,

View File

@ -11,7 +11,7 @@
## This is the presenter API, used for generating YAML character streams.
import streams, queues, strutils
import taglib, stream, ../private/internal, hints, parser, stream
import taglib, stream, private/internal, hints, parser, stream
type
PresentationStyle* = enum

View File

@ -17,7 +17,7 @@
## information.
import tables, typetraits, strutils, macros, streams, times, parseutils
import parser, taglib, presenter, stream, ../private/internal, hints
import parser, taglib, presenter, stream, private/internal, hints
export stream
# *something* in here needs externally visible `==`(x,y: AnchorId),
# but I cannot figure out what. binding it would be the better option.

View File

@ -13,7 +13,7 @@
## stdlib with that name.
import hashes
import ../private/internal, taglib
import private/internal, taglib
type
AnchorId* = distinct int ## \

View File

@ -12,7 +12,7 @@
## structures provided by Nim's stdlib.
import json, streams, strutils, tables
import taglib, hints, serialization, stream, ../private/internal, parser
import taglib, hints, serialization, stream, private/internal, parser
type Level = tuple[node: JsonNode, key: string]