• S
    Rewrite SyntaxEnv · b74613bd
    Steven Fackler 提交于
    I'd really like to be able to do something like
    
    struct MapChain<'next, K, V> {
        info: BlockInfo,
        map: HashMap<K, V>,
        next: Option<&'next mut MapChain<'next, K, V>
    }
    
    but I can't get the lifetimes to work out.
    b74613bd
expand.rs 56.2 KB