Lines Matching refs:continuation
198 """Find the line numbers of non-continuation lines.
201 based) of the non-continuation lines.
202 Creates self.{goodlines, continuation}.
224 # whether & why the last stmt is a continuation.
225 continuation = C_NONE
298 continuation = C_STRING_FIRST_LINE
300 continuation = C_STRING_NEXT_LINES
314 continuation = C_BACKSLASH
318 # String continuation takes precedence over bracket
319 # continuation, which beats backslash continuation.
320 if (continuation != C_STRING_FIRST_LINE
321 and continuation != C_STRING_NEXT_LINES and level > 0):
322 continuation = C_BRACKET
323 self.continuation = continuation
327 assert (continuation == C_NONE) == (goodlines[-1] == lno)
333 return self.continuation
337 study1 was sufficient to determine the continuation status,
352 if continuation is C_BRACKET, index of last open bracket
371 # The stmt code[p:q] isn't a continuation, but may be blank
461 Line continuation must be C_BRACKET.
464 assert self.continuation == C_BRACKET
493 intended to be called when continuation is C_BACKSLASH.
502 Line continuation must be C_BACKSLASH. Also assume that the new
506 assert self.continuation == C_BACKSLASH