Commit
              31d097f2cbdefe9b6cf9fff7ad04e45ac2f3b99f
              by noreply[WIP] Lua typecasting (#997)
* first attempt
 uses typeEnsure functions to ensure correct types at all times
intermediate language is not the same as in JASS, so compiletime
execution is not correct
* restore fromIndex and toIndex functions for intermediate language
 The typeEnsure functions have no effect on compiletime, so lua
compiletime should now be exactly like JASS compiletime.
ensured with intEnsure
JASS
though they are already integers, so it would not be necessary
* restore fromIndex and toIndex for overrides
* remove unnecessary typeEnsure function
* reactivate jass testing
* replace non numeric zero compiletime results with null/nil in lua
 compiletime results are initially evaluated to 0 for objects that are
null
* fix type filtering
 use entry type for arrays and member type for member variables
* fix failing tests
 use regular expressions to only check the functions of interest and
ignore other parts of the output
* Add parentheses around tables in lua
 Indexing table literals only works with parentheses around them.
 Co-authored-by: Frotty <[email protected]>
 (commit: 31d097f)