rspec/rules/S3630/swift/rule.adoc

47 lines
899 B
Plaintext
Raw Normal View History

== Why is this an issue?
2021-01-27 13:42:22 +01:00
Because force casting (``++as!++``) does not perform any type safety validations, it is capable of performing dangerous conversions between unrelated types. When the types are truly unrelated, the cast will cause a system crash.
2020-06-30 12:48:39 +02:00
=== Noncompliant code example
2020-06-30 12:48:39 +02:00
2022-02-04 17:28:24 +01:00
[source,swift]
2020-06-30 12:48:39 +02:00
----
foo as! MyClass // Noncompliant
----
=== Compliant solution
2020-06-30 12:48:39 +02:00
2022-02-04 17:28:24 +01:00
[source,swift]
2020-06-30 12:48:39 +02:00
----
foo as? MyClass
----
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Replace this force cast with a safer cast.
=== Highlighting
``++as!++``
'''
== Comments And Links
(visible only on this page)
=== on 8 Jul 2016, 20:30:55 Ann Campbell wrote:
http://stackoverflow.com/questions/25708649/downcasting-optionals-in-swift-as-type-or-as-type
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]