Files @ 85419b0950c7
Branch filter:

Location: CSY/reowolf/src/collections/mod.rs

85419b0950c7 192 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
MH
Rewrote typing to use indices.

Currently it is slower than before, because we do a HashMap lookup
followed up by actually using the index. But it serves as the basis
for a faster type inferencer.

The main goal, however, is to fix the manner in which polymorph
types are determined. The typing queue of functions still needs to
correctly write this data to the type table.
1
2
3
4
5
6
7
8
mod string_pool;
mod scoped_buffer;
mod sets;


pub(crate) use string_pool::{StringPool, StringRef};
pub(crate) use scoped_buffer::{ScopedBuffer, ScopedSection};
pub(crate) use sets::DequeSet;