You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace Ext;
class Opt
{
public xx {set,get};
}
class Test
{
public option;
publicfunctiontest()
{
letthis->option =newOpt();
letthis->option->xx ="a"; //Syntax error//butvar successopt;
let successopt =newOpt();
let successopt->xx ="a"; //this is success
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: