Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
4a782b94
Commit
4a782b94
authored
7 years ago
by
François Bobot
Committed by
David Bühler
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] puts the documentations in the .mli
which was already present...
parent
16d2d159
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/plugins/value/eval.ml
+0
-3
0 additions, 3 deletions
src/plugins/value/eval.ml
src/plugins/value/eval.mli
+3
-1
3 additions, 1 deletion
src/plugins/value/eval.mli
with
3 additions
and
4 deletions
src/plugins/value/eval.ml
+
0
−
3
View file @
4a782b94
...
@@ -240,9 +240,6 @@ type ('loc, 'value) call = {
...
@@ -240,9 +240,6 @@ type ('loc, 'value) call = {
arguments
:
(
'
loc
,
'
value
)
argument
list
;
arguments
:
(
'
loc
,
'
value
)
argument
list
;
rest
:
(
exp
*
(
'
loc
,
'
value
)
assigned
)
list
;
rest
:
(
exp
*
(
'
loc
,
'
value
)
assigned
)
list
;
return
:
varinfo
option
;
return
:
varinfo
option
;
(** Special variable (same for all calls) that makes the
link between the result of the function and the assignment in
the caller. *)
recursive
:
bool
;
recursive
:
bool
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/plugins/value/eval.mli
+
3
−
1
View file @
4a782b94
...
@@ -214,7 +214,9 @@ type ('loc, 'value) call = {
...
@@ -214,7 +214,9 @@ type ('loc, 'value) call = {
arguments
:
(
'
loc
,
'
value
)
argument
list
;
(** The arguments of the call. *)
arguments
:
(
'
loc
,
'
value
)
argument
list
;
(** The arguments of the call. *)
rest
:
(
exp
*
(
'
loc
,
'
value
)
assigned
)
list
;
(** Extra-arguments. *)
rest
:
(
exp
*
(
'
loc
,
'
value
)
assigned
)
list
;
(** Extra-arguments. *)
return
:
varinfo
option
;
(** Fake varinfo to store the
return
:
varinfo
option
;
(** Fake varinfo to store the
return value of the call. *)
return value of the call.
Same varinfo for every
call to a function. *)
recursive
:
bool
;
recursive
:
bool
;
}
}
...
...
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