|
@@ -73,7 +73,7 @@ export const SyntaxErrorFactory = Object.freeze({
|
|
const context = [token.text, token.line, token.column];
|
|
const context = [token.text, token.line, token.column];
|
|
return createError("duplicate_variable", context);
|
|
return createError("duplicate_variable", context);
|
|
},
|
|
},
|
|
- invalid_character: (text, line, column) => {
|
|
|
|
|
|
+ invalid_character: (text, line, _column) => {
|
|
const context = [text, line];
|
|
const context = [text, line];
|
|
return createError("invalid_character", context);
|
|
return createError("invalid_character", context);
|
|
},
|
|
},
|