summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-12-04 19:16:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-12-04 19:38:30 +0900
commitfdcd72088371b3d8dfd31f2a5159861ce0be5535 (patch)
tree06c160cc34157344f62b6c19af297858a0e57157 /debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m
parenta5d7db3b2c6171ea9e76b84155d2dfb66c243e5a (diff)
downloadextra-dependencies-fdcd72088371b3d8dfd31f2a5159861ce0be5535.tar.gz
extra-dependencies-fdcd72088371b3d8dfd31f2a5159861ce0be5535.zip
uncrustify-trinity: updated based on upstream version 0.76.0
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m102
1 files changed, 102 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m b/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m
new file mode 100644
index 00000000..ff979acf
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/indent-inside-ternary-operator.m
@@ -0,0 +1,102 @@
+flag
+ ? [Cmpnt Cmpnt:(isChildActionSheet ? TypeBack : TypeCancel)]
+ : nil;
+
+
+[[BottomSheetItem alloc]
+ iconName:selected
+ ? g.re
+ .at
+ : g
+ .re
+ .at
+ builder:nil
+ handler:^{
+ }
+]
+
+
+[[BottomSheetItem alloc]
+ iconName:selected
+ ? iconName : g
+ .re
+ .at
+ builder:nil
+ handler:^{
+ }
+]
+
+(event
+ ? [FSBottomSheetActionCellItemVariant
+ action:AKAction<> :: actionFromSenderlessBlock(^{
+ auto const strongSelf = weakSelf;
+})]
+ : nil);
+
+
+[[ViewController alloc] strategy: (strategy
+ ? [QuestionMarkStmt new]
+ : [ColonStmt new])
+toolbox: _one];
+
+[[ViewController alloc] strategy: (strategy
+ ?: [SourceStrategy new])
+toolbox: _two];
+
+
+
+flag1
+? ( flag2
+ ? ( flag3
+ ? [ViewController selector1:^{
+ NSLog(@"selector1");
+}]
+ : [ViewController selector2:^(){
+ NSLog(@"selector2");
+}] )
+ : ( result3 )
+ )
+ : ( flag5
+ ? ( flag
+ ? result4
+ : [ViewController preSelector:flag selector3:{
+ .x = 10,
+ }])
+ : ( flag6
+ ? [ViewController preSelector:flag selector3:^{
+ NSLog(@"selector3");
+ }]
+ : ( result7 )
+ )
+ );
+
+
+flag1
+? result1
+ : (
+ flag5
+ );
+
+
+
+showButton ? Action<>::actionFromBlock(^(Component *component) {
+ return nil;
+ }) : nil;
+
+showButton
+? Action<>::actionFromBlock(^(Component *component) {
+ return nil;
+ })
+ : nil;
+
+ showButton
+? Action<>::actionFromBlock(^(Component *component) {
+ return nil;
+ }) : nil;
+
+
+showButton
+ ? Action<>::actionFromBlock([](Component *component) {
+ return nil;
+ })
+ : nil;