File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " its-typescript-to-lua" ,
3- "version" : " 1.33.2-2 " ,
3+ "version" : " 1.33.2-3 " ,
44 "description" : " A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!" ,
55 "repository" : " https://github.com/TypeScriptToLua/TypeScriptToLua" ,
66 "homepage" : " https://typescripttolua.github.io/" ,
Original file line number Diff line number Diff line change @@ -855,7 +855,8 @@ export function isInlineFunctionExpression(expression: FunctionExpression): expr
855855 expression . body . statements ?. length === 1 &&
856856 isReturnStatement ( expression . body . statements [ 0 ] ) &&
857857 expression . body . statements [ 0 ] . expressions !== undefined &&
858- ( expression . flags & NodeFlags . Inline ) !== 0
858+ ( expression . flags & NodeFlags . Inline ) !== 0 &&
859+ false
859860 ) ;
860861}
861862
You can’t perform that action at this time.
0 commit comments