diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-05-08 11:41:56 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2025-03-02 14:23:21 +0000 |
| commit | bec1ebf1209c5a56ad4208d820222cb497b5f98c (patch) | |
| tree | 0663fbbd99d580b55b7aa611b415afd946b738bb /spec/result | |
| parent | fix docs (diff) | |
| download | alive-bec1ebf1209c5a56ad4208d820222cb497b5f98c.tar.gz alive-bec1ebf1209c5a56ad4208d820222cb497b5f98c.zip | |
rename RTNode.value to RTNode.result (to match Result class)
Diffstat (limited to 'spec/result')
| -rw-r--r-- | spec/result/const_spec.moon | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/result/const_spec.moon b/spec/result/const_spec.moon index 55d5175..31eec4e 100644 --- a/spec/result/const_spec.moon +++ b/spec/result/const_spec.moon @@ -111,9 +111,9 @@ describe 'Constant', -> it 'looks up symbols in the scope', -> scope = with Scope! - \set 'number', RTNode value: Constant.num 3 - \set 'hello', RTNode value: Constant.str "world" - \set 'goodbye', RTNode value: Constant.sym "again" + \set 'number', RTNode result: Constant.num 3 + \set 'hello', RTNode result: Constant.str "world" + \set 'goodbye', RTNode result: Constant.sym "again" assert_eval = (sym, val) -> const = Constant.sym sym |
