namespacesversion
Turn directories into OCaml modules (deprecated)
Deprecated in favor of the built-in mechanism in Dune.
An Ocamlbuild plugin that turns directories tagged with "namespace" into a nested module hierarchy. Each directory becomes a module. Filenames become scoped, so you can have the same filename in multiple directories. So, if you have
server
|-- foo.ml
+-- bar.ml
client
|-- foo.ml
|-- bar.ml
|-- ui
| +-- reactive.ml
+-- client.ml
It is as if you had written
module Server =
struct
module Foo = (* server/foo.ml *)
module Bar = (* server/bar.ml *)
end
module Client =
struct
module Foo = (* client/foo.ml *)
module Bar = (* client/bar.ml *)
module Ui =
struct
module Reactive = (* client/ui/reactive.ml *)
end
include (* client/client.ml *)
end
Author | Anton Bachin <antonbachin@yahoo.com> |
---|---|
License | BSD-3-Clause |
Published | |
Homepage | https://github.com/aantron/namespaces |
Issue Tracker | https://github.com/aantron/namespaces/issues |
Maintainer | Anton Bachin <antonbachin@yahoo.com> |
Dependencies |
|
Source [http] | https://github.com/aantron/namespaces/archive/0.5.1.tar.gz sha256=d84ee62a78b5f7f97c6976e0823aaf9ddc54825681b18e481d5426652ab0ffdb md5=0012771f63a3559e4f712632c0943258 |
Edit | https://github.com/ocaml/opam-repository/tree/master/packages/namespaces/namespaces.0.5.1/opam |
No package is dependent