luaur-compiler 0.1.2

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::records::compile_error::CompileError;
use luaur_ast::records::location::Location;

impl CompileError {
    pub fn get_location(&self) -> &Location {
        &self.location
    }
}