forked from qt-creator/qt-creator
		
	Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
  # skip ast (excluding paste, astpath, and canv'ast'imer)
  next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
  s = File.read(file)
  next if s.include?('qlalr')
  orig = s.dup
  s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
    res = $&
    if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
      res
    else
      res.gsub!('} else', 'else')
      res.gsub!(/\n +} *\n/m, "\n")
      res.gsub(/ *{$/, '')
    end
  }
  s.gsub!(/ *$/, '')
  File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
			
			
This commit is contained in:
		| @@ -213,9 +213,8 @@ ModelManagerInterface::WorkingCopy ModelManager::workingCopy() const | ||||
|  | ||||
|         if (TextEditor::ITextEditor *textEditor = qobject_cast<TextEditor::ITextEditor*>(editor)) { | ||||
|             if (textEditor->context().contains(ProjectExplorer::Constants::LANG_QMLJS)) { | ||||
|                 if (TextEditor::BaseTextEditorWidget *ed = qobject_cast<TextEditor::BaseTextEditorWidget *>(textEditor->widget())) { | ||||
|                 if (TextEditor::BaseTextEditorWidget *ed = qobject_cast<TextEditor::BaseTextEditorWidget *>(textEditor->widget())) | ||||
|                     workingCopy.insert(key, ed->toPlainText(), ed->document()->revision()); | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|     } | ||||
| @@ -244,9 +243,8 @@ void ModelManager::updateSourceFiles(const QStringList &files, | ||||
| QFuture<void> ModelManager::refreshSourceFiles(const QStringList &sourceFiles, | ||||
|                                                bool emitDocumentOnDiskChanged) | ||||
| { | ||||
|     if (sourceFiles.isEmpty()) { | ||||
|     if (sourceFiles.isEmpty()) | ||||
|         return QFuture<void>(); | ||||
|     } | ||||
|  | ||||
|     QFuture<void> result = QtConcurrent::run(&ModelManager::parse, | ||||
|                                               workingCopy(), sourceFiles, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user