Skip to content

Commit 723bbac

Browse files
committed
Merge branch 'rubberduck-vba/next' into next
2 parents 053fbf0 + 9ed85e0 commit 723bbac

File tree

216 files changed

+1736
-810
lines changed

Some content is hidden

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

216 files changed

+1736
-810
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" />

0 commit comments

Comments
 (0)