Skip to content

Commit 8cdf09b

Browse files
committed
🐛 TypeChecker分離時の変数名変更忘れ修正
1 parent be1e431 commit 8cdf09b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/TypeChecker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class TypeChecker {
2222
}
2323

2424
static typeNames(expected) {
25-
if (Array.isArray(expected)) return expected.map((t) => t?.name || TypeChecker.__iface_stringify(t)).join(" | ");
26-
return expected?.name || TypeChecker.__iface_stringify(expected);
25+
if (Array.isArray(expected)) return expected.map((t) => t?.name || TypeChecker.stringify(t)).join(" | ");
26+
return expected?.name || TypeChecker.stringify(expected);
2727
}
2828

2929
static stringify(value) {

0 commit comments

Comments
 (0)