You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseException('Error on line %s, col %s while lexing singlequoted field: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.latest_newline, t.value[0]))
81
+
raiseException('Error on line %s, col %s while lexing singlequoted field: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.lexer.latest_newline, t.value[0]))
raiseException('Error on line %s, col %s while lexing doublequoted field: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.latest_newline, t.value[0]))
99
+
raiseException('Error on line %s, col %s while lexing doublequoted field: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.lexer.latest_newline, t.value[0]))
raiseException('Error on line %s, col %s while lexing backquoted operator: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.latest_newline, t.value[0]))
117
+
raiseException('Error on line %s, col %s while lexing backquoted operator: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.lexer.latest_newline, t.value[0]))
118
118
119
119
120
120
# Counting lines, handling errors
@@ -124,7 +124,7 @@ def t_newline(self, t):
124
124
t.lexer.latest_newline=t.lexpos
125
125
126
126
deft_error(self, t):
127
-
raiseException('Error on line %s, col %s: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.latest_newline, t.value[0]))
127
+
raiseException('Error on line %s, col %s: Unexpected character: %s '% (t.lexer.lineno, t.lexpos-t.lexer.latest_newline, t.value[0]))
0 commit comments