Correct spelling.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2014 / 09 / 26.mkd
blob359ae6c1f2a0a9c428d55d05b4e424d23a0ef6bc
1 # 2014/09/26
3 ***DISCLAIMER***: _These notes are from the defunct k8 project which_
4 _precedes SquirrelJME. The notes for SquirrelJME start on 2016/02/26!_
5 _The k8 project was effectively a Java SE 8 operating system and as such_
6 _all of the notes are in the context of that scope. That project is no_
7 _longer my goal as SquirrelJME is the spiritual successor to it._
9 ## 07:49
11 It feels great to get some progress done, avoiding walls is nice.
13 ## 22:41
15 Had this idea for the native compiler optimization, optimize out certain
16 aspects of the library. Say if checkedList in Collections is used and the
17 compiler determines that the specific argument is never violated and it is
18 known to be impossible to violate, then it could optimize out the static
19 method call and make it a plain list. However it can only be safely done if
20 the list is local and always remains local (never becomes visible to the
21 outside).