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
6dba99c6
Commit
6dba99c6
authored
3 years ago
by
Maxime Jacquemin
Committed by
David Bühler
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] Using filename and line as id in Eva component
parent
dc8a9ae1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ivette/src/frama-c/plugins/eva/valueinfos.tsx
+5
-4
5 additions, 4 deletions
ivette/src/frama-c/plugins/eva/valueinfos.tsx
with
5 additions
and
4 deletions
ivette/src/frama-c/plugins/eva/valueinfos.tsx
+
5
−
4
View file @
6dba99c6
...
...
@@ -33,6 +33,7 @@ import * as States from 'frama-c/states';
import
*
as
Ast
from
'
frama-c/api/kernel/ast
'
;
import
{
readFile
}
from
'
dome/system
'
;
import
*
as
Dome
from
'
dome
'
;
import
*
as
Path
from
'
path
'
;
// Locals
import
{
EvaAlarm
}
from
'
./cells
'
;
...
...
@@ -57,22 +58,22 @@ interface StmtProps {
}
export
function
Stmt
(
props
:
StmtProps
)
{
const
{
rank
,
stmt
,
fct
,
marker
}
=
props
;
const
{
rank
,
stmt
,
marker
}
=
props
;
const
markersInfo
=
States
.
useSyncArray
(
Ast
.
markerInfo
);
const
line
=
markersInfo
.
getData
(
marker
)?.
sloc
?.
line
;
const
file
=
markersInfo
.
getData
(
marker
)?.
sloc
?.
file
;
const
filename
=
file
?
Path
.
parse
(
file
).
base
:
''
;
const
errorMsg
=
()
=>
{
D
.
error
(
`Fail to load source code file
${
file
}
`
);
};
const
onError
=
()
=>
{
if
(
file
)
errorMsg
();
return
''
;
};
const
read
=
()
=>
(
file
?
readFile
(
file
).
catch
(
onError
)
:
Promise
.
reject
());
const
text
=
React
.
useMemo
(
read
,
[
file
,
onError
]);
const
{
result
}
=
Dome
.
usePromise
(
text
);
const
allLines
=
result
?.
split
(
/
\r\n
|
\n
/
);
const
title
=
allLines
?
(
line
?
`
Stmt:
${
allLines
[
line
-
1
]}
`
:
''
)
:
''
;
const
title
=
allLines
?
(
line
?
`
${
allLines
[
line
-
1
]}
`
:
''
)
:
''
;
if
(
rank
===
undefined
||
!
stmt
)
return
null
;
// const title = `Stmt at global rank ${rank} (internal id: ${stmt})`;
return
(
<
span
className
=
"dome-text-cell eva-stmt"
title
=
{
title
}
>
@
{
f
ct
}
:
{
line
}
@
{
f
ilename
}
:
{
line
}
</
span
>
);
}
...
...
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