参考:help_harmony,Asserts Under the Debugger,
7:
The function _fassert is the built-in assert handler provided by the compiler. Modify the file to allow the debugger to fire a breakpoint when running the debugger (when defined(__DEBUG) is true) by adding the code shown in red in the following example.
#if defined(NDEBUG) || !defined(__DEBUG)