XSharpPublic icon indicating copy to clipboard operation
XSharpPublic copied to clipboard

VOXPorter problem with unterminated block comment in textblock

Open cpyrgas opened this issue 1 year ago • 0 comments

If a textblock in a VO module contains a block comment with no ending marker, then entities below it are not getting parsed. For example this VO code

Entity1:

TEXTBLOCK HiXporter
/*
	unterminated block comment in textblock
	

Entity2: CLASS TestClass

Entity3:

METHOD Test() CLASS TestClass
RETURN NIL 

gets exported to

/*
TEXTBLOCK HiXporter
/-*
	unterminated block comment in textblock
	

CLASS TestClass

METHOD Test() CLASS TestClass
RETURN NIL 


*/

Of course there's a very simple workaround, to terminate the block comments in the VO textblock

cpyrgas avatar Feb 08 '24 18:02 cpyrgas