From f9367194e99dde0b3eb66c9ad75d3475346e7e1c Mon Sep 17 00:00:00 2001 From: favonia Date: Wed, 27 Sep 2023 03:56:11 +0000 Subject: [PATCH] deploy: 9ef07f6071075a2b6097abd35f74c2f0d29b2b3c --- asai/Asai/Tty/Make/index.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/asai/Asai/Tty/Make/index.html b/asai/Asai/Tty/Make/index.html index 3448520..9e07300 100644 --- a/asai/Asai/Tty/Make/index.html +++ b/asai/Asai/Tty/Make/index.html @@ -8,7 +8,11 @@ 21 │ noooooooooooooooooo ┷ [E002] Why am I checking the term (→ ℕ (→ ℕ ℕ)), - which looks amazing?

Parameters

Signature

val display : ?show_backtrace:bool -> Code.t Diagnostic.t -> unit

display d prints the diagnostic d to the standard output, using terminal control characters for formatting. A message will look like this:

    🭁 examples/stlc/example1.lambda
+        which looks amazing?

Parameters

Signature

val display : + ?show_backtrace:bool -> + ?tab_size:int -> + Code.t Diagnostic.t -> + unit

display d prints the diagnostic d to the standard output, using terminal control characters for formatting. A message will look like this:

    🭁 examples/stlc/example1.lambda
     │
   1 │ (check (λ ä (λ 123
   2 │   sdaf)) (→ ℕ (→ ℕ ℕ)))
@@ -27,4 +31,4 @@
     🭁 examples/stlc/example3.lambda
     │
   8 │ assert (asai is cool)
-    ┷
  • parameter show_backtrace

    Whether the backtrace should be shown. The default is false.

val interactive_trace : Code.t Diagnostic.t -> unit

interactive_trace d drops the user in a small interactive terminal app where they can cycle through the message provided in d and its backtrace.

\ No newline at end of file + ┷
  • parameter show_backtrace

    Whether the backtrace should be shown. The default is false.

  • parameter tab_size

    The width of a horizontal tab on screen (in terms of the number of space characters that replace it).

val interactive_trace : ?tab_size:int -> Code.t Diagnostic.t -> unit

interactive_trace d drops the user in a small interactive terminal app where they can cycle through the message provided in d and its backtrace.

  • parameter tab_size

    The width of a horizontal tab on screen (in terms of the number of space characters that replace it).

\ No newline at end of file