Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Iris
Iris
Commits
8281c8ed
Commit
8281c8ed
authored
Nov 09, 2016
by
Robbert Krebbers
Browse files
Oops.
parent
857a0937
Pipeline
#2978
passed with stage
in 9 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
heap_lang/notation.v
View file @
8281c8ed
...
...
@@ -86,9 +86,9 @@ Notation "e1 ;; e2" := (LamV BAnon e2%E e1%E)
(* Shortcircuit Boolean connectives *)
Notation
"e1 && e2"
:
=
(
If
e1
%
E
e2
%
E
(
Lit
(
LitBool
false
)))
(
parsing
only
)
:
expr_scope
.
(
If
e1
%
E
e2
%
E
(
Lit
(
LitBool
false
)))
(
only
parsing
)
:
expr_scope
.
Notation
"e1 || e2"
:
=
(
If
e1
%
E
(
Lit
(
LitBool
true
))
e2
%
E
)
(
parsing
only
)
:
expr_scope
.
(
If
e1
%
E
(
Lit
(
LitBool
true
))
e2
%
E
)
(
only
parsing
)
:
expr_scope
.
(** Notations for option *)
Notation
NONE
:
=
(
InjL
#()).
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment