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
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Charles Southerland
frama-c
Commits
0c9de4f1
Commit
0c9de4f1
authored
5 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] ast scrolling to current marker
parent
dbf3613f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ivette/src/renderer/ASTview.js
+14
-9
14 additions, 9 deletions
ivette/src/renderer/ASTview.js
with
14 additions
and
9 deletions
ivette/src/renderer/ASTview.js
+
14
−
9
View file @
0c9de4f1
...
...
@@ -20,13 +20,12 @@ import 'codemirror/theme/ambiance.css' ;
// --- Rich Text Printer
// --------------------------------------------------------------------------
const
print
=
async
(
buffer
,
text
)
=>
{
const
print
=
(
buffer
,
text
)
=>
{
if
(
Array
.
isArray
(
text
))
{
const
tag
=
text
.
shift
();
if
(
tag
!==
''
)
buffer
.
openTextMarker
(
{
id
:
tag
}
);
for
(
const
k
in
text
)
await
print
(
buffer
,
text
[
k
]);
text
.
forEach
(
txt
=>
print
(
buffer
,
txt
));
if
(
tag
!==
''
)
buffer
.
closeTextMarker
();
}
else
if
(
typeof
(
text
)
===
'
string
'
)
...
...
@@ -51,16 +50,22 @@ const ASTview = () => {
if
(
theFunction
)
{
buffer
.
log
(
'
// Loading
'
,
theFunction
,
'
…
'
);
Server
.
sendGET
(
"
kernel.ast.printFunction
"
,
theFunction
)
.
then
(
data
=>
{
buffer
.
clear
();
if
(
!
data
)
buffer
.
log
(
'
// No code for function
'
,
theFunction
);
return
print
(
buffer
,
data
);
.
sendGET
(
"
kernel.ast.printFunction
"
,
theFunction
)
.
then
(
data
=>
{
buffer
.
clear
();
if
(
!
data
)
buffer
.
log
(
'
// No code for function
'
,
theFunction
);
print
(
buffer
,
data
);
if
(
theMarker
)
buffer
.
scroll
(
theMarker
);
});
}
},
[
theFunction
]
);
// Hook: scrolling
React
.
useEffect
(
()
=>
{
if
(
theMarker
)
buffer
.
scroll
(
theMarker
);
},
[
theMarker
]
);
// Callbacks
const
onSelection
=
marker
=>
setSelect
({
marker
});
...
...
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