Chris Willmore
22f2452909
Only allow labeled parameters with function type to claim trailing closures, as opposed to any unlabeled argument.
...
For real this time. Added some additional tests.
rdar://problem/18778670
Swift SVN r23094
2014-11-04 03:40:08 +00:00
Joe Pamer
fa692976f5
If an expression fails to type check, and there were no failures posted or constraints to mine for a reason, we can be fairly certain that the reason for the failure was a lack of contextual type data. In this case, we should post a diagnostic rather than let the failure slip through. This addresses crash suite scenarios 001, 005, 020 and 045. (rdar://problem/16712071, rdar://problem/17317691, rdar://problem/17317691)
...
You'll notice that emitting this diagnostic will make some already noisy closure-related errors slightly more so. This is unfortunate, but for the time-being it's better than crashing.
Swift SVN r21817
2014-09-09 23:58:59 +00:00
Joe Groff
ba15e5c835
Warn when a trailing closure is separated from its call site by more than one line.
...
Swift SVN r19325
2014-06-28 18:51:28 +00:00
Joe Groff
88f2632a44
Allow trailing closures with a line break before '{'.
...
Swift SVN r19322
2014-06-28 05:12:48 +00:00
Dave Abrahams
b7a8fc7d4c
Revert "Allow trailing closures with a line break before '{'."
...
This reverts r19315, which broke my build:
-- Testing: 1 tests, 1 threads --
FAIL: Swift :: Interpreter/arrays.swift (1 of 1)
******************** TEST 'Swift :: Interpreter/arrays.swift' FAILED ********************
Script:
--
rm -rf /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/test/Interpreter/Output/arrays.swift.tmp && mkdir -p /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/test/Interpreter/Output/arrays.swift.tmp && xcrun -sdk macosx10.10 /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/bin/swift -target x86_64-apple-macosx10.9 -resource-dir '/Users/dave/build/swift/Ninja-RelWithDebInfo/swift/lib/swift' -module-cache-path /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/swift-module-cache -module-cache-path /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/test/Interpreter/Output/arrays.swift.tmp/clang-module-cache /Users/dave/src/s/swift/test/Interpreter/arrays.swift -o /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/test/Interpreter/Output/arrays.swift.tmp/a.out && /Users/dave/build/swift/Ninja-RelWithDebInfo/swift/test/Interpreter/Output/arrays.swift.tmp/a.out | FileCheck /Users/dave/src/s/swift/test/Interpreter/arrays.swift
--
Exit Code: 1
Command Output (stderr):
--
/Users/dave/src/s/swift/test/Interpreter/arrays.swift:54:1: error: invalid use of '()' to call a value of non-function type '()'
println()
^
Swift SVN r19317
2014-06-28 01:51:45 +00:00
Joe Groff
0c9fc15ae1
Allow trailing closures with a line break before '{'.
...
Swift SVN r19315
2014-06-28 00:36:45 +00:00
Ted Kremenek
fad874708e
Adjust test cases.
...
Swift SVN r17964
2014-05-12 22:01:52 +00:00
Chris Lattner
d05205ba8b
move trailing closure tests into the expr/closures directory instead of being
...
in its own test dir. NFC.
Swift SVN r15017
2014-03-14 00:30:43 +00:00