package ppx_here
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=26d56823ea946a5808466b9eed638a83b855323e03a03fdd7c964249758e488b
md5=19333d8afcac45269769560645b3fa1f
Description
Part of the Jane Street's PPX rewriters collection.
Published: 15 Dec 2017
README
ppx_here
A ppx rewriter that defines an extension node whose value is its source position.
Syntax
ppx_here
rewrites the extension [%here]
in expressions, by replacing it by a value of type Source_code_position.t
(i.e. Lexing.position
) corresponding to the current position. It respects line number directives.
For instance:
let _ =
print_endline [%here].Lexing.pos_fname
becomes:
let _ =
print_endline
{
Lexing.pos_fname = ppx/ppx_here/test/test.ml";
pos_lnum = 2;
pos_cnum = 26;
pos_bol = 8;
}.Lexing.pos_fname
Usage
This is normally used so exceptions can contain better positions. An example is Core_kernel.Std.Option.value_exn
, which takes an optional position so that if you have a stack trace, you can get still the origin of the exception.
It can also be used in cases where stack traces are useless (for instance in monads with a complicated control flow).
Command line flag
If the flag -dirname <dir>
is given, relative filenames are made relative to <dir>
. <dir>
can be a relative path.
<dir>
can be chosen as the path from the root of the repository to the directory of the source, to make filenames unique within the repository (which avoids ambiguities as there can be many files called server.ml
, common.ml
or config.ml
).
Dependencies (5)
-
ocaml-migrate-parsetree
>= "0.4" & < "2.0.0"
-
jbuilder
>= "1.0+beta12"
-
ppx_driver
>= "v0.10" & < "v0.11"
-
ppx_core
>= "v0.10" & < "v0.11"
-
ocaml
>= "4.04.1"
Dev Dependencies
None
Used by (19)
-
cohttp-eio
>= "6.0.0~beta2"
-
conduit-async
= "2.3.0" | >= "4.0.0"
- dap
- h1_parser
- http
-
obeam
= "0.1.0"
- oci
-
ppx_assert
= "v0.10.0"
-
ppx_bap
< "v0.14.0"
-
ppx_bin_prot
= "v0.10.0"
-
ppx_expect
>= "v0.10.0" & < "v0.11.0"
-
ppx_fail
= "v0.10.0"
-
ppx_jane
= "v0.10.0"
-
ppx_sexp_message
= "v0.10.0"
-
ppx_sexp_value
= "v0.10.0"
- timmy
-
timmy-jsoo
>= "1.1.5"
- timmy-lwt
-
toplevel_expect_test
= "v0.10.0"
Conflicts
None