summary refs log tree commit diff stats
path: root/lib/std
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-04-16 00:16:39 -0700
committerGitHub <noreply@github.com>2021-04-16 09:16:39 +0200
commit8161b02897a75c4b30593dbcc189cbd49d3832ea (patch)
tree399ca0d086a7e6917fae6c47c8dd899bd80f9102 /lib/std
parent12783dbcf0075492a3d090e4dc3ead3628c18a3a (diff)
downloadNim-8161b02897a75c4b30593dbcc189cbd49d3832ea.tar.gz
`import foo {.all.}` reboot (#17706)
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/importutils.nim34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/std/importutils.nim b/lib/std/importutils.nim
new file mode 100644
index 000000000..4efe0e140
--- /dev/null
+++ b/lib/std/importutils.nim
@@ -0,0 +1,34 @@
+##[
+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)
+]#
+
+when defined(nimImportutilsExample):
+  type Foo = object
+    x1: int # private
+  proc initFoo*(): auto = Foo()
+
+proc privateAccess*(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
+    #   x1: int # private
+    # proc initFoo*(): auto = Foo()
+    var a = initFoo()
+    block:
+      assert not compiles(a.x1)
+      privateAccess(a.type)
+      a.x1 = 1 # accessible in this scope
+      block:
+        assert a.x1 == 1 # still in scope
+    assert not compiles(a.x1)
span class='oid'>7171ae62c ^
23ef565a3 ^

af7c92c00 ^






































b64eeeb43 ^

af7c92c00 ^



438703f59 ^
af7c92c00 ^





438703f59 ^
af7c92c00 ^

355ae07b8 ^
af7c92c00 ^















438703f59 ^
92b8fac94 ^
af7c92c00 ^














30c00aba0 ^
af7c92c00 ^







b64eeeb43 ^

af7c92c00 ^















b64eeeb43 ^




















5b0d8246f ^

b64eeeb43 ^
5b0d8246f ^
b64eeeb43 ^



5b0d8246f ^

b64eeeb43 ^





5b0d8246f ^

b64eeeb43 ^







d0438540d ^


b64eeeb43 ^
346443d1b ^
b64eeeb43 ^
af7c92c00 ^


438703f59 ^
af7c92c00 ^
































b64eeeb43 ^

355ae07b8 ^

af7c92c00 ^

355ae07b8 ^
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267