Skip to content

Commit 99699b3

Browse files
committed
extracted Rubberduck.Inspections assembly; made inconclusive a bunch of tests that are green despite 0 inspections being implemented in Rubberduck.dll.
1 parent bbe55e2 commit 99699b3

File tree

317 files changed

+758
-557
lines changed

Some content is hidden

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

317 files changed

+758
-557
lines changed

RetailCoder.VBE/API/ParserState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
using Rubberduck.Parsing.Symbols.DeclarationLoaders;
88
using Rubberduck.Parsing.VBA;
99
using Rubberduck.UI.Command.MenuItems;
10-
using Rubberduck.Parsing.Preprocessing;
1110
using System.Globalization;
11+
using Rubberduck.Parsing.PreProcessing;
1212
using Rubberduck.VBEditor.SafeComWrappers.VBA;
1313

1414
namespace Rubberduck.API

RetailCoder.VBE/Inspections/Abstract/IExportable.cs renamed to RetailCoder.VBE/Common/IExportable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Rubberduck.Inspections.Abstract
1+
namespace Rubberduck.Common
22
{
33
public interface IExportable
44
{

RetailCoder.VBE/Inspections/VariableNameValidator.cs renamed to RetailCoder.VBE/Common/VariableNameValidator.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using System.Globalization;
2-
using Rubberduck.Parsing.Grammar;
3-
using System;
1+
using System;
42
using System.Collections.Generic;
3+
using System.Globalization;
54
using System.Linq;
5+
using Rubberduck.Parsing.Grammar;
66

7-
namespace Rubberduck.Inspections
7+
namespace Rubberduck.Common
88
{
99
public static class VariableNameValidator
1010
{

RetailCoder.VBE/Common/WinAPI/User32.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33
using System.Text;
4+
using Rubberduck.VBEditor.WindowsApi;
45

56
namespace Rubberduck.Common.WinAPI
67
{

RetailCoder.VBE/Extension.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Extensibility;
22
using Ninject;
33
using Ninject.Extensions.Factory;
4-
using Rubberduck.Common.WinAPI;
54
using Rubberduck.Root;
65
using Rubberduck.UI;
76
using System;
@@ -22,6 +21,8 @@
2221
using Rubberduck.VBEditor.Events;
2322
using Rubberduck.VBEditor.SafeComWrappers;
2423
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
24+
using Rubberduck.VBEditor.WindowsApi;
25+
using User32 = Rubberduck.Common.WinAPI.User32;
2526

2627
namespace Rubberduck
2728
{

RetailCoder.VBE/Inspections/Abstract/QuickFixBase.cs

Lines changed: 0 additions & 48 deletions
This file was deleted.

RetailCoder.VBE/Inspections/Results/AggregateInspectionResult.cs

Lines changed: 0 additions & 64 deletions
This file was deleted.

RetailCoder.VBE/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.0.13.*")]
35-
[assembly: AssemblyFileVersion("2.0.13.0")]
34+
[assembly: AssemblyVersion("2.0.14.*")]
35+
[assembly: AssemblyFileVersion("2.0.14.0")]

RetailCoder.VBE/Refactorings/ExtractInterface/ExtractInterfacePresenter.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System.Linq;
22
using System.Windows.Forms;
33
using Rubberduck.UI.Refactorings;
4-
using Rubberduck.UI.Refactorings.ExtractInterface;
54

65
namespace Rubberduck.Refactorings.ExtractInterface
76
{

RetailCoder.VBE/Refactorings/ExtractInterface/ExtractInterfacePresenterFactory.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System.Linq;
22
using Rubberduck.Parsing.VBA;
33
using Rubberduck.UI.Refactorings;
4-
using Rubberduck.UI.Refactorings.ExtractInterface;
54
using Rubberduck.VBEditor.SafeComWrappers.Abstract;
65

76
namespace Rubberduck.Refactorings.ExtractInterface

0 commit comments

Comments
 (0)