Merge pull request #1866 from dolanmiu/hot-fix/return-constructor-value

Fix more empty return values
This commit is contained in:
Dolan
2023-01-05 14:18:11 +00:00
committed by GitHub
4 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ export class SymbolRun extends Run {
if (typeof options === "string") {
super({});
this.root.push(new Symbol(options));
return;
return this;
}
super(options);