Skip to content

Commit a16e40d

Browse files
authored
Merge pull request #5479 from retailcoder/next
Adding xmldocs for all annotations
2 parents 303de3c + 4bde4a8 commit a16e40d

File tree

142 files changed

+1004
-436
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+1004
-436
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,4 @@ Rubberduck.CodeAnalysis.xml
190190
#Gradle
191191
/.gradle/
192192
/Rubberduck.CodeAnalysis/Rubberduck.CodeAnalysis.xml
193+
/Rubberduck.Parsing/Rubberduck.Parsing.xml

Rubberduck.CodeAnalysis/Inspections/Concrete/Excel/ApplicationWorksheetFunctionInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/ApplicationWorksheetFunctionInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Rubberduck.Parsing.VBA.DeclarationCaching;
99
using Rubberduck.Resources.Inspections;
1010

11-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
11+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1212
{
1313
/// <summary>
1414
/// Warns about late-bound WorksheetFunction calls made against the extended interface of the Application object.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyCaseBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyCaseBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'Case' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyDoWhileBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyDoWhileBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'Do...Loop While' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyElseBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyElseBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'Else' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyForEachBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyForEachBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'For Each...Next' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyForLoopBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyForLoopBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'For...Next' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyIfBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyIfBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Rubberduck.Parsing.VBA;
77
using Rubberduck.Resources.Inspections;
88

9-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
9+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1010
{
1111
/// <summary>
1212
/// Identifies empty 'If' blocks.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyWhileWendBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyWhileWendBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'While...Wend' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/Excel/ExcelMemberMayReturnNothingInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/ExcelMemberMayReturnNothingInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Rubberduck.Parsing.VBA.DeclarationCaching;
88
using Rubberduck.Resources.Inspections;
99

10-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
10+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1111
{
1212
/// <summary>Locates instances of member calls made against the result of a Range.Find/FindNext/FindPrevious method, without prior validation.</summary>
1313
/// <reference name="Excel" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using Rubberduck.VBEditor;
1212
using Rubberduck.VBEditor.SafeComWrappers;
1313

14-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
14+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1515
{
1616
/// <summary>
1717
/// Locates public User-Defined Function procedures accidentally named after a cell reference.

Rubberduck.CodeAnalysis/Inspections/Concrete/ImplementedInterfaceMemberInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Rubberduck.CodeAnalysis.Inspections.Abstract;
33
using Rubberduck.CodeAnalysis.Inspections.Extensions;
44
using Rubberduck.Common;
5-
using Rubberduck.Parsing.Annotations;
5+
using Rubberduck.Parsing.Annotations.Concrete;
66
using Rubberduck.Parsing.Symbols;
77
using Rubberduck.Parsing.VBA;
88
using Rubberduck.Parsing.VBA.DeclarationCaching;

Rubberduck.CodeAnalysis/Inspections/Concrete/Excel/ImplicitActiveSheetReferenceInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/ImplicitActiveSheetReferenceInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Rubberduck.Parsing.VBA.DeclarationCaching;
88
using Rubberduck.Resources.Inspections;
99

10-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
10+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1111
{
1212
/// <summary>
1313
/// Locates unqualified Worksheet.Range/Cells/Columns/Rows member calls that implicitly refer to ActiveSheet.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Rubberduck.Parsing.VBA.DeclarationCaching;
88
using Rubberduck.Resources.Inspections;
99

10-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
10+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1111
{
1212
/// <summary>
1313
/// Locates unqualified Workbook.Worksheets/Sheets/Names member calls that implicitly refer to ActiveWorkbook.

Rubberduck.CodeAnalysis/Inspections/Concrete/ModuleWithoutFolderInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Linq;
22
using Rubberduck.CodeAnalysis.Inspections.Abstract;
3-
using Rubberduck.Parsing.Annotations;
3+
using Rubberduck.Parsing.Annotations.Concrete;
44
using Rubberduck.Parsing.Symbols;
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Parsing.VBA.DeclarationCaching;
Lines changed: 18 additions & 0 deletions

Rubberduck.CodeAnalysis/Inspections/Concrete/Excel/SheetAccessedUsingStringInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/SheetAccessedUsingStringInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Rubberduck.VBEditor.SafeComWrappers;
1313
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
1414

15-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
15+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1616
{
1717
/// <summary>
1818
/// Locates ThisWorkbook.Worksheets and ThisWorkbook.Sheets calls that appear to be dereferencing a worksheet that is already accessible at compile-time with a global-scope identifier.

Rubberduck.CodeAnalysis/Inspections/Concrete/ThunderCode/OnErrorGoToMinusOneInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete.ThunderCode
1313
/// <why>
1414
/// This inpection is flagging code we dubbed "ThunderCode",
1515
/// code our friend Andrew Jackson would have written to confuse Rubberduck's parser and/or resolver.
16-
/// 'On Error GoTo -1' is poorly documented and uselessly complicates error handling.
16+
/// 'On Error GoTo -1' is poorly documented and uselessly complicates error handling. Consider using 'On Error GoTo 0' instead.
1717
/// </why>
1818
internal sealed class OnErrorGoToMinusOneInspection : ParseTreeInspectionBase<VBAParser.OnErrorStmtContext>
1919
{
Lines changed: 5 additions & 0 deletions

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ComparableDateValue.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ComparableDateValue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Antlr4.Runtime;
66
using Rubberduck.Parsing.PreProcessing;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
99
{
1010
internal class ComparableDateValue : IValue, IComparable<ComparableDateValue>
1111
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ExpressionFilter.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ExpressionFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using Rubberduck.Parsing.Grammar;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
99
{
1010
internal enum VariableClauseTypes
1111
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ExpressionFilterBoolean.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ExpressionFilterBoolean.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Rubberduck.Parsing.Grammar;
22

3-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
3+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
44
{
55
internal class ExpressionFilterBoolean : ExpressionFilter<bool>
66
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ExpressionFilterDate.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ExpressionFilterDate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Linq;
33
using Rubberduck.Parsing.Grammar;
44

5-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
5+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
66
{
77
internal class ExpressionFilterDate : ExpressionFilter<ComparableDateValue>
88
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ExpressionFilterFactory.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ExpressionFilterFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
using System.Linq;
44
using Rubberduck.Parsing.Grammar;
55

6-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection{
7-
6+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
7+
{
88
internal static class ExpressionFilterFactory
99
{
1010
private static readonly Dictionary<string, (long typeMin, long typeMax)> IntegralNumberExtents = new Dictionary<string, (long typeMin, long typeMax)>()

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ExpressionFilterIntegral.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ExpressionFilterIntegral.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Linq;
44

5-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
5+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
66
{
77
internal class ExpressionFilterIntegral : ExpressionFilter<long>
88
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/FilterLimits.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/FilterLimits.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
3+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
44
{
55
internal struct Limit<T> where T : IComparable<T>
66
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/LetCoerce.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/LetCoerce.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Rubberduck.Parsing.Grammar;
55
using Rubberduck.Parsing.PreProcessing;
66

7-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
7+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
88
{
99
internal struct VBACurrency
1010
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/OperatorTypesProvider.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/OperatorTypesProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using Rubberduck.Parsing.Grammar;
55

6-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
6+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
77
{
88
internal class OperatorTypesProvider
99
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Rubberduck.Parsing.Grammar;
77
using Rubberduck.Parsing.PreProcessing;
88

9-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
9+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
1010
{
1111
internal interface IParseTreeExpressionEvaluator
1212
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ParseTreeValue.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ParseTreeValue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Rubberduck.Parsing.Grammar;
55
using Rubberduck.Parsing.PreProcessing;
66

7-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
7+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
88
{
99
internal interface IParseTreeValue
1010
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ParseTreeValueFactory.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ParseTreeValueFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Rubberduck.Parsing;
44
using Rubberduck.Parsing.Grammar;
55

6-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
6+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
77
{
88
internal interface IParseTreeValueFactory
99
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ParseTreeValueVisitor.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ParseTreeValueVisitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Rubberduck.Parsing.VBA.DeclarationCaching;
1010
using Rubberduck.VBEditor;
1111

12-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
12+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
1313
{
1414
internal interface IParseTreeValueVisitor
1515
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/ParseTreeVisitorResults.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/ParseTreeVisitorResults.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Antlr4.Runtime;
55
using Rubberduck.Parsing.Grammar;
66

7-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
7+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
88
{
99
internal interface IParseTreeVisitorResults
1010
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/RangeClauseExpression.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/RangeClauseExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using Rubberduck.Parsing.Grammar;
33

4-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
4+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
55
{
66
internal interface IRangeClauseExpression
77
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/TypeTokenPair.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/TypeTokenPair.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Linq;
55
using Rubberduck.Parsing.Grammar;
66

7-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
7+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
88
{
99
internal struct TypeTokenPair
1010
{

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection/UnreachableCaseInspector.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseEvaluation/UnreachableCaseInspector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Rubberduck.Parsing.VBA.DeclarationCaching;
99
using Rubberduck.VBEditor;
1010

11-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
11+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation
1212
{
1313
internal interface IUnreachableCaseInspector
1414
{
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
using Rubberduck.Parsing.VBA.Parsing;
1515
using Rubberduck.Resources.Inspections;
1616
using Rubberduck.VBEditor;
17+
using Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseEvaluation;
1718

18-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
19+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1920
{
2021
/// <summary>
2122
/// Flags 'Case' blocks that will never execute.
@@ -104,7 +105,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete.UnreachableCaseInspection
104105
/// <module name="MyModule" type="Standard Module">
105106
/// <![CDATA[
106107
///
107-
/// 'The inspecion flags Range Clauses that are not of the required form:
108+
/// 'The inspection flags Range Clauses that are not of the required form:
108109
/// '[x] To [y] where [x] less than or equal to [y]
109110
///
110111
/// Private Sub ExampleInvalidRangeExpression(ByVal value As String)

Rubberduck.CodeAnalysis/Inspections/Extensions/IgnoreRelatedExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Linq;
22
using Rubberduck.CodeAnalysis.Inspections.Results;
33
using Rubberduck.Parsing;
4-
using Rubberduck.Parsing.Annotations;
4+
using Rubberduck.Parsing.Annotations.Concrete;
55
using Rubberduck.Parsing.Symbols;
66
using Rubberduck.Parsing.VBA.DeclarationCaching;
77
using Rubberduck.VBEditor;

Rubberduck.CodeAnalysis/QuickFixes/Concrete/AccessSheetUsingCodeNameQuickFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Linq;
22
using Antlr4.Runtime;
33
using Rubberduck.CodeAnalysis.Inspections;
4-
using Rubberduck.CodeAnalysis.Inspections.Concrete.Excel;
4+
using Rubberduck.CodeAnalysis.Inspections.Concrete;
55
using Rubberduck.CodeAnalysis.Inspections.Results;
66
using Rubberduck.CodeAnalysis.QuickFixes.Abstract;
77
using Rubberduck.Parsing;

Rubberduck.CodeAnalysis/QuickFixes/Concrete/ApplicationWorksheetFunctionQuickFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Rubberduck.CodeAnalysis.Inspections;
2-
using Rubberduck.CodeAnalysis.Inspections.Concrete.Excel;
2+
using Rubberduck.CodeAnalysis.Inspections.Concrete;
33
using Rubberduck.CodeAnalysis.QuickFixes.Abstract;
44
using Rubberduck.Parsing.Rewriter;
55

Rubberduck.CodeAnalysis/QuickFixes/Concrete/IgnoreInModuleQuickFix.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using Rubberduck.CodeAnalysis.Inspections;
44
using Rubberduck.CodeAnalysis.Inspections.Attributes;
55
using Rubberduck.CodeAnalysis.QuickFixes.Abstract;
6+
using Rubberduck.Parsing.Annotations.Concrete;
67
using Rubberduck.Parsing.Annotations;
78
using Rubberduck.Parsing.Rewriter;
89
using Rubberduck.Parsing.Symbols;

Rubberduck.CodeAnalysis/QuickFixes/Concrete/IgnoreOnceQuickFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Rubberduck.CodeAnalysis.Inspections.Attributes;
55
using Rubberduck.CodeAnalysis.QuickFixes.Abstract;
66
using Rubberduck.Parsing;
7-
using Rubberduck.Parsing.Annotations;
7+
using Rubberduck.Parsing.Annotations.Concrete;
88
using Rubberduck.Parsing.Rewriter;
99
using Rubberduck.Parsing.Symbols;
1010
using Rubberduck.Parsing.VBA;

0 commit comments

Comments
 (0)