mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
8 lines
314 B
Swift
8 lines
314 B
Swift
struct ExpressionContext {
|
|
let evaluators: (CalcExpression.Symbol) -> Function?
|
|
let variableValueProvider: (String) -> Any?
|
|
let customFunctionsStorageProvider: (String) -> DivFunctionsStorage?
|
|
let dynamicVariablesEvaluator: (CalcExpression.Symbol) -> Function?
|
|
let errorTracker: ExpressionErrorTracker
|
|
}
|