From 9fe4aa653f03069cf29f4e5eeee47ee74781e556 Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 4 Jun 2019 06:31:07 +0200 Subject: [PATCH] We will store 'finally' block bytecode here. --- include/ph7int.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ph7int.h b/include/ph7int.h index 9e33d69..b148cdb 100644 --- a/include/ph7int.h +++ b/include/ph7int.h @@ -1157,6 +1157,7 @@ struct ph7_exception { SySet sEntry; /* Compiled 'catch' blocks (ph7_exception_block instance) * container. */ + SySet sFinally; /* Compiled 'finally' instructions block (VmInstr) */ VmFrame *pFrame; /* Frame that trigger the exception */ }; /* Forward reference */