-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a transcript showing that #5076 was fixed
Some handling of blocks without final newlines was improved in the course of this PR. Fixes #5076.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```ucm:hide | ||
scratch/main> builtins.mergeio | ||
``` | ||
|
||
Nested call to code lexer wasn’t terminating inline examples containing blocks properly. | ||
|
||
```unison | ||
x = {{ | ||
``let "me"`` live | ||
``do "me"`` in | ||
}} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Nested call to code lexer wasn’t terminating inline examples containing blocks properly. | ||
|
||
``` unison | ||
x = {{ | ||
``let "me"`` live | ||
``do "me"`` in | ||
}} | ||
``` | ||
|
||
``` ucm | ||
Loading changes detected in scratch.u. | ||
I found and typechecked these definitions in scratch.u. If you | ||
do an `add` or `update`, here's how your codebase would | ||
change: | ||
⍟ These new definitions are ok to `add`: | ||
x : Doc2 | ||
``` |