Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
why3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Why3
why3
Commits
a3c3ddfc
Commit
a3c3ddfc
authored
8 years ago
by
Jean-Christophe Filliâtre
Browse files
Options
Downloads
Patches
Plain Diff
*_node types do not need to be private
parent
950394f1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/term.mli
+2
-2
2 additions, 2 deletions
src/core/term.mli
src/mlw/expr.mli
+2
-2
2 additions, 2 deletions
src/mlw/expr.mli
with
4 additions
and
4 deletions
src/core/term.mli
+
2
−
2
View file @
a3c3ddfc
...
@@ -76,7 +76,7 @@ type pattern = private {
...
@@ -76,7 +76,7 @@ type pattern = private {
pat_ty
:
ty
;
pat_ty
:
ty
;
}
}
and
pattern_node
=
private
and
pattern_node
=
|
Pwild
|
Pwild
|
Pvar
of
vsymbol
|
Pvar
of
vsymbol
|
Papp
of
lsymbol
*
pattern
list
|
Papp
of
lsymbol
*
pattern
list
...
@@ -117,7 +117,7 @@ type term = private {
...
@@ -117,7 +117,7 @@ type term = private {
t_loc
:
Loc
.
position
option
;
t_loc
:
Loc
.
position
option
;
}
}
and
term_node
=
private
and
term_node
=
|
Tvar
of
vsymbol
|
Tvar
of
vsymbol
|
Tconst
of
Number
.
constant
|
Tconst
of
Number
.
constant
|
Tapp
of
lsymbol
*
term
list
|
Tapp
of
lsymbol
*
term
list
...
...
This diff is collapsed.
Click to expand it.
src/mlw/expr.mli
+
2
−
2
View file @
a3c3ddfc
...
@@ -114,7 +114,7 @@ type expr = private {
...
@@ -114,7 +114,7 @@ type expr = private {
e_loc
:
Loc
.
position
option
;
e_loc
:
Loc
.
position
option
;
}
}
and
expr_node
=
private
and
expr_node
=
|
Evar
of
pvsymbol
|
Evar
of
pvsymbol
|
Econst
of
Number
.
constant
|
Econst
of
Number
.
constant
|
Eexec
of
cexp
*
cty
|
Eexec
of
cexp
*
cty
...
@@ -136,7 +136,7 @@ and cexp = private {
...
@@ -136,7 +136,7 @@ and cexp = private {
c_cty
:
cty
;
c_cty
:
cty
;
}
}
and
cexp_node
=
private
and
cexp_node
=
|
Capp
of
rsymbol
*
pvsymbol
list
|
Capp
of
rsymbol
*
pvsymbol
list
|
Cpur
of
lsymbol
*
pvsymbol
list
|
Cpur
of
lsymbol
*
pvsymbol
list
|
Cfun
of
expr
|
Cfun
of
expr
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment