(expression: string)
| 10 | constructor(public separator: string) { } |
| 11 | |
| 12 | appendToExpression(expression: string) { this._expression += " " + expression + this.separator; } |
| 13 | isEmpty(): boolean { return this.expression.length === 0; } |
| 14 | |
| 15 | pair(name: string, value: any, formatter?: ExpressionStringFormatter, valueNameSuffix: string = "") { |
no outgoing calls
no test coverage detected