emmylua_code_analysis 0.22.0

A library for analyzing lua code.
Documentation
1
2
3
4
5
6
7
use crate::FileId;

pub trait LuaIndex {
    fn remove(&mut self, file_id: FileId);

    fn clear(&mut self);
}