(search, columns)
| 153056 | |
| 153057 | class Exec { |
| 153058 | constructor(search, columns) { |
| 153059 | this.columns = columns; |
| 153060 | this.groups = VegaDeckGl.util.clone((0, _group.ensureSearchExpressionGroupArray)(search)); |
| 153061 | this.groups.forEach(group => { |
| 153062 | group.expressions.forEach(ex => { |
| 153063 | ex.column = this.getColumn(ex.name); |
| 153064 | ex.valueBool = valueToBoolean(ex.value); |
| 153065 | ex.valueLow = valueToString(ex.value).toLocaleLowerCase(); |
| 153066 | ex.stringOperation = isStringOperation(ex); |
| 153067 | }); |
| 153068 | }); |
| 153069 | } |
| 153070 | |
| 153071 | getColumn(name) { |
| 153072 | for (let i = 0; i < this.columns.length; i++) { |
nothing calls this directly
no test coverage detected