forked from qt-creator/qt-creator
		
	We send first the current editor, next the visible editors and the end everything else. Change-Id: I4a7b5924ffe563d6a74251739ddedcd005ce046c Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
		
			
				
	
	
		
			476 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			476 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /****************************************************************************
 | |
| **
 | |
| ** Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies).
 | |
| ** Contact: http://www.qt.io/licensing
 | |
| **
 | |
| ** This file is part of Qt Creator.
 | |
| **
 | |
| ** Commercial License Usage
 | |
| ** Licensees holding valid commercial Qt licenses may use this file in
 | |
| ** accordance with the commercial license agreement provided with the
 | |
| ** Software or, alternatively, in accordance with the terms contained in
 | |
| ** a written agreement between you and Digia.  For licensing terms and
 | |
| ** conditions see http://www.qt.io/licensing.  For further information
 | |
| ** use the contact form at http://www.qt.io/contact-us.
 | |
| **
 | |
| ** GNU Lesser General Public License Usage
 | |
| ** Alternatively, this file may be used under the terms of the GNU Lesser
 | |
| ** General Public License version 2.1 or version 3 as published by the Free
 | |
| ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
 | |
| ** LICENSE.LGPLv3 included in the packaging of this file.  Please review the
 | |
| ** following information to ensure the GNU Lesser General Public License
 | |
| ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
 | |
| ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | |
| **
 | |
| ** In addition, as a special exception, Digia gives you certain additional
 | |
| ** rights.  These rights are described in the Digia Qt LGPL Exception
 | |
| ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 | |
| **
 | |
| ****************************************************************************/
 | |
| 
 | |
| #include <diagnosticset.h>
 | |
| #include <filecontainer.h>
 | |
| #include <projectpartcontainer.h>
 | |
| #include <projectpart.h>
 | |
| #include <projectpartsdonotexistexception.h>
 | |
| #include <projects.h>
 | |
| #include <translationunitdoesnotexistexception.h>
 | |
| #include <translationunitalreadyexistsexception.h>
 | |
| #include <translationunitfilenotexitexception.h>
 | |
| #include <translationunit.h>
 | |
| #include <translationunitisnullexception.h>
 | |
| #include <translationunits.h>
 | |
| #include <unsavedfiles.h>
 | |
| #include <utf8string.h>
 | |
| 
 | |
| #include <clang-c/Index.h>
 | |
| 
 | |
| #include "mocksenddiagnosticscallback.h"
 | |
| 
 | |
| #include <gmock/gmock.h>
 | |
| #include <gmock/gmock-matchers.h>
 | |
| #include <gtest/gtest.h>
 | |
| #include "gtest-qt-printing.h"
 | |
| 
 | |
| using ClangBackEnd::TranslationUnit;
 | |
| using ClangBackEnd::UnsavedFiles;
 | |
| using ClangBackEnd::ProjectPart;
 | |
| using ClangBackEnd::DiagnosticsChangedMessage;
 | |
| using ClangBackEnd::DiagnosticSendState;
 | |
| 
 | |
| using testing::IsNull;
 | |
| using testing::NotNull;
 | |
| using testing::Gt;
 | |
| using testing::Not;
 | |
| using testing::Contains;
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| using ::testing::PrintToString;
 | |
| 
 | |
| MATCHER_P3(IsTranslationUnit, filePath, projectPartId, documentRevision,
 | |
|            std::string(negation ? "isn't" : "is")
 | |
|            + " translation unit with file path "+ PrintToString(filePath)
 | |
|            + " and project " + PrintToString(projectPartId)
 | |
|            + " and document revision " + PrintToString(documentRevision)
 | |
|            )
 | |
| {
 | |
|     return arg.filePath() == filePath
 | |
|         && arg.projectPartId() == projectPartId
 | |
|         && arg.documentRevision() == documentRevision;
 | |
| }
 | |
| 
 | |
| class TranslationUnits : public ::testing::Test
 | |
