summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m103
1 files changed, 0 insertions, 103 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m
deleted file mode 100644
index e423c05a..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m
+++ /dev/null
@@ -1,103 +0,0 @@
-mapToPtr(^(const LeftAddOn::Props &addOnProps) {
- FSTheme *const theme = AK::getTheme();
-});
-
-mapToPtr( x, ^ (const Props &addOnProps) {
- FSTheme *const theme = AK::getTheme();
-});
-
-mapToPtr( ^ (const Props &addOnProps) {
- FSTheme *const theme = AK::getTheme();
-});
-
-mapToPtr(
- arg1, ^ ( NSString * ) (const Props &addOnProps) {
- FSTheme *const theme = AK::getTheme();
-}, arg2
- );
-
-mapToPtr(arg1, ^ ( NSString *) (const Props &addOnProps) {
- FSTheme *const theme = AK::getTheme();
-});
-
-mapToPtr( ^()(const Props &addOnProps) {
- FSTheme *const theme = AK::getTheme();
-}, arg2);
-
-
-
-methodCall(^{
- variant.action.send(Cmpnt);
-});
-
-methodCall(
- ^{
- variant.action.send(Cmpnt);
-}, x);
-
-
-methodCall( x, ^id (Cmpnt *c) {
- NSLog(@"Something");
-});
-
-methodCall( ^id (Cmpnt *c) {
- NSLog(@"Something");
-});
-
-methodCall( ^(Cmpnt *c) {
- NSLog(@"Something");
-});
-
-methodCall(
- ^ (Cmpnt *c) {
- NSLog(@"Something");
-}, y);
-
-methodCall(
- x, ^(Cmpnt *c) {
- NSLog(@"Something");
-}, y
- );
-
-
-methodCall(
- arg1,
- arg2,
- arg3
- );
-
-methodCall(arg1, arg2, arg3);
-
-methodCall(
- arg1,
- arg2, {
- .x = 10,
-}
- );
-
-methodCall(
- arg1, {
- .x = 10,
-},
- arg2
- );
-
-methodCall({
- .x = 10,
-},
- arg2);
-
-
-outerMethodCall(
- methodCall(^{
- // action
-},
- x)
- );
-
-outerMethodCall(
- methodCall(^{
- variant.action.send(Cmpnt);
-},
- x)
- );