Fixed transformations bugs, upgrade packages, and more. - #1292
Merged
Annotations
23 warnings and 1 notice
|
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: microsoft/setup-msbuild@v2, nuget/setup-nuget@v2. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
|
|
Source/Mosa.Compiler.Framework/MethodScheduler.cs#L504
The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
|
|
Source/Mosa.Compiler.Framework/Stages/BaseTransformStage.cs#L144
'BaseTransformStage.Setup()' hides inherited member 'BaseMethodCompilerStage.Setup()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaMethod.cs#L209
GetHashCode creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in this type of method. If this exception instance might be raised, either use a different exception type or change this method's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/TypeSystem.cs#L25
get_CorLib creates an exception of type AssemblyLoadException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/TypeSystem.cs#L53
get_AllTypes creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaProperty.cs#L35
get_SetterMethod creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaProperty.cs#L22
get_GetterMethod creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaUnit.cs#L66
Provide an overridable implementation of Dispose(bool) on 'MutatorBase' or mark the type as sealed. A call to Dispose(false) should only clean up native resources. A call to Dispose(true) should clean up both managed and native resources. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1063)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaUnit.cs#L83
Ensure that 'MutatorBase.Dispose' is declared as public and sealed (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1063)
|
|
Source/Mosa.Compiler.Common/StableHashCode.cs#L116
The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
|
|
Source/Mosa.Runtime.x64/Native.cs#L10
Move pinvokes to native methods class (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1060)
|
|
Source/Mosa.Runtime.x86/Native.cs#L11
Move pinvokes to native methods class (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1060)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaMethod.cs#L209
GetHashCode creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in this type of method. If this exception instance might be raised, either use a different exception type or change this method's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaProperty.cs#L35
get_SetterMethod creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaProperty.cs#L22
get_GetterMethod creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/TypeSystem.cs#L53
get_AllTypes creates an exception of type InvalidOperationCompilerException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/TypeSystem.cs#L25
get_CorLib creates an exception of type AssemblyLoadException, an exception type that should not be raised in a property. If this exception instance might be raised, use a different exception type, convert this property into a method, or change this property's logic so that it no longer raises an exception. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1065)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaUnit.cs#L66
Provide an overridable implementation of Dispose(bool) on 'MutatorBase' or mark the type as sealed. A call to Dispose(false) should only clean up native resources. A call to Dispose(true) should clean up both managed and native resources. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1063)
|
|
Source/Mosa.Compiler.MosaTypeSystem/Units/MosaUnit.cs#L83
Ensure that 'MutatorBase.Dispose' is declared as public and sealed (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1063)
|
|
Source/Mosa.Compiler.Common/StableHashCode.cs#L116
The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
|
|
|
The logs for this run have expired and are no longer available.
Loading