ac9a468aa6
this will allow complicated changes to execution without changing the typescript interface
15 lines
546 B
Plaintext
15 lines
546 B
Plaintext
open Jest
|
|
open Reducer_TestHelpers
|
|
|
|
describe("Eval with Bindings", () => {
|
|
testEvalBindingsToBe("x", list{("x", ExternalExpressionValue.EvNumber(1.))}, "Ok(1)")
|
|
testEvalBindingsToBe("x+1", list{("x", ExternalExpressionValue.EvNumber(1.))}, "Ok(2)")
|
|
testParseToBe("y = x+1; y", "Ok({(:$_let_$ :y {(:add :x 1)}); :y})")
|
|
testEvalBindingsToBe("y = x+1; y", list{("x", ExternalExpressionValue.EvNumber(1.))}, "Ok(2)")
|
|
testEvalBindingsToBe(
|
|
"y = x+1",
|
|
list{("x", ExternalExpressionValue.EvNumber(1.))},
|
|
"Ok(@{x: 1,y: 2})",
|
|
)
|
|
})
|