| {
 | |
| protected:
 | |
|     void SetUp() override;
 | |
|     void sendAllDiagnostics();
 | |
|     void sendAllCurrentEditorDiagnostics();
 | |
|     void sendAllVisibleEditorsDiagnostics();
 | |
| 
 | |
| protected:
 | |
|     ClangBackEnd::ProjectParts projects;
 | |
|     ClangBackEnd::UnsavedFiles unsavedFiles;
 | |
|     ClangBackEnd::TranslationUnits translationUnits{projects, unsavedFiles};
 | |
|     MockSendDiagnosticCallback mockSendDiagnosticCallback;
 | |
|     const Utf8String filePath = Utf8StringLiteral(TESTDATA_DIR"/translationunits.cpp");
 | |
|     const Utf8String headerPath = Utf8StringLiteral(TESTDATA_DIR"/translationunits.h");
 | |
|     const Utf8String nonExistingFilePath = Utf8StringLiteral("foo.cpp");
 | |
|     const Utf8String projectPartId = Utf8StringLiteral("projectPartId");
 | |
|     const Utf8String nonExistingProjectPartId = Utf8StringLiteral("nonExistingProjectPartId");
 | |
|     const ClangBackEnd::FileContainer fileContainer{filePath, projectPartId};
 | |
|     const ClangBackEnd::FileContainer headerContainer{headerPath, projectPartId};
 | |
| };
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForGettingWithWrongFilePath)
 | |
| {
 | |
|     ASSERT_THROW(translationUnits.translationUnit(nonExistingFilePath, projectPartId),
 | |
|                  ClangBackEnd::TranslationUnitDoesNotExistException);
 | |
| 
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForGettingWithWrongProjectPartFilePath)
 | |
| {
 | |
|     ASSERT_THROW(translationUnits.translationUnit(filePath, nonExistingProjectPartId),
 | |
|                  ClangBackEnd::ProjectPartDoNotExistException);
 | |
| 
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForAddingNonExistingFile)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(nonExistingFilePath, projectPartId);
 | |
| 
 | |
|     ASSERT_THROW(translationUnits.create({fileContainer}),
 | |
|                  ClangBackEnd::TranslationUnitFileNotExitsException);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DoNotThrowForAddingNonExistingFileWithUnsavedContent)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(nonExistingFilePath, projectPartId, Utf8String(), true);
 | |
| 
 | |
|     ASSERT_NO_THROW(translationUnits.create({fileContainer}));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, Add)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
| 
 | |
|     translationUnits.create({fileContainer});
 | |
| 
 | |
|     ASSERT_THAT(translationUnits.translationUnit(filePath, projectPartId),
 | |
|                 IsTranslationUnit(filePath, projectPartId, 74u));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForCreatingAnExistingTranslationUnit)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     translationUnits.create({fileContainer});
 | |
| 
 | |
|     ASSERT_THROW(translationUnits.create({fileContainer}),
 | |
|                  ClangBackEnd::TranslationUnitAlreadyExistsException);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForUpdatingANonExistingTranslationUnit)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ASSERT_THROW(translationUnits.update({fileContainer}),
 | |
|                  ClangBackEnd::TranslationUnitDoesNotExistException);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, Update)
 | |
| {
 | |
|     ClangBackEnd::FileContainer createFileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer updateFileContainer(filePath, Utf8String(), Utf8StringVector(), 75u);
 | |
|     translationUnits.create({createFileContainer});
 | |
| 
 | |
|     translationUnits.update({updateFileContainer});
 | |
| 
 | |
|     ASSERT_THAT(translationUnits.translationUnit(filePath, projectPartId),
 | |
|                 IsTranslationUnit(filePath, projectPartId, 75u));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, UpdateUnsavedFileAndCheckForReparse)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer headerContainer(headerPath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer headerContainerWithUnsavedContent(headerPath, projectPartId, Utf8String(), true, 75u);
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     translationUnits.translationUnit(filePath, projectPartId).cxTranslationUnit();
 | |
| 
 | |
|     translationUnits.update({headerContainerWithUnsavedContent});
 | |
| 
 | |
|     ASSERT_TRUE(translationUnits.translationUnit(filePath, projectPartId).isNeedingReparse());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, UpdateUnsavedFileAndCheckForDiagnostics)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer headerContainer(headerPath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer headerContainerWithUnsavedContent(headerPath, projectPartId, Utf8String(), true, 75u);
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     translationUnits.translationUnit(filePath, projectPartId).diagnostics();
 | |
| 
 | |
|     translationUnits.update({headerContainerWithUnsavedContent});
 | |
| 
 | |
|     ASSERT_TRUE(translationUnits.translationUnit(filePath, projectPartId).hasNewDiagnostics());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, RemoveFileAndCheckForDiagnostics)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer headerContainer(headerPath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer headerContainerWithUnsavedContent(headerPath, projectPartId, Utf8String(), true, 75u);
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     translationUnits.translationUnit(filePath, projectPartId).diagnostics();
 | |
| 
 | |
|     translationUnits.remove({headerContainerWithUnsavedContent});
 | |
| 
 | |
|     ASSERT_TRUE(translationUnits.translationUnit(filePath, projectPartId).hasNewDiagnostics());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DontGetNewerFileContainerIfRevisionIsTheSame)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     translationUnits.create({fileContainer});
 | |
