Correct spelling.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2019 / 03 / 21.mkd
blob435a980da4bfd1183b838cf3f7a57b8bfe55fc66
1 # 2019/03/21
3 ## 14:39
5 To help exception handling, I am going to need a table which contains the
6 unique set of possible exception handlers for each possible instruction
7 address. This way it will be easier to group them together and reduce the
8 work needed to calculate it each time an exception is needed.
10 ## 14:58
12 This can just be a part of `ExceptionHandlerTable`, basically a subset for
13 a given address.
15 ## 15:28
17 Now with equals and hashCode, I can easily check if two tables are the same.
18 Now I will essentially just do a method which returns exception tables for
19 a specific address.