Valid (though, in this case, not exactly useful) input code:
var _ = 1 .toString;
Invalid output code after ResourceLoader minification:
var _=1.toString;
This is not valid syntax: an integer number literal can’t be followed directly by a member operator. Valid syntax would be 1 .toString (with a space, as in the input code) or 1.0.toString.
Firefox message:
SyntaxError: identifier starts immediately after numeric literal
Chromium and Node.js message:
SyntaxError: Invalid or unexpected token