|
@@ -76,6 +76,7 @@ class SlitherCore(Context): # pylint: disable=too-many-instance-attributes,too-
|
|
|
|
|
|
# If set to true, slither will not catch errors during parsing
|
|
|
self._disallow_partial: bool = False
|
|
|
+ self._skip_assembly: bool = False
|
|
|
|
|
|
###################################################################################
|
|
|
###################################################################################
|
|
@@ -390,6 +391,10 @@ class SlitherCore(Context): # pylint: disable=too-many-instance-attributes,too-
|
|
|
"""
|
|
|
return self._disallow_partial
|
|
|
|
|
|
+ @property
|
|
|
+ def skip_assembly(self) -> bool:
|
|
|
+ return self._skip_assembly
|
|
|
+
|
|
|
# endregion
|
|
|
###################################################################################
|
|
|
###################################################################################
|