mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-04 10:54:42 +00:00
newLit works on enum (#9662)
* newLit works on enum * remove debugging echo
This commit is contained in:
@@ -696,6 +696,16 @@ proc newLit*[T](arg: seq[T]): NimNode {.compileTime.} =
|
||||
),
|
||||
bracket
|
||||
)
|
||||
proc newLit*(arg: enum): NimNode {.compileTime.} =
|
||||
result = newCall(
|
||||
arg.type.getTypeInst[1],
|
||||
newLit(int(arg))
|
||||
)
|
||||
|
||||
proc newLit*[T](s: set[T]): NimNode {.compileTime.} =
|
||||
result = nnkCurly.newTree
|
||||
for x in s:
|
||||
result.add newLit(x)
|
||||
|
||||
proc newLit*(arg: tuple): NimNode {.compileTime.} =
|
||||
result = nnkPar.newTree
|
||||
|
||||
@@ -147,3 +147,23 @@ block:
|
||||
# x needs to be of type seq[string]
|
||||
var x = test_newLit_empty_seq_string
|
||||
x.add("xyz")
|
||||
|
||||
type
|
||||
MyEnum = enum
|
||||
meA
|
||||
meB
|
||||
|
||||
macro test_newLit_Enum: untyped =
|
||||
result = newLit(meA)
|
||||
|
||||
block:
|
||||
let tmp: MyEnum = meA
|
||||
doAssert tmp == test_newLit_Enum
|
||||
|
||||
macro test_newLit_set: untyped =
|
||||
let myset = {MyEnum.low .. MyEnum.high}
|
||||
result = newLit(myset)
|
||||
|
||||
block:
|
||||
let tmp: set[MyEnum] = {MyEnum.low .. MyEnum.high}
|
||||
doAssert tmp == test_newLit_set
|
||||
|
||||
Reference in New Issue
Block a user