lua-rs icon indicating copy to clipboard operation
lua-rs copied to clipboard

Pure Rust implementation of Lua compiler.

Results 3 lua-rs issues
Sort by recently updated
recently updated
newest added

I get this error trying on compile that tool: ``` error[E0277]: the trait bound `u8: Buf` is not satisfied --> src/scanner.rs:257:25 | 257 | self.buffer.put(c as u8) | ^^^^^^^ the...

The following code is tripping a syntax error: ``` local FOOBAR = { [0xDEADBEEF] = true } ``` However, this doesn't: ``` local FOOBAR = { [100] = true, }...