Refactor applySourceChange

This commit is contained in:
Aleksey Kladov 2019-12-30 16:43:34 +01:00
parent 83d2527880
commit 5aebf1081d
7 changed files with 68 additions and 89 deletions

View file

@ -3,10 +3,9 @@ import { Ctx, Cmd } from '../ctx'
import { analyzerStatus } from './analyzer_status';
import { matchingBrace } from './matching_brace';
import { joinLines } from './join_lines';
import * as applySourceChange from './apply_source_change';
import { onEnter } from './on_enter';
import * as expandMacro from './expand_macro';
import * as inlayHints from './inlay_hints';
import * as onEnter from './on_enter';
import * as parentModule from './parent_module';
import * as runnables from './runnables';
import * as syntaxTree from './syntaxTree';
@ -17,7 +16,6 @@ function collectGarbage(ctx: Ctx): Cmd {
export {
analyzerStatus,
applySourceChange,
expandMacro,
joinLines,
matchingBrace,