Skip to content
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

Missing types in smodel #391

Merged
merged 4 commits into from
Mar 26, 2025
Merged

Missing types in smodel #391

merged 4 commits into from
Mar 26, 2025

Conversation

PTKu
Copy link
Contributor

@PTKu PTKu commented Mar 26, 2025

This pull request includes several changes to the AXSharp.Cs.Compiler project to enhance type handling and eligibility checks for transpilation. The most significant changes include updating method signatures to return tuples, adding new methods for determining fully qualified names, and modifying eligibility checks to use these new methods.

Enhancements to type handling and eligibility checks:

Version update:

  • GitVersion.yml: Updated next-version from 0.23.0 to 0.24.0 to reflect the new changes.

PTKu added 2 commits March 26, 2025 18:20
Refactored methods in `SemanticsHelpers.cs` to return tuples for eligibility checks, providing more detailed information. Updated various files to use the new tuple return type for member eligibility checks. Modified `CsPlainConstructorBuilder.cs` and `CsPlainSourceBuilder.cs` to store eligibility check results in variables before conditional logic. Updated `launchSettings.json` to change the `workingDirectory` path for the `ixc-simple-template` project configuration.
Updated method signatures in `SemanticsHelpers` to use `eligibleType` instead of `qualifiedName` for clarity and consistency. Enhanced `FindTypeDeclaration` method with additional null and type checks. Refactored multiple builder classes to consistently use `eligibleType`. Added or modified comments for future refactoring or debugging. Updated `launchSettings.json` to include `--skip-deps` argument for `ixc-simple-template` project configuration.
@PTKu PTKu requested a review from Copilot March 26, 2025 19:28
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR refactors type handling and eligibility checks in the CS Compiler project by updating method signatures to return tuples that include both a boolean eligibility flag and the corresponding type declaration, while also revising the code that consumes these methods. Key changes include:

  • Updating methods in SemanticsHelpers.cs to return tuples (eligibility flag + type declaration) for members, variables, and arrays.
  • Adapting Plain and Onliner source builders to use the new tuple format in eligibility checks and type handling.
  • Bumping the version in GitVersion.yml to reflect the new changes.

Reviewed Changes

Copilot reviewed 13 out of 14 changed files in this pull request and generated 1 comment.

File Description
src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Helpers/SemanticsHelpers.cs Changed method signatures to return tuples; added methods to resolve and determine fully qualified names.
src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Plain/CsPlainSourceBuilder.cs Modified element type resolution to use eligibility tuple from the new methods.
src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Onliner/* Updated eligibility checks and replaced direct type.Accept(visitor) calls with the tuple-based eligible type.
GitVersion.yml Updated version from 0.23.0 to 0.24.0.
Files not reviewed (1)
  • src/AXSharp.compiler/src/ixc/Properties/launchSettings.json: Language not supported
Comments suppressed due to low confidence (2)

src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Helpers/SemanticsHelpers.cs:61

  • There is a redundant null-check for 'typeAccess' in the FindTypeDeclaration method; consider removing the duplicate check to streamline the logic.
if (typeAccess == null)

src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Plain/CsPlainSourceBuilder.cs:131

  • [nitpick] There are multiple commented-out calls to 'Accept(visitor, this)' that duplicate the new eligibility-based call; consider removing these legacy comments to keep the code clean.
//arrayType.ElementTypeAccess.Type.Accept(visitor, this);

PTKu and others added 2 commits March 26, 2025 20:35
Corrected the property name 'isEligibe' to 'isEligible' across multiple files to ensure consistency and correctness.

Changes include:
- Updated return statement in `SemanticsHelpers.cs` to use `eligibility.isEligible`.
- Updated condition checks in `CsOnlinerMemberBuilder.cs`, `CsOnlinerPlainerOnlineToPlainBuilder.cs`, `CsOnlinerPlainerPlainToOnlineBuilder.cs`, `CsOnlinerPlainerPlainToShadowBuilder.cs`, `CsOnlinerPlainerShadowToPlainBuilder.cs`, `CsOnlinerHasChangedBuilder.cs`, and `CsPlainSourceBuilder.cs` to use `eligibility.isEligible`.
@PTKu PTKu requested a review from Copilot March 26, 2025 19:38
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This pull request refactors the eligibility checks in the AXSharp.Cs.Compiler project by updating method signatures to return tuples (eligibility status and type declaration) and by introducing new helper methods for resolving fully qualified type declarations. Key changes include:

  • Changes in SemanticsHelpers.cs to return and propagate tuples instead of booleans.
  • Updates in both Plain and Onliner source builder classes to use the new eligibility tuple and type resolution methods.
  • A version bump in GitVersion.yml to reflect the new changes.

Reviewed Changes

Copilot reviewed 13 out of 14 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
Helpers/SemanticsHelpers.cs Updated multiple eligibility methods to return (bool, ITypeDeclaration) tuples and added new type resolution helpers.
Plain/CsPlainSourceBuilder.cs Updated field and variable declarations to use the new eligibility tuple along with modifications to type handling.
Onliner/CsOnlinerSourceBuilder.cs and related Onliner files Refactored method calls and conditionals to utilize the eligibility tuple when constructing members and assignments.
GitVersion.yml Bumped next-version from 0.23.0 to 0.24.0.
Onliner/CsOnlinerConstructorBuilder.cs, CsOnlinerMemberBuilder.cs, and others Applied similar tuple-based eligibility checks in constructor and member builders.
Files not reviewed (1)
  • src/AXSharp.compiler/src/ixc/Properties/launchSettings.json: Language not supported
Comments suppressed due to low confidence (2)

src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Plain/CsPlainSourceBuilder.cs:119

  • The eligibility tuple returned by IsMemberEligibleForTranspile defines the property as 'isEligibe'; update the reference to 'eligibility.isEligibe' to prevent potential compilation errors.
if (eligibility.isEligible)

src/AXSharp.compiler/src/AXSharp.Cs.Compiler/Plain/CsPlainSourceBuilder.cs:131

  • [nitpick] Consider removing or cleaning up commented-out code if it is no longer needed to improve code clarity.
//arrayType.ElementTypeAccess.Type.Accept(visitor, this);

Comment on lines +110 to +113
var elibility = semantics.IsMemberEligibleForConstructor(SourceBuilder);
if (elibility.isEligibe)
{
switch (semantics.Type)
switch (elibility.eligibleType)
Copy link
Preview

Copilot AI Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a typo in the variable name 'elibility'; consider renaming it to 'eligibility' for consistency and clarity.

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

@PTKu PTKu marked this pull request as ready for review March 26, 2025 19:42
@PTKu PTKu merged commit ffd6bd5 into dev Mar 26, 2025
2 checks passed
@PTKu PTKu deleted the missing-types-in-smodel branch March 26, 2025 19:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant