devalgupta404

Results 5 issues of devalgupta404

## Root Cause The `exportWasmSymbols` function had conditional logic that prevented proper global export: ```javascript // before : if (typeof exportedSymbol.value === 'undefined') { // Export functions } ``` ##...

# Implement -ffast-math flag mapping to wasm-opt --fast-math ## Description This PR implements the mapping from the `-ffast-math` compiler flag to the `wasm-opt --fast-math` optimization flag, as requested in issue...

## Fixes #225 - Implement libLLVMSharp custom functions ### Changes: - Added `GetFunctionType()` extension method to `LLVMValueRef` - Added `GetReturnType()` extension method to `LLVMValueRef` - Added comprehensive unit tests for...

This PR implements hashCode caching for Freezed models to improve performance for large, deeply nested objects. Currently, `hashCode` is recomputed every time it's accessed, which can be expensive for complex...

This PR fixes the equality comparison for `EqualUnmodifiableListView`, `EqualUnmodifiableSetView`, and `EqualUnmodifiableMapView` to use content-based comparison instead of object reference comparison. ## Changes - Updated `==` operator to use `DeepCollectionEquality().equals()` for...