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
a05dfc80
Commit
a05dfc80
authored
2 years ago
by
Maxime Jacquemin
Browse files
Options
Downloads
Patches
Plain Diff
[Ivette] Linter, again
parent
21f44fb1
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
ivette/src/dome/renderer/text/editor.tsx
+1
-1
1 addition, 1 deletion
ivette/src/dome/renderer/text/editor.tsx
ivette/src/frama-c/kernel/SourceCode.tsx
+4
-4
4 additions, 4 deletions
ivette/src/frama-c/kernel/SourceCode.tsx
with
5 additions
and
5 deletions
ivette/src/dome/renderer/text/editor.tsx
+
1
−
1
View file @
a05dfc80
...
@@ -370,7 +370,7 @@ export function selectLine(view: View, line: number, atTop: boolean): void {
...
@@ -370,7 +370,7 @@ export function selectLine(view: View, line: number, atTop: boolean): void {
const
{
from
:
goto
}
=
doc
.
line
(
Math
.
max
(
line
,
1
));
const
{
from
:
goto
}
=
doc
.
line
(
Math
.
max
(
line
,
1
));
if
(
here
===
goto
)
return
;
if
(
here
===
goto
)
return
;
view
.
dispatch
({
selection
:
{
anchor
:
goto
},
scrollIntoView
:
true
});
view
.
dispatch
({
selection
:
{
anchor
:
goto
},
scrollIntoView
:
true
});
if
(
!
atTop
)
return
if
(
!
atTop
)
return
;
const
effects
=
EditorView
.
scrollIntoView
(
goto
,
{
y
:
'
start
'
,
yMargin
:
0
});
const
effects
=
EditorView
.
scrollIntoView
(
goto
,
{
y
:
'
start
'
,
yMargin
:
0
});
view
.
dispatch
({
effects
});
view
.
dispatch
({
effects
});
}
}
...
...
This diff is collapsed.
Click to expand it.
ivette/src/frama-c/kernel/SourceCode.tsx
+
4
−
4
View file @
a05dfc80
...
@@ -165,13 +165,13 @@ const extensions: Editor.Extension[] = [
...
@@ -165,13 +165,13 @@ const extensions: Editor.Extension[] = [
EventsHandler
,
EventsHandler
,
];
];
function
m
arkerLocation
(
m
:
Ast
.
marker
|
undefined
):
Ast
.
source
|
undefined
{
function
useM
arkerLocation
(
m
:
Ast
.
marker
|
undefined
):
Ast
.
source
|
undefined
{
const
markersInfo
=
States
.
useSyncArray
(
Ast
.
markerInfo
);
const
markersInfo
=
States
.
useSyncArray
(
Ast
.
markerInfo
);
if
(
m
===
undefined
||
m
===
''
)
return
undefined
;
if
(
m
===
undefined
||
m
===
''
)
return
undefined
;
return
markersInfo
.
getData
(
m
)?.
sloc
;
return
markersInfo
.
getData
(
m
)?.
sloc
;
}
}
function
f
unctionLocation
(
fct
:
string
|
undefined
):
Ast
.
source
|
undefined
{
function
useF
unctionLocation
(
fct
:
string
|
undefined
):
Ast
.
source
|
undefined
{
const
functionsData
=
States
.
useSyncArray
(
Ast
.
functions
).
getArray
();
const
functionsData
=
States
.
useSyncArray
(
Ast
.
functions
).
getArray
();
if
(
fct
===
undefined
||
fct
===
''
)
return
undefined
;
if
(
fct
===
undefined
||
fct
===
''
)
return
undefined
;
return
functionsData
.
find
((
e
)
=>
e
.
name
===
fct
)?.
sloc
;
return
functionsData
.
find
((
e
)
=>
e
.
name
===
fct
)?.
sloc
;
...
@@ -187,8 +187,8 @@ export default function SourceCode(): JSX.Element {
...
@@ -187,8 +187,8 @@ export default function SourceCode(): JSX.Element {
const
fct
=
selection
?.
current
?.
fct
;
const
fct
=
selection
?.
current
?.
fct
;
const
displayedFct
=
React
.
useRef
<
string
|
undefined
>
(
undefined
);
const
displayedFct
=
React
.
useRef
<
string
|
undefined
>
(
undefined
);
const
markerSloc
=
m
arkerLocation
(
marker
);
const
markerSloc
=
useM
arkerLocation
(
marker
);
const
fctSloc
=
f
unctionLocation
(
fct
);
const
fctSloc
=
useF
unctionLocation
(
fct
);
const
file
=
fctSloc
?.
file
??
''
;
const
file
=
fctSloc
?.
file
??
''
;
const
filename
=
Path
.
parse
(
file
).
base
;
const
filename
=
Path
.
parse
(
file
).
base
;
...
...
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