mirror of
https://github.com/HigherOrderCO/Bend.git
synced 2024-11-04 01:20:56 +03:00
Add constructor error in order kwargs, add kwarg to cspell
This commit is contained in:
parent
7c403e9ddf
commit
461305ef35
12
cspell.json
12
cspell.json
@ -43,6 +43,7 @@
|
|||||||
"interner",
|
"interner",
|
||||||
"itertools",
|
"itertools",
|
||||||
"ITRS",
|
"ITRS",
|
||||||
|
"kwarg",
|
||||||
"kwargs",
|
"kwargs",
|
||||||
"lcons",
|
"lcons",
|
||||||
"linearization",
|
"linearization",
|
||||||
@ -99,13 +100,6 @@
|
|||||||
"walkdir",
|
"walkdir",
|
||||||
"wopts"
|
"wopts"
|
||||||
],
|
],
|
||||||
"files": [
|
"files": ["**/*.rs", "**/*.md"],
|
||||||
"**/*.rs",
|
"ignoreRegExpList": ["HexValues", "/λ/g", "/-O/g"]
|
||||||
"**/*.md"
|
|
||||||
],
|
|
||||||
"ignoreRegExpList": [
|
|
||||||
"HexValues",
|
|
||||||
"/λ/g",
|
|
||||||
"/-O/g"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -123,7 +123,7 @@ impl Expr {
|
|||||||
arg.order_kwargs(book)?;
|
arg.order_kwargs(book)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => return Err(format!("Constructor '{name}' not found.")),
|
||||||
},
|
},
|
||||||
Expr::MapInit { entries } => {
|
Expr::MapInit { entries } => {
|
||||||
for entry in entries {
|
for entry in entries {
|
||||||
|
Loading…
Reference in New Issue
Block a user