mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
a2ed8633cc
Избавляюсь от условной компиляции INTERNAL_BUILD, потому что непонятно, как этим пользоваться на клиентах в условиях библиотеки.
8 lines
157 B
Swift
8 lines
157 B
Swift
final class ExpressionErrorsStorage {
|
|
private(set) var errors: [ExpressionError] = []
|
|
|
|
func add(error: ExpressionError) {
|
|
errors.append(error)
|
|
}
|
|
}
|