XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Created a test mdi app in VO and xPorted it first using standard VOGUI and then XGUI. Differences between the two in a datawindow containing many controls:   Main...
**Describe the bug** xSharp-Error for Delete Command **To Reproduce** Code to reproduce the behavior: ``` FUNCTION check_cursor AS VOID create cursor abc (mkey i, mident c(10)) insert into abc (mkey,mident)...
**Describe the bug** Support SQL Update (xsharp-error) **To Reproduce** Code: USING System USING System.Collections.Generic USING System.Text FUNCTION check_cursor AS VOID create cursor abc (mkey i, mident c(10)) insert into abc...
Receiving a "not implemented" exception when using the vfp-Function indexseek(). Expected behavior: - Full Support of the vfp-Indexseek() function - getting the error-hint at compile time, not at runtime. Example...
1. In the following code, put the caret on the keywords EXPORT, PROTECTED, EVENT, METHOD etc, they all get highlighted (on their own) as matching tokens like IF/ENDIF etc, which...
**Describe the bug** Keyword ALL seems to be not supported (Parser-Error) **To Reproduce** Code to reproduce the behavior: ``` USING System USING System.Collections.Generic USING System.Text FUNCTION check_cursor AS VOID create...
**Describe the bug** Single-step debugging with not supported VFP-Code is not working. Lines (in that case from 57 to 86) and breakpoints are ignored. **To Reproduce** Code to reproduce the...
Following results to error XS0432: Alias 'BaseClass' not found for the 2 parent method calls with "::". I assume the only way to make this work is via a late...
I am not sure if this is supposed to be supported or not, please ignore if not: ``` FUNCTION Start() AS VOID LOCAL a AS ARRAY of INT a :=...
This results to a parser error: `WAIT "Hello" WINDOW TIMEOUT 1` The full WAIT definition as specified in https://hackfox.github.io/section4/s4g293.html : ``` WAIT [ CLEAR ] | [ cMessage ][ TO...