Page 1 of 1

Enable assert statements?

Posted: Tue Jun 05, 2012 5:27 pm
by jon80
It would be nice if the developers of TextPad 5.4.2 decided to implement the functionality which automatically runs the following command when an assert statement is detected in the code. The option is commonly accessible through Tools > External Tools > Compile (Ctrl + 1).

Code: Select all

class Assertion
{
	public static void main (String[] args)
	{
		int a = 5;
		assert (a != 5);
	}
}
[/code]