Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
[Fix] Parsing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevils committed Apr 14, 2016
1 parent 5b6f8de commit 4bd3800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/string-checker.js
Expand Up @@ -248,7 +248,7 @@ StringChecker.prototype = {
var parseErrors = file.getParseErrors();
if (parseErrors.length > 0) {
parseErrors.forEach(function(parseError) {
this._addParseError(errors, parseError);
this._addParseError(errors, parseError, file);
}, this);

return {output: source, errors: errors};
Expand Down

0 comments on commit 4bd3800

Please sign in to comment.