It would be nice to be able to scope imports and alias to a package block. So, for example:
package(silo.net.http.connection {
import(silo.net.http)
server.createServer(...) // Okay
})
server.createServer(...) // [server] not found because the import is no longer active.
It would be nice to be able to scope imports and alias to a package block. So, for example: