Embedding comments relevance/action lines (possible bugfix)

(imported topic written by SystemAdmin)

Bugfix suggestion.

Would it be possible to make Tivoli understand embedded comments in actionscripts when on the same line as a relevance statment? The code could be a bit tighter if comments could be on the same line.

Here’s the example of what screwed up for me:

if 
{x64 of operating system
} 
//Code to execute for x64 systems 

else 
//Code to execute for 32 bit systems endif

The code above jumps to the “else” statement on an x64 system, but it’s because of the comments being on the same line.

This works fine:

if 
{x64 of operating system
} 
//Code to execute for x64 systems 

else 
//Code to execute for 32 bit systems endif

Thanks,

Paul Kobres