mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
allow js method chaining
This commit is contained in:
parent
7ac147de32
commit
35ffd11321
5
a.hlm
5
a.hlm
|
@ -1,4 +1 @@
|
||||||
let x: num = 1,
|
print("Hello\n");
|
||||||
y: num = 2,
|
|
||||||
in
|
|
||||||
println(if x + y == 3 then 69 else 0);
|
|
|
@ -14,7 +14,7 @@ pub enum JSExpr {
|
||||||
Op(&'static str, Box<Self>, Option<Box<Self>>),
|
Op(&'static str, Box<Self>, Option<Box<Self>>),
|
||||||
|
|
||||||
Call(Box<Self>, Vec<Self>),
|
Call(Box<Self>, Vec<Self>),
|
||||||
Method(Box<Self>, String, Vec<Self>),
|
Method(Box<Self>, String, Option<Vec<Self>>),
|
||||||
Lambda {
|
Lambda {
|
||||||
args: Vec<String>,
|
args: Vec<String>,
|
||||||
body: Vec<Self>,
|
body: Vec<Self>,
|
||||||
|
@ -76,14 +76,18 @@ impl Display for JSExpr {
|
||||||
write!(f, ")")
|
write!(f, ")")
|
||||||
},
|
},
|
||||||
JSExpr::Method(c, m, args) => {
|
JSExpr::Method(c, m, args) => {
|
||||||
write!(f, "{}.{}(", c, m)?;
|
write!(f, "{}.{}", c, m)?;
|
||||||
|
if let Some(args) = args {
|
||||||
|
write!(f, "(")?;
|
||||||
for (i, arg) in args.iter().enumerate() {
|
for (i, arg) in args.iter().enumerate() {
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
write!(f, ", ")?;
|
write!(f, ", ")?;
|
||||||
}
|
}
|
||||||
write!(f, "{}", arg)?;
|
write!(f, "{}", arg)?;
|
||||||
}
|
}
|
||||||
write!(f, ")")
|
write!(f, ")")?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
},
|
},
|
||||||
JSExpr::Lambda { args, body } => {
|
JSExpr::Lambda { args, body } => {
|
||||||
write!(f, "((")?;
|
write!(f, "((")?;
|
||||||
|
|
|
@ -158,9 +158,20 @@ pub fn translate_js_expr(expr: Expr) -> JSExpr {
|
||||||
JSExpr::Method(
|
JSExpr::Method(
|
||||||
Box::new(JSExpr::Sym("console".to_string())),
|
Box::new(JSExpr::Sym("console".to_string())),
|
||||||
"log".to_string(),
|
"log".to_string(),
|
||||||
args.into_iter().map(translate_js_expr).collect(),
|
Some(args.into_iter().map(translate_js_expr).collect()),
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
"print" => {
|
||||||
|
JSExpr::Method(
|
||||||
|
Box::new(JSExpr::Method(
|
||||||
|
Box::new(JSExpr::Sym("process".to_string())),
|
||||||
|
"stdout".to_string(),
|
||||||
|
None,
|
||||||
|
)),
|
||||||
|
"write".to_string(),
|
||||||
|
Some(args.into_iter().map(translate_js_expr).collect()),
|
||||||
|
)
|
||||||
|
}
|
||||||
_ => JSExpr::Call(
|
_ => JSExpr::Call(
|
||||||
Box::new(translate_js_expr(*f)),
|
Box::new(translate_js_expr(*f)),
|
||||||
args.into_iter().map(translate_js_expr).collect(),
|
args.into_iter().map(translate_js_expr).collect(),
|
||||||
|
|
Loading…
Reference in a new issue