adl icon indicating copy to clipboard operation
adl copied to clipboard

Prototyping serialization without typeclasses in the haskell backend

Open timbod7 opened this issue 3 years ago • 1 comments

So far I've just hand translated the

https://github.com/timbod7/adl/blob/master/haskell/compiler/tests/demo1/input/picture.adl

and added some support to the adl runtime.

timbod7 avatar Apr 20 '21 23:04 timbod7

The basic pattern is that functions that previously had signatures like:

fn :: AdlValue a => ....

now become

fn :: JsonBinding a -> ...

timbod7 avatar Apr 20 '21 23:04 timbod7