LLVM Version
0.5.0 was the first LLVM Version but now at 0.5.13 it is usable. For apps nothing should change, except that new binaries are faster and more performant.
Bug Fixes
- Buffer.indexOf/includes dispatch:
Buffer.indexOf()andBuffer.includes()were incorrectly routed through the string method path in codegen. Theis_string_only_methodguard now checks the receiver's static type and skips string dispatch forUint8Array/Buffer, letting these methods fall through todispatch_buffer_methodviajs_native_call_methodas intended. - Removed leftover debug
eprintln!injs_buffer_index_of. - See changelog for details of other fixes