namespace sys.core
class SystemDebug
def Assert(test: Bool);
def Assert(test: Bool, error: String);
Throws an exception if the condition is false, but only if the "Debug" flag is set for compilation. "Debug" builds have the "Trace" flag set. Should be used for often for run-time assertion in "Debug" builds, to test conditions which should not fail.
test=>
error=>
def Error(error: String);
Throws an exception with a string message, but only if the "Trace" flag is set for compilation. "Release" builds have the "Trace" flag set.
error=> the error message to throw