fmt + clippy
This commit is contained in:
parent
d004955c4e
commit
a9fdff0663
|
@ -168,7 +168,7 @@ pub enum Expr {
|
||||||
Variable(String),
|
Variable(String),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Hash)]
|
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
|
||||||
pub enum Literal {
|
pub enum Literal {
|
||||||
Char(char),
|
Char(char),
|
||||||
Int(isize),
|
Int(isize),
|
||||||
|
@ -185,7 +185,7 @@ impl From<Literal> for Value {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Hash)]
|
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
|
||||||
pub enum BinOpKind {
|
pub enum BinOpKind {
|
||||||
Add,
|
Add,
|
||||||
Subtract,
|
Subtract,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use logos::{Lexer, Logos};
|
use logos::{Lexer, Logos};
|
||||||
|
|
||||||
#[derive(Logos, Debug, PartialEq, Clone)]
|
#[derive(Logos, Debug, PartialEq, Eq, Clone)]
|
||||||
pub enum Token {
|
pub enum Token {
|
||||||
// Symbols
|
// Symbols
|
||||||
#[token("(")]
|
#[token("(")]
|
||||||
|
|
|
@ -2,6 +2,8 @@ use super::ValueRef;
|
||||||
use crate::ast::Block;
|
use crate::ast::Block;
|
||||||
use std::{hash::Hash, rc::Rc};
|
use std::{hash::Hash, rc::Rc};
|
||||||
|
|
||||||
|
type BuiltinRc = Rc<dyn Fn(&[ValueRef]) -> Result<(), crate::error::ErrorKind>>;
|
||||||
|
|
||||||
/// AbleScript Function
|
/// AbleScript Function
|
||||||
#[derive(Debug, PartialEq, Clone, Hash)]
|
#[derive(Debug, PartialEq, Clone, Hash)]
|
||||||
pub enum Functio {
|
pub enum Functio {
|
||||||
|
@ -49,7 +51,7 @@ impl Functio {
|
||||||
/// Built-in Rust functio
|
/// Built-in Rust functio
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct BuiltinFunctio {
|
pub struct BuiltinFunctio {
|
||||||
pub(super) function: Rc<dyn Fn(&[ValueRef]) -> Result<(), crate::error::ErrorKind>>,
|
pub(super) function: BuiltinRc,
|
||||||
pub(super) arity: usize,
|
pub(super) arity: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,7 +102,7 @@ impl Hash for BuiltinFunctio {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A method of distributting parameters across functio chain
|
/// A method of distributting parameters across functio chain
|
||||||
#[derive(Debug, PartialEq, Copy, Clone, Hash)]
|
#[derive(Debug, PartialEq, Eq, Copy, Clone, Hash)]
|
||||||
pub enum FunctioChainKind {
|
pub enum FunctioChainKind {
|
||||||
/// All parameters are equally distributed
|
/// All parameters are equally distributed
|
||||||
Equal,
|
Equal,
|
||||||
|
|
|
@ -58,7 +58,7 @@ impl Value {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Three-state logic value
|
/// Three-state logic value
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd)]
|
||||||
pub enum Abool {
|
pub enum Abool {
|
||||||
Never = -1,
|
Never = -1,
|
||||||
Sometimes = 0,
|
Sometimes = 0,
|
||||||
|
@ -163,7 +163,7 @@ impl Display for Value {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Runtime borrow-checked, counted reference to a [Value]
|
/// Runtime borrow-checked, counted reference to a [Value]
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
pub struct ValueRef(Rc<RefCell<Value>>);
|
pub struct ValueRef(Rc<RefCell<Value>>);
|
||||||
|
|
||||||
impl ValueRef {
|
impl ValueRef {
|
||||||
|
|
Loading…
Reference in a new issue