Commit 45c45a94 authored by gsamain's avatar gsamain Committed by Xavier Thompson

Cpp: Rework the symtab logic for C++ methods in Scope.declare

parent 51504963
...@@ -476,16 +476,21 @@ class Scope(object): ...@@ -476,16 +476,21 @@ class Scope(object):
warning(pos, "'%s' is a reserved name in C." % cname, -1) warning(pos, "'%s' is a reserved name in C." % cname, -1)
entries = self.entries entries = self.entries
old_index = -1
if name and name in entries and not shadow: if name and name in entries and not shadow:
old_entry = entries[name] old_entry = entries[name]
# Reject redeclared C++ functions only if they have the same type signature. # Reject redeclared C++ functions only if they have the same type signature.
cpp_override_allowed = False cpp_override_allowed = False
if type.is_cfunction and old_entry.type.is_cfunction and self.is_cpp(): if type.is_cfunction and old_entry.type.is_cfunction and self.is_cpp_class_scope:
for alt_entry in old_entry.all_alternatives(): for index, alt_entry in enumerate(old_entry.all_alternatives()):
if type == alt_entry.type: if type.compatible_signature_with(alt_entry.type):
if name == '<init>' and not type.args: if name == '<init>' and not type.args:
# Cython pre-declares the no-args constructor - allow later user definitions. # Cython pre-declares the no-args constructor - allow later user definitions.
old_index = index
cpp_override_allowed = True
elif alt_entry.is_inherited:
old_index = index
cpp_override_allowed = True cpp_override_allowed = True
break break
else: else:
...@@ -509,11 +514,17 @@ class Scope(object): ...@@ -509,11 +514,17 @@ class Scope(object):
entry.create_wrapper = create_wrapper entry.create_wrapper = create_wrapper
if name: if name:
entry.qualified_name = self.qualify_name(name) entry.qualified_name = self.qualify_name(name)
# if name in entries and self.is_cpp():
# entries[name].overloaded_alternatives.append(entry)
# else:
# entries[name] = entry
if not shadow: if not shadow:
if name in entries and self.is_cpp_class_scope and type.is_cfunction:
if old_index > -1:
if old_index > 0:
entries[name].overloaded_alternatives[old_index-1] = entry
else:
entry.overloaded_alternatives = entries[name].overloaded_alternatives
entries[name] = entry
else:
entries[name].overloaded_alternatives.append(entry)
else:
entries[name] = entry entries[name] = entry
if type.is_memoryviewslice: if type.is_memoryviewslice:
...@@ -2564,8 +2575,8 @@ class CppClassScope(Scope): ...@@ -2564,8 +2575,8 @@ class CppClassScope(Scope):
entry = self.declare_var(name, type, pos, entry = self.declare_var(name, type, pos,
defining=defining, defining=defining,
cname=cname, visibility=visibility) cname=cname, visibility=visibility)
if prev_entry and not defining: #if prev_entry and not defining:
entry.overloaded_alternatives = prev_entry.all_alternatives() # entry.overloaded_alternatives = prev_entry.all_alternatives()
entry.utility_code = utility_code entry.utility_code = utility_code
type.entry = entry type.entry = entry
return entry return entry
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment