|
|
@ -405,23 +405,22 @@ def _explore_types(slither, result, target, convert, type, filename_source_code, |
|
|
|
|
|
|
|
|
|
|
|
if isinstance(type, MappingType): |
|
|
|
if isinstance(type, MappingType): |
|
|
|
# Mapping has three steps: |
|
|
|
# Mapping has three steps: |
|
|
|
# Convertir the "from" type |
|
|
|
# Convert the "from" type |
|
|
|
# Convertir the "to" type |
|
|
|
# Convert the "to" type |
|
|
|
# Convertir nested type in the "from" |
|
|
|
# Convert nested type in the "from" |
|
|
|
# Ex: mapping (mapping (badName => uint) => uint) |
|
|
|
# Ex: mapping (mapping (badName => uint) => uint) |
|
|
|
|
|
|
|
|
|
|
|
# Do the comparison twice, so we can factor together the re matching |
|
|
|
# Do the comparison twice, so we can factor together the re matching |
|
|
|
if isinstance(type.type_from, UserDefinedType) or target in [type.type_from, type.type_to]: |
|
|
|
if isinstance(type.type_from, UserDefinedType) or target in [type.type_from, type.type_to]: |
|
|
|
|
|
|
|
|
|
|
|
old_str = type.type.name |
|
|
|
|
|
|
|
new_str = convert(old_str) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
full_txt_start = start |
|
|
|
full_txt_start = start |
|
|
|
full_txt_end = end |
|
|
|
full_txt_end = end |
|
|
|
full_txt = slither.source_code[filename_source_code][full_txt_start:full_txt_end] |
|
|
|
full_txt = slither.source_code[filename_source_code][full_txt_start:full_txt_end] |
|
|
|
re_match = re.match(RE_MAPPING, full_txt) |
|
|
|
re_match = re.match(RE_MAPPING, full_txt) |
|
|
|
|
|
|
|
|
|
|
|
if type.type_from == target: |
|
|
|
if type.type_from == target: |
|
|
|
|
|
|
|
old_str = type.type_from.name |
|
|
|
|
|
|
|
new_str = convert(old_str) |
|
|
|
|
|
|
|
|
|
|
|
loc_start = start + re_match.start(1) |
|
|
|
loc_start = start + re_match.start(1) |
|
|
|
loc_end = loc_start + len(old_str) |
|
|
|
loc_end = loc_start + len(old_str) |
|
|
@ -435,6 +434,9 @@ def _explore_types(slither, result, target, convert, type, filename_source_code, |
|
|
|
|
|
|
|
|
|
|
|
if type.type_to == target: |
|
|
|
if type.type_to == target: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
old_str = type.type_to.name |
|
|
|
|
|
|
|
new_str = convert(old_str) |
|
|
|
|
|
|
|
|
|
|
|
loc_start = start + re_match.start(2) |
|
|
|
loc_start = start + re_match.start(2) |
|
|
|
loc_end = loc_start + len(old_str) |
|
|
|
loc_end = loc_start + len(old_str) |
|
|
|
|
|
|
|
|
|
|
|