Emil Valeev

Results 237 comments of Emil Valeev

# Corner Case (Shadowing) Beware of cases where you overwrite existing ports with childern's ``` :start -> foo -> { :start -> ... } ```

**this syntax collide with existing deferred connections**

will close for now, let's see if we'll face issues related to this

@dorian3343 likes it Rust-way Me: > I'm thinking about some cases where you have a lot of enum members and you really care about just a few of them >...

# Shared Queue As a Serialization Mechanism Basically each solution we can get will be serialization for connections with shared receivers. To do so, we need to get rid of...

# `IRGen` generates intermediate-step-less programs This is improvement of https://github.com/nevalang/neva/issues/644#issuecomment-2118988464 1. We wanna do as less as possible at runtime 2. We ready to do as much as possible at...

# Graph Reduction Algorithm In IR This is actual solution for https://github.com/nevalang/neva/issues/644#issuecomment-2118998148 Idea is to add extra step to `irgen` that will do graph reduction in a way that all...

``` let fanInMap = { r1: ["s1", "s2"], r2: ["s1", "s3"] }; let fanOutMap = { s1: ["r1", "r2"], s2: ["r1"], s3: ["r2"], }; ```