Skip to content

Commit

Permalink
Merge pull request #6241 from retailcoder/next
Browse files Browse the repository at this point in the history
Fix xmldoc, remove ParameterlessCellsInspection
  • Loading branch information
retailcoder authored Jan 24, 2025
2 parents 957bbff + 940f33f commit e140068
Show file tree
Hide file tree
Showing 10 changed files with 319 additions and 568 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
/// End Sub
/// ]]>
/// </module>
/// </example>
/// <example hasResult="false">
/// <module name="MyModule" type="Standard Module">
/// <![CDATA[
Expand All @@ -47,6 +48,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
/// End Sub
/// ]]>
/// </module>
/// </example>
internal class InconsistentArrayBaseInspection : IdentifierReferenceInspectionBase
{
public InconsistentArrayBaseInspection(IDeclarationFinderProvider declarationFinderProvider)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,6 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
/// <module name="MyModule" type="Standard Module">
/// <![CDATA[
/// Option Base 1 '<~ Implicit array lower bound is 1
/// Public Sub DoSomething()
/// Dim Values As Variant
///
/// Values = Array(42)
/// Debug.Print LBound(Values) '<~ 1 as per Option Base
///
/// Values = VBA.Array(42) '<<< inspection result here
/// Debug.Print LBound(Values) '<~ not 1
/// End Sub
/// ]]>
/// </module>
/// <example hasResult="true">
/// <module name="MyModule" type="Standard Module">
/// <![CDATA[
/// Option Base 1 '<~ Implicit array lower bound is 1
/// Public Sub DoSomething(ParamArray Values) '<<< inspection result here
/// Debug.Print LBound(Values) '<~ not 1
/// End Sub
Expand All @@ -55,6 +40,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
/// End Sub
/// ]]>
/// </module>
/// </example>
internal sealed class InconsistentParamArrayBaseInspection : DeclarationInspectionBase
{
public InconsistentParamArrayBaseInspection(IDeclarationFinderProvider declarationFinderProvider)
Expand Down

This file was deleted.

Loading

0 comments on commit e140068

Please sign in to comment.