Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Commits
4b3e1caf
Commit
4b3e1caf
authored
3 years ago
by
Mateusz Klimaszewski
Browse files
Options
Downloads
Patches
Plain Diff
Handle double > cases.
parent
4eaad34d
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!37
Release 1.0.4.
,
!36
Release 1.0.4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
combo/utils/graph.py
+25
-7
25 additions, 7 deletions
combo/utils/graph.py
with
25 additions
and
7 deletions
combo/utils/graph.py
+
25
−
7
View file @
4b3e1caf
...
...
@@ -114,13 +114,31 @@ def restore_collapse_edges(tree_tokens):
head
,
relation
=
d
.
split
(
'
:
'
,
1
)
ehead
=
f
"
{
len
(
tree_tokens
)
}
.
{
len
(
empty_tokens
)
+
1
}
"
empty_node_relation
,
current_node_relation
=
relation
.
split
(
"
>
"
,
1
)
deps
[
i
]
=
f
"
{
ehead
}
:
{
current_node_relation
}
"
empty_tokens
.
append
(
{
"
id
"
:
ehead
,
"
deps
"
:
f
"
{
head
}
:
{
empty_node_relation
}
"
}
)
# Edge case, double >
if
"
>
"
in
current_node_relation
:
second_empty_node_relation
,
current_node_relation
=
current_node_relation
.
split
(
"
>
"
)
deps
[
i
]
=
f
"
{
ehead
}
:
{
current_node_relation
}
"
empty_tokens
.
append
(
{
"
id
"
:
ehead
,
"
deps
"
:
f
"
{
head
}
:
{
empty_node_relation
}
"
}
)
empty_tokens
.
append
(
{
"
id
"
:
f
"
{
len
(
tree_tokens
)
}
.
{
len
(
empty_tokens
)
+
1
}
"
,
"
deps
"
:
f
"
{
ehead
}
:
{
second_empty_node_relation
}
"
}
)
else
:
deps
[
i
]
=
f
"
{
ehead
}
:
{
current_node_relation
}
"
empty_tokens
.
append
(
{
"
id
"
:
ehead
,
"
deps
"
:
f
"
{
head
}
:
{
empty_node_relation
}
"
}
)
deps
=
sorted
([
d
.
split
(
"
:
"
,
1
)
for
d
in
deps
],
key
=
lambda
x
:
float
(
x
[
0
]))
token
[
"
deps
"
]
=
"
|
"
.
join
([
f
"
{
k
}
:
{
v
}
"
for
k
,
v
in
deps
])
return
empty_tokens
This diff is collapsed.
Click to expand it.
Preview
0%
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