add whitespace

This commit is contained in:
Daylin Morgan 2024-11-10 12:09:41 -06:00
parent a40aed047d
commit 0a728d8727
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -137,6 +137,7 @@ type
long*: string long*: string
help*: NimNode help*: NimNode
node: NimNode node: NimNode
CliFlag = object CliFlag = object
name*: string name*: string
ident*: NimNode ident*: NimNode
@ -145,6 +146,7 @@ type
short*: char short*: char
long*: string long*: string
help*: NimNode help*: NimNode
CliCfg = object CliCfg = object
stopWords*: seq[string] stopWords*: seq[string]
styles: NimNode styles: NimNode
@ -163,12 +165,11 @@ type
inheritFlags*: seq[string] inheritFlags*: seq[string]
root*: bool root*: bool
{.push hint[XDeclaredButNotUsed]:off .}
# some debug procs I use to wrap my ahead aroung the magic of *macro* # some debug procs I use to wrap my ahead aroung the magic of *macro*
func `<<<`(n: NimNode) = func `<<<`(n: NimNode) {.used.} =
## for debugging macros ## for debugging macros
debugEcho treeRepr n debugEcho treeRepr n
func `<<<`(s: string) = func `<<<`(s: string) {.used.} =
debugEcho s debugEcho s
func bad(n: NimNode, argument: string = "") = func bad(n: NimNode, argument: string = "") =