ColinEberhardt / assemblyscript-temporal

An implementation of TC39 temporal for AssemblyScript
24 stars 6 forks source link

Use @inline to replace @lazy where possible #51

Open SebastianSpeitel opened 3 years ago

SebastianSpeitel commented 3 years ago

Since this now tests an optimized build, even neither inlining nor marking as @lazy will fail now, since binaryan omits unused variables during optimization.

And not optimizing won't result in an empty output because i32.MAX_VALUE will be emitted.