Skip to content

Commit 4c00e2c

Browse files
committed
Fix build
1 parent 8b17aa3 commit 4c00e2c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/abstractions/src/store/backingStoreParseNodeFactory.ts

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ export class BackingStoreParseNodeFactory extends ParseNodeProxyFactory {
1414
* @param concrete the concrete implementation of the ParseNodeFactory
1515
*/
1616
public constructor(concrete: ParseNodeFactory) {
17+
if (!concrete) {
18+
throw new Error("Concrete ParseNodeFactory implementation is required");
19+
}
1720
super(
1821
concrete,
1922
(value) => {

0 commit comments

Comments
 (0)