Indentations break the feed.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2016 / 10 / 05.mkd
blob59533ad18b06beda8f94e0af7472daa66003f62d
1 # 2016/10/05
3 ## 16:06
5 The `desiredAssertionStatus()` should not just always return false but instead
6 allow for assertions to be used. Since there may be no way to pass such
7 arguments to the virtual machine I believe I will handle it via system
8 properties for the most part. Assertion status will basically be static and
9 not dynamically set at runtime (this is simplest). So when it is first used it
10 will check if it has been detected and if it has the previously returned value
11 is used. Otherwise it will determine if they are enabled.
13 ## 16:09
15 Actually I force it to on, which I really like, however there could be code
16 out there (especially ancient JAR files) which could have assertions in it
17 that cause the program to fail, but where they normally appear to operate
18 as normal. So for the sake of compatibility, this must be changed.
20 ## 16:16
22 I suppose forcing on is rather evil, but it is a good evil.
24 ## 16:18
26 Also, `Class` is missing `getName`, which is rather nasty.