Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 676534124
  • Loading branch information
Soy Authors authored and copybara-github committed Oct 11, 2024
1 parent cba8233 commit 6da4b4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion javascript/soyutils_usegoog.js
Original file line number Diff line number Diff line change
Expand Up @@ -2440,7 +2440,8 @@ const assertParamType = function(
if (goog.DEBUG) {
asserts.fail(
'expected ' + paramKind + ' ' + paramName + ' of type ' +
jsDocTypeStr + ', but got ' + googDebug.runtimeType(param) + '.');
jsDocTypeStr + ', but got ' + googDebug.runtimeType(param) + ' (' +
googDebug.expose(param) + ').');
}
asserts.fail('parameter type error. Enable DEBUG to see details.');
}
Expand Down

0 comments on commit 6da4b4c

Please sign in to comment.