(key: number, clause: SearchExpressionClause)
| 148 | } |
| 149 | |
| 150 | newGroup(key: number, clause: SearchExpressionClause) { |
| 151 | const group: InputSearchExpressionGroup = { |
| 152 | key, |
| 153 | clause, |
| 154 | expressions: [this.newExpression(0, null)], |
| 155 | }; |
| 156 | return group; |
| 157 | } |
| 158 | |
| 159 | updateGroup(partialGroup: Partial<InputSearchExpressionGroup>, groupIndex: number) { |
| 160 | const groups: InputSearchExpressionGroup[] = [...this.state.groups]; |
no test coverage detected