Re: [codegen] Dealing with conflicting names in target language

2022-10-17 Thread -
Thank you Antoine, I suspected as much :) Will have to dig into that. For future reference I'm basing my work off this : https://github.com/dcastro/haskell-flatbuffers On Mon, 17 Oct 2022 at 15:25, Antoine Pitrou wrote: > > Hi Marco, > > Le 16/10/2022 à 21:12, - a écrit : > > Hi all, > > > > I

Re: [codegen] Dealing with conflicting names in target language

2022-10-17 Thread Antoine Pitrou
Hi Marco, Le 16/10/2022 à 21:12, - a écrit : Hi all, I've noticed the Arrow schema [1] defines some table types that clash with primitive type names in the language I'm targeting. For instance, we see `table Int{}` and `table Bool{}` , both of which are primitive types in Haskell. Are there

[codegen] Dealing with conflicting names in target language

2022-10-17 Thread -
Hi all, I've noticed the Arrow schema [1] defines some table types that clash with primitive type names in the language I'm targeting. For instance, we see `table Int{}` and `table Bool{}` , both of which are primitive types in Haskell. Are there mechanisms in the Arrow standard that let one byp