(line, pos1)
| 336 | |
| 337 | @staticmethod |
| 338 | def _isInString(line, pos1): |
| 339 | pos = 0 |
| 340 | inString = False |
| 341 | while pos != pos1: |
| 342 | if line[pos] == '\\': |
| 343 | pos += 1 |
| 344 | elif line[pos] == '"': |
| 345 | inString = not inString |
| 346 | pos += 1 |
| 347 | return inString |
| 348 | |
| 349 | @staticmethod |
| 350 | def _parseStringComparison(line, pos1): |