| 
 | |
|     auto newerFileContainers = translationUnits.newerFileContainers({fileContainer});
 | |
| 
 | |
|     ASSERT_THAT(newerFileContainers.size(), 0);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, GetNewerFileContainerIfRevisionIsDifferent)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId, Utf8StringVector(), 74u);
 | |
|     ClangBackEnd::FileContainer newerContainer(filePath, projectPartId, Utf8StringVector(), 75u);
 | |
|     translationUnits.create({fileContainer});
 | |
| 
 | |
|     auto newerFileContainers = translationUnits.newerFileContainers({newerContainer});
 | |
| 
 | |
|     ASSERT_THAT(newerFileContainers.size(), 1);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForRemovingWithWrongFilePath)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(nonExistingFilePath, projectPartId);
 | |
| 
 | |
|     ASSERT_THROW(translationUnits.remove({fileContainer}),
 | |
|                  ClangBackEnd::TranslationUnitDoesNotExistException);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, ThrowForRemovingWithWrongProjectPartFilePath)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, nonExistingProjectPartId);
 | |
| 
 | |
|     ASSERT_THROW(translationUnits.remove({fileContainer}),
 | |
|                  ClangBackEnd::ProjectPartDoNotExistException);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, Remove)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId);
 | |
|     translationUnits.create({fileContainer});
 | |
| 
 | |
|     translationUnits.remove({fileContainer});
 | |
| 
 | |
|     ASSERT_THROW(translationUnits.translationUnit(filePath, projectPartId),
 | |
|                  ClangBackEnd::TranslationUnitDoesNotExistException);
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, RemoveAllValidIfExceptionIsThrown)
 | |
| {
 | |
|     ClangBackEnd::FileContainer fileContainer(filePath, projectPartId);
 | |
|     translationUnits.create({fileContainer});
 | |
| 
 | |
|     ASSERT_THROW(translationUnits.remove({ClangBackEnd::FileContainer(Utf8StringLiteral("dontextist.pro"), projectPartId), fileContainer}),
 | |
|                  ClangBackEnd::TranslationUnitDoesNotExistException);
 | |
| 
 | |
|     ASSERT_THAT(translationUnits.translationUnits(),
 | |
|                 Not(Contains(TranslationUnit(filePath,
 | |
|                                              projects.project(projectPartId),
 | |
|                                              Utf8StringVector(),
 | |
|                                              translationUnits))));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, HasTranslationUnit)
 | |
| {
 | |
|     translationUnits.create({{filePath, projectPartId}});
 | |
| 
 | |
|     ASSERT_TRUE(translationUnits.hasTranslationUnit(filePath));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, HasNotTranslationUnit)
 | |
| {
 | |
|     ASSERT_FALSE(translationUnits.hasTranslationUnit(filePath));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, isUsedByCurrentEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
| 
 | |
|     translationUnits.setCurrentEditor(filePath);
 | |
| 
 | |
|     ASSERT_TRUE(translationUnit.isUsedByCurrentEditor());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, IsNotCurrentEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
| 
 | |
|     translationUnits.setCurrentEditor(headerPath);
 | |
| 
 | |
|     ASSERT_FALSE(translationUnit.isUsedByCurrentEditor());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, IsNotCurrentEditorAfterBeingCurrent)
 | |
