Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-132055

qmlformat: Support formatting ternary operators on separate lines

    XMLWordPrintable

Details

    • Suggestion
    • Resolution: Unresolved
    • P4: Low
    • 6.11
    • 6.8.0
    • QML: Tooling
    • None
    • All

    Description

       Support formatting ternary operators on separate lines like this: 

      a: b 
         ? c 
         : d

      This can be done by modifying the visit method:

      qqmldomreformatter.cpp

      bool ScriptFormatter::visit(ConditionalExpression *ast)
      {
          accept(ast->expression);
          ++expressionDepth;
          const int baseIndent = lw.increaseIndent(1);
          newLine();
          out("? "); // ast->questionToken
          accept(ast->ok);
          newLine();
          out(": "); // ast->colonToken
          accept(ast->ko);
          lw.decreaseIndent(1, baseIndent);
          --expressionDepth;
          return false;
      }
      

       

       

      Attachments

        For Gerrit Dashboard: QTBUG-132055
        # Subject Branch Project Status CR V

        Activity

          People

            qtqmlteam Qt Qml Team User
            ovidiu.tepescu Ovidiu Tepescu
            Votes:
            2 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There is 1 open Gerrit change