mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-13 06:43:52 +00:00
implements 'import dir/module' without quotes
This commit is contained in:
@@ -29,9 +29,11 @@ proc getModuleName*(n: PNode): string =
|
||||
of nkSym:
|
||||
result = n.sym.name.s
|
||||
else:
|
||||
localError(n.info, errGenerated,
|
||||
"invalide module name: '$1'" % renderTree(n))
|
||||
result = ""
|
||||
# hacky way to implement 'x / y /../ z':
|
||||
result = renderTree(n, {renderNoComments}).replace(" ")
|
||||
#localError(n.info, errGenerated,
|
||||
# "invalide module name: '$1'" % renderTree(n))
|
||||
#result = ""
|
||||
|
||||
proc checkModuleName*(n: PNode): string =
|
||||
# This returns the full canonical path for a given module import
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# iterate over all files with a given filter:
|
||||
|
||||
import
|
||||
os, times
|
||||
"../../lib/pure/os.nim", ../../ lib / pure / times
|
||||
|
||||
proc main(filter: string) =
|
||||
for filename in walkFiles(filter):
|
||||
|
||||
2
todo.txt
2
todo.txt
@@ -50,7 +50,7 @@ Concurrency
|
||||
provide a ``syncgc`` pragma to trigger compiler injection --> more general:
|
||||
an ``injectLoop`` pragma
|
||||
- 'writes: []' effect; track reads/writes for shared types
|
||||
- use the effect system to for static deadlock prevention
|
||||
- use the effect system for static deadlock prevention
|
||||
|
||||
|
||||
version 0.9.XX
|
||||
|
||||
Reference in New Issue
Block a user