(buf, pos, end)
| 112 | return filename[len(tern_projectDir()) + 1:] |
| 113 | |
| 114 | def tern_bufferSlice(buf, pos, end): |
| 115 | text = "" |
| 116 | while pos < end: |
| 117 | text += buf[pos] + "\n" |
| 118 | pos += 1 |
| 119 | return text |
| 120 | |
| 121 | def tern_fullBuffer(): |
| 122 | return {"type": "full", |
no outgoing calls
no test coverage detected