(ts, cm, msg)
| 657 | } |
| 658 | |
| 659 | function showError(ts, cm, msg) { |
| 660 | if (ts.options.showError) |
| 661 | ts.options.showError(cm, msg); |
| 662 | else |
| 663 | tempTooltip(cm, String(msg), ts); |
| 664 | } |
| 665 | |
| 666 | function closeArgHints(ts) { |
| 667 | if (ts.activeArgHints) { |
no test coverage detected