mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Stop creating ImplicitlyUnwrappedOptional<T> so that we can remove it
from the type system.
Enable the code that generates disjunctions for Optional<T> and
rewrites expressions based on the original declared type being 'T!'.
Most of the changes supporting this were previously merged to master,
but some things were difficult to merge to master without actually
removing IUOs from the type system:
- Dynamic member lookup and dynamic subscripting
- Changes to ensure the bridging peephole still works
Past commits have attempted to retain as much fidelity with how we
were printing things as possible. There are some cases where we still
are not printing things the same way:
- In diagnostics we will print '?' rather than '!'
- Some SourceKit and Code Completion output where we print a Type
rather than Decl.
Things like module printing via swift-ide-test attempt to print '!'
any place that we now have Optional types that were declared as IUOs.
There are some diagnostics regressions related to the fact that we can
no longer "look through" IUOs. For the same reason some output and
functionality changes in Code Completion. I have an idea of how we can
restore these, and have opened a bug to investigate doing so.
There are some small source compatibility breaks that result from
this change:
- Results of dynamic lookup that are themselves declared IUO can in
rare circumstances be inferred differently. This shows up in
test/ClangImporter/objc_parse.swift, where we have
var optStr = obj.nsstringProperty
Rather than inferring optStr to be 'String!?', we now infer this to
be 'String??', which is in line with the expectations of SE-0054.
The fact that we were only inferring the outermost IUO to be an
Optional in Swift 4 was a result of the incomplete implementation of
SE-0054 as opposed to a particular design. This should rarely cause
problems since in the common-case of actually using the property rather
than just assigning it to a value with inferred type, we will behave
the same way.
- Overloading functions with inout parameters strictly by a difference
in optionality (i.e. Optional<T> vs. ImplicitlyUnwrappedOptional<T>)
will result in an error rather than the diagnostic that was added
in Swift 4.1.
- Any place where '!' was being used where it wasn't supposed to be
allowed by SE-0054 will now treat the '!' as if it were '?'.
Swift 4.1 generates warnings for these saying that putting '!'
in that location is deprecated. These locations include for example
typealiases or any place where '!' is nested in another type like
`Int!?` or `[Int!]`.
This commit effectively means ImplicitlyUnwrappedOptional<T> is no
longer part of the type system, although I haven't actually removed
all of the code dealing with it yet.
ImplicitlyUnwrappedOptional<T> is is dead, long live implicitly
unwrapped Optional<T>!
Resolves rdar://problem/33272674.
36 lines
1.1 KiB
Swift
36 lines
1.1 KiB
Swift
// RUN: %target-run-simple-swift | %FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
// Dynamic subscripting of NSArray, dynamic method dispatch
|
|
// CHECK: Optional("3")
|
|
var array : AnyObject = [1, 2, 3, 4, 5] as NSArray
|
|
print((array[2] as AnyObject).description)
|
|
|
|
// Dynamic subscripting on an array using an object (fails)
|
|
// CHECK: NSArray subscript with an object fails
|
|
var optVal1 = array["Hello" as NSString]
|
|
if optVal1 != nil {
|
|
print(((optVal1!)! as AnyObject).description)
|
|
} else {
|
|
print("NSArray subscript with an object fails")
|
|
}
|
|
|
|
// Dynamic subscripting of NSDictionary, dynamic method dispatch
|
|
// CHECK: Optional("2")
|
|
var nsdict : NSDictionary = ["Hello" : 1, "World" : 2]
|
|
var dict : AnyObject = nsdict
|
|
print(((dict["World" as NSString]!)! as AnyObject).description)
|
|
|
|
// Dynamic subscripting on a dictionary using an index (fails)
|
|
// CHECK: NSDictionary subscript with an index fails
|
|
var optVal2 = dict[1]
|
|
if optVal2 != nil {
|
|
print((optVal2! as AnyObject).description)
|
|
} else {
|
|
print("NSDictionary subscript with an index fails")
|
|
}
|