Skip to content

chore(deps): update dependency antlr4buildtasks to 12.10.0 #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Oberon0.CompilerSupport/Oberon0.Test.Support.csproj
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageReference Include="Antlr4BuildTasks" Version="12.8.0" />
<PackageReference Include="Antlr4BuildTasks" Version="12.10.0" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="xunit" Version="2.9.2" />
</ItemGroup>
2 changes: 1 addition & 1 deletion oberon0/Oberon0Compiler.csproj
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageReference Include="Antlr4BuildTasks" Version="12.8.0" />
<PackageReference Include="Antlr4BuildTasks" Version="12.10.0" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="System.Composition.TypedParts" Version="8.0.0" />
</ItemGroup>

Unchanged files with check annotations Beta

parser.NotifyErrorListeners(context.id, $"Module {moduleName} has already been imported", null);
}
//TODO: Load Module

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)

Check warning on line 487 in oberon0/Oberon0CompilerListener.cs

GitHub Actions / build

Complete the task associated to this 'TODO' comment. (https://rules.sonarsource.com/csharp/RSPEC-1135)
}
public override void ExitModuleDefinition(OberonGrammarParser.ModuleDefinitionContext context)
var sysAsm = Assembly.Load("Oberon0.System");
foreach (var type in sysAsm.GetExportedTypes())

Check warning on line 168 in oberon0/Definitions/Module.StandardFunctions.cs

GitHub Actions / build

Loops should be simplified using the "Where" LINQ method (https://rules.sonarsource.com/csharp/RSPEC-3267)

Check warning on line 168 in oberon0/Definitions/Module.StandardFunctions.cs

GitHub Actions / build

Loops should be simplified using the "Where" LINQ method (https://rules.sonarsource.com/csharp/RSPEC-3267)

Check warning on line 168 in oberon0/Definitions/Module.StandardFunctions.cs

GitHub Actions / build

Loops should be simplified using the "Where" LINQ method (https://rules.sonarsource.com/csharp/RSPEC-3267)
{
if (type.GetCustomAttribute<Oberon0LibraryAttribute>() != null)
{