Where is the rule graph seeded with built-in nodes...
# development
b
Where is the rule graph seeded with built-in nodes like Process -> FallibleProcessResult?
1
c
I believe that is in engine/intrinsics.rs (on my phone so can't check easily)
e
b
Hmmm OK then there's a bug in my code. I'm trying to add a new type which can produce a ProcessResult and am getting graph errors. I added it to the list of intrinsic. I'll keep looking 🔎
Ah yup. Weird if I await a ProcessResult it errors, but awaiting a FallibleProcessResult doesn't
I thought there was a rule to convert Fallible -> (infallible)?
c
There is, in process.py.
e
There is, but rule graph errors are still often ~inscrutable.
b
For now I'll just await Fallible. It's a PoC anyways