Improve error message to quite user value

This commit is contained in:
Jordan Eldredge 2020-01-13 20:50:07 -08:00
parent 97c6194bbb
commit 0a342f2cd1

View file

@ -31,7 +31,7 @@ function mapType(makiType) {
return "any";
}
throw new Error(`Unhandled Maki type ${makiType}`);
throw new Error(`Unhandled Maki type "${makiType}"`);
}
function argumentTypeForParameter(param) {