summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/indent-inside-ternary-operator.m
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/indent-inside-ternary-operator.m')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/indent-inside-ternary-operator.m102
1 files changed, 0 insertions, 102 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/indent-inside-ternary-operator.m b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/indent-inside-ternary-operator.m
deleted file mode 100644
index ff979acf..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/oc/indent-inside-ternary-operator.m
+++ /dev/null
@@ -1,102 +0,0 @@
-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;