diff --git a/lib/parse.js b/lib/parse.js index 074e118a..a87e868d 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -181,7 +181,7 @@ function JS_Parse_Error(message, line, col, pos) { this.message = message; this.line = line; this.col = col; - this.pos = pos + 1; + this.pos = pos; this.stack = new Error().stack; };