mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-11 22:08:54 +00:00
fixes pragmas reorder (#21205)
This commit is contained in:
@@ -106,6 +106,7 @@ proc computeDeps(cache: IdentCache; n: PNode, declares, uses: var IntSet; topLev
|
||||
if a.kind == nkExprColonExpr and a[0].kind == nkIdent and a[0].ident.s == "pragma":
|
||||
# user defined pragma
|
||||
decl(a[1])
|
||||
for i in 1..<n.safeLen: deps(n[i])
|
||||
else:
|
||||
for i in 0..<n.safeLen: deps(n[i])
|
||||
of nkMixinStmt, nkBindStmt: discard
|
||||
|
||||
19
tests/pragmas/tpragmas_reorder.nim
Normal file
19
tests/pragmas/tpragmas_reorder.nim
Normal file
@@ -0,0 +1,19 @@
|
||||
discard """
|
||||
matrix: "--experimental:codeReordering"
|
||||
"""
|
||||
|
||||
runnableExamples:
|
||||
import strtabs
|
||||
var t = newStringTable()
|
||||
t["name"] = "John"
|
||||
t["city"] = "Monaco"
|
||||
doAssert t.len == 2
|
||||
doAssert t.hasKey "name"
|
||||
doAssert "name" in t
|
||||
|
||||
include "system/inclrtl"
|
||||
|
||||
{.pragma: rtlFunc, rtl.}
|
||||
|
||||
proc hasKey*(): bool {.rtlFunc.} =
|
||||
discard
|
||||
Reference in New Issue
Block a user