Implement native LSL lexer runtime (#81)
Some checks failed
Native code generation / deterministic (push) Failing after 8m20s
Imaging and meshing gate / native (push) Successful in 5m20s
JPEG 2000 feature / linux (push) Successful in 2m46s
Native Rust workspace compile / compile (push) Failing after 7m14s
Skia feature / linux (push) Successful in 30m39s

This commit is contained in:
2026-08-11 01:55:14 +00:00
parent 2f1c15c081
commit 73cef10054
13 changed files with 3917 additions and 1112 deletions

View File

@@ -269,7 +269,7 @@ pub struct ArrayList(pub Vec<Object>);
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Array(pub Vec<Object>);
#[derive(Clone, Debug, Eq, PartialEq)]
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct Hashtable(pub std::collections::HashMap<Object, Object>);
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
@@ -1307,8 +1307,10 @@ impl<'a, T> IntoIterator for &'a ImmutableList<T> {
pub struct ICollection;
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub struct UnicodeCategory(pub i32);
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
pub struct TextEncoding;
pub struct SocketException;