* Set a Property, Value combination without performing validations or adding * it to the CommitBuilder.
(prop: string, val: JSONValue)
| 317 | * it to the CommitBuilder. |
| 318 | */ |
| 319 | setUnsafe(prop: string, val: JSONValue): void { |
| 320 | this.propvals.set(prop, val); |
| 321 | } |
| 322 | |
| 323 | /** Sets the error on the Resource. Does not Throw. */ |
| 324 | setError(e: Error): void { |
no test coverage detected