Functions supplied in functionsNeedContext does not work as it throws function not found error. This is because we are checking for custom functions in if (this.functions[name]) {
Right now only functionsNeedContext can access context position. Is there anyway we can inject context as the last argument to all functions ? Or the first arg ? Its quite useful when executing side-effects since we know the positions of the cell.
2 issues
Functions supplied in
functionsNeedContext
does not work as it throwsfunction not found
error. This is because we are checking for custom functions inif (this.functions[name]) {
Right now only
functionsNeedContext
can access context position. Is there anyway we can injectcontext
as the last argument to all functions ? Or the first arg ? Its quite useful when executing side-effects since we know the positions of the cell.