(i, stream, max_length)
| 124 | |
| 125 | |
| 126 | def getUsingFor(i, stream, max_length): |
| 127 | content = 'using' |
| 128 | if i+1 < max_length: |
| 129 | id, content_temp, loc = parseToken(str(stream[i+1])) |
| 130 | if id is not None: |
| 131 | if id == VARIABLE_NAME_ID: |
| 132 | content += content_temp |
| 133 | return i+1, content, loc |
| 134 | return i, content, None |
| 135 | |
| 136 | def getSubcontract(i, stream, max_length, subcontract_id, start): |
| 137 | left_bracket_count = 0 |
no test coverage detected