1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 19:23:54 +02:00

tests/function/repl: Characterise the missing doc comment behavior

This commit is contained in:
Robert Hensing 2024-07-15 14:27:09 +02:00
parent 71cb8bf509
commit 8a855296f5
9 changed files with 83 additions and 31 deletions

View file

@ -17,6 +17,7 @@
compact=/**boom*/x: x;
# https://github.com/NixOS/rfcs/blob/master/rfcs/0145-doc-strings.md#ambiguous-placement
/** Ignore!!! */
unambiguous =
/** Very close */
@ -41,17 +42,19 @@
# TODO
# /** This returns a documented function. */
# documentedArgs =
# /** x */
# x:
# /** y */
# y:
# /** x + y */
# x + y;
/** You won't see this. */
curriedArgs =
/** A documented function. */
x:
/** The function returned by applying once */
y:
/** A function body performing summation of two items */
x + y;
# /** Documented formals */
# documentedFormals =
# /** x */
# x: x;
/** Documented formals (but you won't see this comment) */
documentedFormals =
/** Finds x */
{ /** The x attribute */
x
}: x;
}