Skip to content

Commit

Permalink
accept object type node from macros (nim-lang#19179)
Browse files Browse the repository at this point in the history
  • Loading branch information
metagn committed Nov 24, 2021
1 parent a59ad20 commit f91867a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/semexprs.nim
Original file line number Diff line number Diff line change
Expand Up @@ -2856,7 +2856,7 @@ proc semExpr(c: PContext, n: PNode, flags: TExprFlags = {}): PNode =
of nkBind:
message(c.config, n.info, warnDeprecated, "bind is deprecated")
result = semExpr(c, n[0], flags)
of nkTypeOfExpr, nkTupleTy, nkTupleClassTy, nkRefTy..nkEnumTy, nkStaticTy:
of nkTypeOfExpr..nkTupleClassTy, nkStaticTy, nkRefTy..nkEnumTy:
if c.matchedConcept != nil and n.len == 1:
let modifier = n.modifierTypeKindOfNode
if modifier != tyNone:
Expand Down
16 changes: 16 additions & 0 deletions tests/macros/ttypenodes.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import macros

macro makeEnum(): untyped =
newTree(nnkEnumTy, newEmptyNode(), ident"a", ident"b", ident"c")

macro makeObject(): untyped =
newTree(nnkObjectTy, newEmptyNode(), newEmptyNode(), newTree(nnkRecList,
newTree(nnkIdentDefs, ident"x", ident"y", ident"int", newEmptyNode())))

type
Foo = makeEnum()
Bar = makeObject()

doAssert {a, b, c} is set[Foo]
let bar = Bar(x: 3, y: 4)
doAssert (bar.x, bar.y) == (3, 4)

0 comments on commit f91867a

Please sign in to comment.