- Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathimportutils.nim
44 lines (39 loc) · 1.26 KB
/
importutils.nim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
##[
Utilities related to import and symbol resolution.
Experimental API, subject to change.
]##
#[
Possible future APIs:
* module symbols (https://github.com/nim-lang/Nim/pull/9560)
* whichModule (subsumes canImport / moduleExists) (https://github.com/timotheecour/Nim/issues/376)
* getCurrentPkgDir (https://github.com/nim-lang/Nim/pull/10530)
* import from a computed string + related APIs (https://github.com/nim-lang/Nim/pull/10527)
]#
whendefined(nimImportutilsExample):
type
Foo=object
f0: int# private
Goo*[T] =object
g0: int# private
procinitFoo*(): auto=Foo()
procprivateAccess*(t: typedesc) {.magic: "PrivateAccess".} =
## Enables access to private fields of `t` in current scope.
runnableExamples("-d:nimImportutilsExample"):
# here we're importing a module containing:
# type
# Foo = object
# f0: int # private
# Goo*[T] = object
# g0: int # private
# proc initFoo*(): auto = Foo()
var f =initFoo()
block:
assertnotcompiles(f.f0)
privateAccess(f.type)
f.f0 =1# accessible in this scope
block:
assert f.f0 ==1# still in scope
assertnotcompiles(f.f0)
# this also works with generics
privateAccess(Goo)
assertGoo[float](g0: 1).g0 ==1