下面是Delphi有关Abort的英文帮助:
Abort raises a special "silent exception" (EAbort), which operates like any
other exception, but does not display an error message to the end user. Abort
redirects execution to the end of the last try .. finally block.
上面说Abort把程序流程移到了try..finally中,那么这个语句在VCL源码中什么位置呢?