codemap icon indicating copy to clipboard operation
codemap copied to clipboard

A data structure for tracking source code positions, inspired by the type in rustc's libsyntax.

Results 3 codemap issues
Sort by recently updated
recently updated
newest added

I am trying to add C bindings for codemap. Some of the functions are not ffi::safe, so there are some warnings. But I think we can wrap those functions to...

Hi! I needed to store something other than a `String` inside CodeMap but currently that's not supported. The idea would be to add a generic type `T` to both CodeMap...

Useful for long running processes with state (think REPL). Current implementation is linear, can be optimized later to be `O(1)`.