SiegeLord / Tango-D2

A port of the Tango library to D2
http://siegelord.github.com/Tango-D2/
Other
90 stars 38 forks source link

Add missing common tango/sys files for Dub. #64

Closed jacob-carlborg closed 10 years ago

jacob-carlborg commented 10 years ago

This will also correctly set the import paths to always require the use of fully qualified module names. This is the behavior that was used for D1.

Previously, multiple import paths was set, example "tango/core". This allows to import tango/core/Array.d with just "import Array" instead of the fully qualified module name "import tango.core.Array".

SiegeLord commented 10 years ago

Thanks!