Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
ac4cbf02
Commit
ac4cbf02
authored
Jul 24, 2016
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pass relevant scopes into _save_annotation_body() in AnnotationCCodeWriter
parent
b319d71b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Cython/Compiler/Annotate.py
Cython/Compiler/Annotate.py
+3
-2
No files found.
Cython/Compiler/Annotate.py
View file @
ac4cbf02
...
...
@@ -175,10 +175,11 @@ class AnnotationCCodeWriter(CCodeWriter):
else
:
coverage_timestamp
=
covered_lines
=
None
annotation_items
=
dict
(
self
.
annotations
[
source_filename
])
scopes
=
dict
(
self
.
scopes
[
source_filename
])
outlist
=
[]
outlist
.
extend
(
self
.
_save_annotation_header
(
c_file
,
source_filename
,
coverage_timestamp
))
outlist
.
extend
(
self
.
_save_annotation_body
(
code
,
generated_code
,
annotation_items
,
covered_lines
))
outlist
.
extend
(
self
.
_save_annotation_body
(
code
,
generated_code
,
annotation_items
,
scopes
,
covered_lines
))
outlist
.
extend
(
self
.
_save_annotation_footer
())
return
''
.
join
(
outlist
)
...
...
@@ -214,7 +215,7 @@ class AnnotationCCodeWriter(CCodeWriter):
HtmlFormatter
(
nowrap
=
True
))
return
html_code
def
_save_annotation_body
(
self
,
cython_code
,
generated_code
,
annotation_items
,
covered_lines
=
None
):
def
_save_annotation_body
(
self
,
cython_code
,
generated_code
,
annotation_items
,
scopes
,
covered_lines
=
None
):
outlist
=
[
u'<div class="cython">'
]
pos_comment_marker
=
u'/*
\
N{HORIZONTAL ELLIPSIS}
*/
\
n
'
new_calls_map
=
dict
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment