Non-English identifier error. Topic is solved

Report problems with documented functionality
IMEime
Posts: 750
Joined: 20 Sep 2014, 06:15

Non-English identifier error.

06 May 2017, 01:16

I'm with AHK 64 Unicode (Code file is UTF 16).

The following code emits error.
Because, the property has non-English characters.
If you use English-only ones, it works well.

Code: Select all

myInstance := new myClass
MsgBox % myInstance.my属性	
myInstance.my属性 := "Changed.."
MsgBox % myInstance.my属性
Return

class myClass 
{
	myField := "Initial.."					
	my属性 
	{
		get 
		{
			Return this.myField
		}
		set 
		{
			Return this.myField := value
		}
	}		
}
IMEime
Posts: 750
Joined: 20 Sep 2014, 06:15

Re: Non-English identifier error.

13 May 2017, 01:53

Thanks !!
감사합니다 !!

Return to “Bug Reports”

Who is online

Users browsing this forum: No registered users and 21 guests