Entity and sprite plan
This commit is contained in:
@@ -6,7 +6,7 @@ export class PropertyNode extends SwapNode {
|
||||
super(node, swapNode);
|
||||
|
||||
if (!(propertyReader instanceof PropertyReader))
|
||||
throw TypeError("propertyReader must be an instance of PropertyReader");
|
||||
throw TypeError("propertyReader must be an instance of `PropertyReader`");
|
||||
|
||||
this.propertyReader = propertyReader;
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ export class SwapNode extends BaseNode {
|
||||
super(node);
|
||||
|
||||
if (!(swapNode instanceof Node))
|
||||
throw TypeError("swapNode must be instance of Node");
|
||||
throw TypeError("swapNode must be instance of `Node`");
|
||||
|
||||
this.swapNode = swapNode;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user