Insert creates an insert text event and executes it
(start Loc, textStr string)
| 182 | |
| 183 | // Insert creates an insert text event and executes it |
| 184 | func (eh *EventHandler) Insert(start Loc, textStr string) { |
| 185 | text := []byte(textStr) |
| 186 | eh.InsertBytes(start, text) |
| 187 | } |
| 188 | |
| 189 | // InsertBytes creates an insert text event and executes it |
| 190 | func (eh *EventHandler) InsertBytes(start Loc, text []byte) { |
no test coverage detected