Imports of imports are resolved relative to the wrong file
Setup:
a.ds : module a
b/b.ds : module b imports ../a
c.ds : module c imports b/b
Result:
Error atFile not found: "../a.ds"
atc.ds
.Expected result:
Submitted by Hendrik van Antwerpen on 27 February 2015 at 13:12
The import../a
is resolved relative tob/b.ds
, not relative toc.ds
.
Log in to post comments