-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from tlaplus/fix-lsp-use
LSP: Create proof step markers for USE statements involving facts.
- Loading branch information
Showing
2 changed files
with
84 additions
and
2 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
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 @@ | ||
---- MODULE test_use ---- | ||
op == TRUE | ||
USE DEF op | ||
USE TRUE | ||
USE FALSE | ||
HIDE TRUE | ||
THEOREM TRUE | ||
<1> USE TRUE | ||
<1> USE FALSE | ||
<1> HIDE TRUE | ||
<1> QED | ||
==== |