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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
9f991a08
Commit
9f991a08
authored
Jul 13, 2020
by
Xavier Thompson
3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enforce cypclass method overriding rules
parent
7f109c83
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
101 deletions
+20
-101
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+20
-0
tests/run/cypclass_resolve_method_calls.pyx
tests/run/cypclass_resolve_method_calls.pyx
+0
-101
No files found.
Cython/Compiler/Nodes.py
View file @
9f991a08
...
@@ -1619,6 +1619,26 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
...
@@ -1619,6 +1619,26 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
func
.
template_declaration
=
"template <typename %s>"
%
", typename "
.
join
(
template_names
)
func
.
template_declaration
=
"template <typename %s>"
%
", typename "
.
join
(
template_names
)
self
.
body
=
StatListNode
(
self
.
pos
,
stats
=
defined_funcs
)
self
.
body
=
StatListNode
(
self
.
pos
,
stats
=
defined_funcs
)
# check that all overloaded alternatives for cypclass methods come from the same cypclass
if
self
.
cypclass
and
scope
is
not
None
:
for
method_entry
in
scope
.
entries
.
values
():
if
(
method_entry
.
is_cfunction
and
not
method_entry
.
type
.
is_static_method
and
method_entry
.
name
not
in
(
"<init>"
,
"<alloc>"
,
"<constructor>"
,
"<del>"
)):
from_type
=
method_entry
.
from_type
for
alternative
in
method_entry
.
all_alternatives
():
if
alternative
.
from_type
is
not
from_type
:
error
(
self
.
pos
,
(
"Cypclass %s's method %s comes from %s but method %s comes from %s
\
n
"
"Cypclass %s must either inherit all overload alternatives for %s from"
"the same base class or override all inherited alternatives itself"
)
%
(
self
.
name
,
str
(
method_entry
.
type
),
from_type
.
name
,
str
(
alternative
.
type
),
alternative
.
from_type
.
name
,
self
.
name
,
method_entry
.
name
)
)
# check for illegal implicit conversion paths between method arguments
# check for illegal implicit conversion paths between method arguments
if
self
.
cypclass
and
scope
is
not
None
:
if
self
.
cypclass
and
scope
is
not
None
:
for
method_entry
in
scope
.
entries
.
values
():
for
method_entry
in
scope
.
entries
.
values
():
...
...
tests/run/cypclass_resolve_method_calls.pyx
deleted
100644 → 0
View file @
7f109c83
# mode: run
# tag: cpp, cpp11, pthread
# cython: experimental_cpp_class_def=True, language_level=2
cdef
cypclass
A
:
int
foo
(
self
,
int
a
):
return
a
+
42
cdef
cypclass
B
(
A
):
int
foo
(
self
,
int
a
,
int
b
):
return
a
+
b
def
test_resolve_unhidden_method
():
"""
>>> test_resolve_unhidden_method()
43
"""
cdef
B
b
=
B
()
# should resolve to A.foo
return
b
.
foo
(
1
)
cdef
cypclass
C
:
int
a
__init__
(
self
,
int
a
):
self
.
a
=
a
C
foo
(
self
,
int
other
):
return
C
(
a
+
other
)
cdef
cypclass
D
(
C
):
int
b
__init__
(
self
,
int
b
):
self
.
b
=
10
+
b
D
foo
(
self
,
int
other
):
return
D
(
b
+
other
)
def
test_resolve_overriden_method
():
"""
>>> test_resolve_overriden_method()
21
"""
cdef
D
d1
=
D
(
0
)
# should not resolve to D.foo
cdef
D
d2
=
d1
.
foo
(
1
)
return
d2
.
b
cdef
cypclass
Left
:
int
foo
(
self
):
return
1
cdef
cypclass
Right
:
int
foo
(
self
):
return
2
cdef
cypclass
Derived
(
Left
,
Right
):
pass
def
test_resolve_multiple_inherited_methods
():
"""
>>> test_resolve_multiple_inherited_methods()
1
"""
cdef
Derived
d
=
Derived
()
# should resolve to Left.foo
cdef
int
r
=
d
.
foo
()
return
r
cdef
cypclass
Top
:
int
foo
(
self
,
int
a
,
int
b
):
return
1
cdef
cypclass
Middle
(
Top
):
int
foo
(
self
):
return
2
cdef
cypclass
Bottom
(
Middle
):
int
foo
(
self
,
int
a
):
return
a
+
10
def
test_inherited_overloaded_method
():
"""
>>> test_inherited_overloaded_method()
2
"""
cdef
Bottom
b
=
Bottom
()
# should resolve to Middle.foo
cdef
int
r
=
b
.
foo
()
return
r
Xavier Thompson
@xavier_thompson
mentioned in commit
6d8b8f74
·
Aug 18, 2020
mentioned in commit
6d8b8f74
mentioned in commit 6d8b8f74eec06c42cbce7fe1b6c55c00ea1d6bf2
Toggle commit list
Xavier Thompson
@xavier_thompson
mentioned in commit
f46cafa4
·
Aug 18, 2020
mentioned in commit
f46cafa4
mentioned in commit f46cafa4404a35fc140dd8985c4571c86e7f17b9
Toggle commit list
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