Skip to content

Commit

Permalink
feat(experiential): new design method x4
Browse files Browse the repository at this point in the history
eliminate loop [ci skip]
  • Loading branch information
Bugs5382 committed Dec 9, 2023
1 parent 87ddc8a commit 8c2cc05
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ export class Node implements INode {
protected parent: Node | null;

private _children: Node[];
private _message: Message;
private _message: Message | undefined;
private _delimiterText: string;
private _delimiter: Delimiters;
private _path: string[];
private _text: string;

Expand All @@ -28,7 +29,8 @@ export class Node implements INode {
this._path = []
this._text = text
this._delimiterText = ""
this._message = new Message()
this._message = undefined
this._delimiter = delimiter;


}
Expand Down

0 comments on commit 8c2cc05

Please sign in to comment.