Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Try to fool roslyn analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Dec 12, 2021
1 parent dee72c5 commit e09447a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>3.1.0</Version>
<Version>3.1.1</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
using System;
using JetBrains.Annotations;
using JustArchiNET.Madness.Helpers;
using JustArchiNET.Madness.Internal;

This comment has been minimized.

Copy link
@Rudokhvist

Rudokhvist Dec 12, 2021

Member

I think you misspeled it, it should be called JustArchiNET.Madness.Infernal


namespace JustArchiNET.Madness.ArgumentNullExceptionMadness;

Expand All @@ -38,14 +39,30 @@ public ArgumentNullException(string message) : base(message) { }
public ArgumentNullException() { }

[MadnessType(EMadnessType.Implementation)]
public static void ThrowIfNull<T>(T? argument, string? paramName = null) {
public static void ThrowIfNull<T>(
[ValidatedNotNull]

#if NETSTANDARD2_1_OR_GREATER
[System.Diagnostics.CodeAnalysis.NotNull]
#endif

T? argument, string? paramName = null
) {
if (argument is null) {
throw new ArgumentNullException(paramName ?? typeof(T).ToString());
}
}

[MadnessType(EMadnessType.Implementation)]
public static void ThrowIfNull(object? argument, string? paramName = null) {
public static void ThrowIfNull(
[ValidatedNotNull]

#if NETSTANDARD2_1_OR_GREATER
[System.Diagnostics.CodeAnalysis.NotNull]
#endif

object? argument, string? paramName = null
) {
if (argument is not null) {
return;
}
Expand Down
27 changes: 27 additions & 0 deletions JustArchiNET.Madness/Internal/ValidatedNotNullAttribute.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// _ __ __
// ___ ___ ___ _ __ __| | __ _ | \/ |
// / __|/ __| / _ \| '_ \ / _` | / _` || |\/| |
// \__ \\__ \| __/| | | || (_| || (_| || | | |
// |___/|___/ \___||_| |_| \__,_| \__,_||_| |_|
// |
// Copyright 2021-2021 Łukasz "JustArchi" Domeradzki
// Contact: [email protected]
// |
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// |
// http://www.apache.org/licenses/LICENSE-2.0
// |
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

using System;

namespace JustArchiNET.Madness.Internal;

[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class ValidatedNotNullAttribute : Attribute { }

0 comments on commit e09447a

Please sign in to comment.