2021-11-22 05:25:50 -05:00

52 lines
1.2 KiB
Rust

use std::{
fmt::Display,
io::{Result, Write},
};
use super::{luajit::LuaJIT, luau::Luau};
pub struct Infix<T> {
rhs: &'static str,
inner: T,
}
impl<T> Infix<T> {
pub fn new(rhs: &'static str, inner: T) -> Self {
Infix { rhs, inner }
}
}
impl<T> Display for Infix<T>
where
T: Display,
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.inner.fmt(f)?;
self.rhs.fmt(f)
}
}
pub trait Edition {
fn runtime(&self) -> &'static str;
fn start_block(&self, w: &mut dyn Write) -> Result<()>;
fn start_loop(&self, level: usize, w: &mut dyn Write) -> Result<()>;
fn start_if(&self, cond: &str, w: &mut dyn Write) -> Result<()>;
fn end_block(&self, level: usize, w: &mut dyn Write) -> Result<()>;
fn end_loop(&self, w: &mut dyn Write) -> Result<()>;
fn end_if(&self, level: usize, w: &mut dyn Write) -> Result<()>;
fn br_target(&self, level: usize, in_loop: bool, w: &mut dyn Write) -> Result<()>;
fn br_to_level(&self, level: usize, up: usize, is_loop: bool, w: &mut dyn Write) -> Result<()>;
fn i64(&self, i: i64) -> Infix<i64>;
}
pub fn from_string(name: &str) -> Option<&'static dyn Edition> {
match name.to_ascii_lowercase().as_str() {
"luau" => Some(&Luau),
"luajit" => Some(&LuaJIT),
_ => None,
}
}