refactor(cell-path): update Value::follow_cell_path

- remove `insensitive` parameter, case sensitivity is determined by the
  cell-path itself
- update call sites
This commit is contained in:
Bahex
2025-05-04 10:25:55 +03:00
parent 662d7b566f
commit e10538bd8d
17 changed files with 42 additions and 54 deletions

View File

@@ -91,7 +91,7 @@ impl Inc {
pub fn inc(&self, head: Span, value: &Value) -> Result<Value, LabeledError> {
if let Some(cell_path) = &self.cell_path {
let cell_value = value.follow_cell_path(&cell_path.members, false)?;
let cell_value = value.follow_cell_path(&cell_path.members)?;
let cell_value = self.inc_value(head, &cell_value)?;