Skip to content

Commit 4297ca4

Browse files
Update 1wf_01_debugging.md
In the debugging page, some examples regarding print debugging were added, and a link to the stdlib documentation
1 parent cbcb7a7 commit 4297ca4

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

data/tutorials/guides/1wf_01_debugging.md

+27
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,33 @@ purpose formats are more suited to get the relevant information, than what can
161161
be output automatically by the generic pretty-printer used by the trace
162162
mechanism.
163163

164+
Print debugging is assisted by compiler builtins that allow a printed error
165+
message to refer to the program location that the error was raised from.
166+
For example,
167+
```ocaml
168+
match Message.unpack response with
169+
| Some y -> y
170+
| None -> Printf.printf "Invalid message at %s" __LOC__; flush stdout;
171+
raise Invalid_argument
172+
```
173+
The compiler builtin `__LOC__` is substituted at compile time with the
174+
location it occurs in the program, described as a string
175+
"File %S, line %d, characters %d-%d".
176+
One can also get the file name, line number, start character and
177+
end character directly through the __POS__ builtin:
178+
```ocaml
179+
match Message.unpack response with
180+
| Some y -> y
181+
| None ->
182+
let fname, lnum, _cstart, _cend = __POS__ in
183+
Printf.printf "At line %d in file %s, an incorrect response was passed to Message.unpack"
184+
lnum fname;
185+
flush stdout; raise Invalid_argument
186+
```
187+
188+
Documentation for all debugging compiler builtins is in the
189+
[standard library documentation](https://ocaml.org/manual/5.2/api/Stdlib.html#1_Debugging).
190+
164191
## The OCaml Debugger
165192

166193
We now give a quick tutorial for the OCaml debugger (`ocamldebug`). Before

0 commit comments

Comments
 (0)