summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.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.78.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m103
1 files changed, 103 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m
new file mode 100644
index 00000000..5c07ea43
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/oc/50630-nl_func_call_args_multi_line_ignore_closures.m
@@ -0,0 +1,103 @@
+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)
+ );