Add support for convenience inlining of normal functions: ``` inline var result = f(x,y,z); inline result = f(x,y,z); inline f(x,y,z); ``` Requires hygenic renaming of local variables within the calling scope.