XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Following code does not produce any compiler error about the missing SELF keywords: ``` #pragma options (enforceself, on) CLASS TestClass PROTECT n AS INT EXPORT o AS OBJECT CONSTRUCTOR() ?...
**Describe the bug** xSharp error when using SQL Select with join **To Reproduce** Code to reproduce the behavior: ``` create cursor abc (mkey i, mident c(10)) insert into abc (mkey,mident)...
**Describe the bug** xsharp-error when using SQL Select into with functions **To Reproduce** Code to reproduce the behavior: ``` USING System USING System.Collections.Generic USING System.Text FUNCTION check_cursor AS VOID *...
**Describe the bug** xSharp Error when using SELECT into Cursor **To Reproduce** ``` create cursor abc (mkey i, mident c(10)) insert into abc (mkey,mident) values (1,"a") insert into abc (mkey,mident)...
**Describe the bug** Support of Keyword FOR (xsharp-error) **To Reproduce** Code to reproduce the behavior: ``` USING System USING System.Collections.Generic USING System.Text FUNCTION check_cursor AS VOID create cursor abc (mkey...
X# Version : 2.20.0.3 1. You can't use **?** in a Select statement. to pass parameters.For example: ```foxpro CursorAdapter.SelectCmd = "Select ID, Name From Demo Where ID = ?VariableName "...
An error occurs during build if the attribute value is a positive integer. ```foxpro CursorAdapter.DataSource = 1 && The value is a handle. This is allowed in VFP ``` There...
Small issue, error about unknown variable "err" is reported on the BEGIN SEQUENCE line, not on the RECOVER USING one. Also it is being reported by the compiler 3 times...
VFP dialect, For example in the code below: ```foxpro With This . EndWith ``` Note the dot in the code. When dot is entered, no member information is listed. While...