Assuming a javascript-like language, how can we implement a system such as:
a = {}; a.foo = {}; a.foo.bar = 42; print a.foo['bar'];
using LLVM C ++ API?
I did not find any documentation about type data types (such as hashMap heriting from Value), so I got lost here. The LLVM C web page is not useful in any way, since there is no such data type in C / C ++.
I did a Kaleidoscope tutorial but did not find any other really good tutorials.
source share