Ambiguity between local access and global define

This forum is meant for questions and discussions about the X# language and tools
Post Reply
User avatar
baramuse
Posts: 89
Joined: Tue Nov 29, 2022 8:31 am
Location: France

Ambiguity between local access and global define

Post by baramuse »

Hi,

we've troubleshoot some of our ported code today and found out we had an ambiguous variable access between a local access and a global define.
The Global define is not even part of the current project but from another projected referenced in the solution
We've disabled the implicit namespace compiler option.
here are the culprits :
in project1.class1

Code: Select all

CLASS LocDetArray
	ACCESS STATUT_CTRL()
		RETURN ( SELF:FIELDGET( #STATUT ) = STATUT_CTRL )
END CLASS
in project2, global :

Code: Select all

DEFINE STATUT_CTRL	 	  		:= "4"
In our case we were having a STACKOVERFLOW crash as the access would go into an infinite loop.
So now we prefix the LocFacComLib.Functions.STATUT_CTRL to get the global define to lift the ambiguity.

How could we further prevent this ?
Can't the compiler warn us, like it does for other ambigous calls ?

Regards.
User avatar
Chris
Posts: 4725
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

Re: Ambiguity between local access and global define

Post by Chris »

Hi Basile,

In order to prevent this, you'd need to enable the compiler project option "Enforce SELF", which will make VO require to use "SELF:" for accessing any class variables/properties/methods as in VO. Without SELF: in your code, when this option is enabled, the compiler would resolve the identifier to the DEFINE/GLOBAL instead.

But unfortunately I see this isn't working correctly now in the compiler. I will open a report about this, including a suggestion to show a warning about ambiguity even when this option is not enabled. Since you are a subscriber, I will send you an updated compiler as soon as this is fixed!
Chris Pyrgas

XSharp Development Team
chris(at)xsharp.eu
User avatar
Chris
Posts: 4725
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

Re: Ambiguity between local access and global define

Post by Chris »

Ah, I just noticed that VO does require the use of SELF: for calling methods and properties, but not for accessing class variables! This is so bad...

In X#, the /enforceself option covers all cases and I think we should keep it this way. But it means it's not the best solution in your case, since enforcing the use of self: everywhere will probaly require adding this in several places where it was needed in the original VO code (even designers generate such code). The fix we need to make is to make the compiler give priority to GLOBALs/DEFINEs, instead of same named ACCESS/ASSIGNs (and warn about the ambiguity).
Chris Pyrgas

XSharp Development Team
chris(at)xsharp.eu
Post Reply