Is it possible to add support for inline functions and constants? An example of code ``` const pos:i32 = 10; store<i32>( pos + 10, 10 ); ``` That should be optimized to ``` store<i32>( 20, 10 ); ```