1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:27:43 +00:00

Spreadsheet: Use the LibJS bytecode VM

This commit is contained in:
Andreas Kling 2023-08-08 07:12:40 +02:00
parent acd366eddd
commit fcc72a787b
6 changed files with 38 additions and 35 deletions

View file

@ -158,7 +158,7 @@ JS::Value Cell::js_data()
if (m_kind == Formula)
return m_evaluated_data;
auto& vm = m_sheet->interpreter().vm();
auto& vm = m_sheet->vm();
return JS::PrimitiveString::create(vm, m_data);
}