Jump to content

  • Log In with Google      Sign In   
  • Create Account

14 years ago on June 15th Gamedev.net was first launched! We want to thank all of you for being part of our community and hope the best years are ahead of us. Happy birthday Gamedev.net!

#ActualAndreas Jonsson

Posted 21 April 2012 - 05:15 PM

Hello,

Are private property accessors supported when using the non-prefixed syntax?

This code:

class TestClass
{
	private int MyProp
	{
		get { return 1;   }  
	}
}

results in a crash:

>msvcr90d.dll!_wassert(const wchar_t * expr=0x020fa840, const wchar_t * filename=0x020fa798, unsigned int lineno=3688)  Line 346   C
asCBuilder::CreateDataTypeFromNode(asCScriptNode * node=0x05a3c5e0, asCScriptCode * file=0x0546cf90, const asCString & implicitNamespace={...}, bool acceptHandleForScope=false, asCObjectType * currentType=0x00000000)  Line 3688 + 0x1d bytes		 C++
asCBuilder::RegisterVirtualProperty(asCScriptNode * node=0x05a3c5e0, asCScriptCode * file=0x0546cf90, asCObjectType * objType=0x05542d58, bool isInterface=false, bool isGlobalFunction=false, const asCString & ns={...}, bool isExistingShared=false)  Line 3284 + 0x39 bytes   C++
asCBuilder::ParseScripts()  Line 468 + 0x3d bytes	  C++
asCBuilder::Build()  Line 192			   C++
asCModule::Build()  Line 205 + 0xb bytes	 C++

Using 2.23.0.

#1SadSingleton

Posted 16 April 2012 - 12:31 PM

Hello,

Are private property accessors supported when using the non-prefixed syntax?

This code:

class TestClass
{
	private int MyProp
	{
		get { return 1;   }  
	}
}

results in a crash:

>msvcr90d.dll!_wassert(const wchar_t * expr=0x020fa840, const wchar_t * filename=0x020fa798, unsigned int lineno=3688)  Line 346   C
 asCBuilder::CreateDataTypeFromNode(asCScriptNode * node=0x05a3c5e0, asCScriptCode * file=0x0546cf90, const asCString & implicitNamespace={...}, bool acceptHandleForScope=false, asCObjectType * currentType=0x00000000)  Line 3688 + 0x1d bytes		 C++
 asCBuilder::RegisterVirtualProperty(asCScriptNode * node=0x05a3c5e0, asCScriptCode * file=0x0546cf90, asCObjectType * objType=0x05542d58, bool isInterface=false, bool isGlobalFunction=false, const asCString & ns={...}, bool isExistingShared=false)  Line 3284 + 0x39 bytes   C++
 asCBuilder::ParseScripts()  Line 468 + 0x3d bytes	  C++
 asCBuilder::Build()  Line 192			   C++
 asCModule::Build()  Line 205 + 0xb bytes	 C++

Using 2.23.0.

PARTNERS