(ts, cm, msg)
| 639 | } |
| 640 | |
| 641 | function showError(ts, cm, msg) { |
| 642 | if (ts.options.showError) |
| 643 | ts.options.showError(cm, msg); |
| 644 | else |
| 645 | tempTooltip(cm, String(msg)); |
| 646 | } |
| 647 | |
| 648 | function closeArgHints(ts) { |
| 649 | if (ts.activeArgHints) { remove(ts.activeArgHints); ts.activeArgHints = null; } |
no test coverage detected