(fname, apos)
| 280 | if data: tern_echoWrap(data.get("type", "")) |
| 281 | |
| 282 | def tern_lookupArgumentHints(fname, apos): |
| 283 | curRow, curCol = vim.current.window.cursor |
| 284 | data = tern_runCommand({"type": "type", "preferFunction": True}, |
| 285 | {"line": curRow - 1, "ch": apos}) |
| 286 | if data: tern_echoWrap(data.get("type", ""),name=fname) |
| 287 | |
| 288 | def tern_lookupDefinition(cmd): |
| 289 | data = tern_runCommand("definition") |
nothing calls this directly
no test coverage detected