| {
 | |
|     translationUnits.create({fileContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     translationUnits.setCurrentEditor(filePath);
 | |
| 
 | |
|     translationUnits.setCurrentEditor(headerPath);
 | |
| 
 | |
|     ASSERT_FALSE(translationUnit.isUsedByCurrentEditor());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, IsVisibleEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
| 
 | |
|     translationUnits.setVisibleEditors({filePath});
 | |
| 
 | |
|     ASSERT_TRUE(translationUnit.isVisibleInEditor());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, IsNotVisibleEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
| 
 | |
|     translationUnits.setVisibleEditors({headerPath});
 | |
| 
 | |
|     ASSERT_FALSE(translationUnit.isVisibleInEditor());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, IsNotVisibleEditorAfterBeingVisible)
 | |
| {
 | |
|     translationUnits.create({fileContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     translationUnits.setVisibleEditors({filePath});
 | |
| 
 | |
|     translationUnits.setVisibleEditors({headerPath});
 | |
| 
 | |
|     ASSERT_FALSE(translationUnit.isVisibleInEditor());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DoNotSendDiagnosticsIfThereIsNothingToSend)
 | |
| {
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(0);
 | |
| 
 | |
|     sendAllDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, SendDiagnosticsAfterTranslationUnitCreation)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(2);
 | |
| 
 | |
|     sendAllDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DoNotSendDiagnosticsAfterGettingDiagnostics)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     translationUnit.diagnostics();
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(1);
 | |
| 
 | |
|     sendAllDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, SendDiagnosticsForCurrentEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     translationUnit.setIsUsedByCurrentEditor(true);
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(1);
 | |
| 
 | |
|     sendAllCurrentEditorDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DoNotSendDiagnosticsForCurrentEditorIfThereIsNoCurrentEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(0);
 | |
| 
 | |
|     sendAllCurrentEditorDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DoNotSendDiagnosticsForCurrentEditorAfterGettingDiagnostics)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     auto translationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     translationUnit.setIsUsedByCurrentEditor(true);
 | |
|     translationUnit.diagnostics();
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(0);
 | |
| 
 | |
|     sendAllCurrentEditorDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, DoNotSendDiagnosticsForVisibleEditorIfThereAreNoVisibleEditors)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(0);
 | |
| 
 | |
|     translationUnits.sendChangedDiagnosticsForVisibleEditors();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, SendDiagnosticsForVisibleEditors)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     auto fileTranslationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     fileTranslationUnit.setIsVisibleInEditor(true);
 | |
|     auto headerTranslationUnit = translationUnits.translationUnit(headerContainer);
 | |
|     headerTranslationUnit.setIsVisibleInEditor(true);
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(2);
 | |
| 
 | |
|     sendAllVisibleEditorsDiagnostics();
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnits, SendOnlyOneDiagnosticsForVisibleEditor)
 | |
| {
 | |
|     translationUnits.create({fileContainer, headerContainer});
 | |
|     auto fileTranslationUnit = translationUnits.translationUnit(fileContainer);
 | |
|     fileTranslationUnit.setIsVisibleInEditor(true);
 | |
|     auto headerTranslationUnit = translationUnits.translationUnit(headerContainer);
 | |
|     headerTranslationUnit.setIsVisibleInEditor(true);
 | |
|     headerTranslationUnit.diagnostics();
 | |
| 
 | |
|     EXPECT_CALL(mockSendDiagnosticCallback, sendDiagnostic()).Times(1);
 | |
| 
 | |
|     sendAllVisibleEditorsDiagnostics();
 | |
| }
 | |
| 
 | |
| void TranslationUnits::SetUp()
 | |
| {
 | |
|     projects.createOrUpdate({ClangBackEnd::ProjectPartContainer(projectPartId)});
 | |
| 
 | |
|     auto callback = [&] (const DiagnosticsChangedMessage &) { mockSendDiagnosticCallback.sendDiagnostic(); };
 | |
|     translationUnits.setSendChangeDiagnosticsCallback(callback);
 | |
| }
 | |
| 
 | |
| void TranslationUnits::sendAllDiagnostics()
 | |
| {
 | |
|     auto diagnosticSendState = DiagnosticSendState::MaybeThereAreMoreDiagnostics;
 | |
| 
 | |
|     while (diagnosticSendState == DiagnosticSendState::MaybeThereAreMoreDiagnostics)
 | |
|         diagnosticSendState = translationUnits.sendChangedDiagnostics();
 | |
| }
 | |
| 
 | |
| void TranslationUnits::sendAllCurrentEditorDiagnostics()
 | |
| {
 | |
|     auto diagnosticSendState = DiagnosticSendState::MaybeThereAreMoreDiagnostics;
 | |
| 
 | |
|     while (diagnosticSendState == DiagnosticSendState::MaybeThereAreMoreDiagnostics)
 | |
|         diagnosticSendState = translationUnits.sendChangedDiagnosticsForCurrentEditor();
 | |
| }
 | |
| 
 | |
| void TranslationUnits::sendAllVisibleEditorsDiagnostics()
 | |
| {
 | |
|     auto diagnosticSendState = DiagnosticSendState::MaybeThereAreMoreDiagnostics;
 | |
| 
 | |
|     while (diagnosticSendState == DiagnosticSendState::MaybeThereAreMoreDiagnostics)
 | |
|         diagnosticSendState = translationUnits.sendChangedDiagnosticsForVisibleEditors();
 | |
| }
 | |
| 
 | |
| }
 |