VFP Runtime: Implemented AMEMBERS() for native objects (nInfo 0 and 1)#1783
Merged
RobertvanderHulst merged 1 commit intodevfrom Jan 12, 2026
Merged
VFP Runtime: Implemented AMEMBERS() for native objects (nInfo 0 and 1)#1783RobertvanderHulst merged 1 commit intodevfrom
RobertvanderHulst merged 1 commit intodevfrom
Conversation
RobertvanderHulst
added a commit
that referenced
this pull request
Jan 12, 2026
* [Compiler tests] Added C951 for #1742 and adjusted C950 for #1764 * More fixes for #1764 * [Vsintegration] Add commands for Target Framework selection in Debug Start button * [Vsintegration] Remove IsVS15 check * Add check for output == null * [Vsintegration] Add support for TargetFramework and TargetFrameworks field on General property page for SDK and normal projects * Added some strings for General Property Page * [Compiler tests] Small adjustments and marked fixed tests * [Compiler tests] Adjusted C427 (using LOGIC PTR in __FormattedText) to use the same adjusted code for X# that the X# SDK uses * [Vsintegration] Several changes to work with multiple targetFrameworks * VFP Runtime: Implemented AMEMBERS() for native objects (nInfo 0 and 1) (#1783) * Added new Templates for SDK-Style (#1784) Recreated all templates items and projects for dotnet new and Visual Studio --------- Co-authored-by: cpyrgas <chris@xsharp.eu> Co-authored-by: Irwin <rodriguez.irwin@gmail.com> Co-authored-by: Fabrice Foray <fforay@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi Team,
In this PR I have implemented the first version of
AMEMBERS()function.Implementation details:
nArrayContentsIDmodes 0 (1D Array, Names only) and 1 (2D Array, Name + Type).__FoxArrayresizing for both 1D and 2D results.Limitations (Phase 2):
nArrayContentsID = 3is not yet implemented.cFlagsfiltering (e.g., distinguishing "Native" vs "User Defined") is currently ignored (returns all public members)Tests:
AMembersTests.prgin the test project.ASubscript()logic for 2D navigation.