rust-analyzer/editors/code/src/commands/index.ts

24 lines
658 B
TypeScript
Raw Normal View History

2019-01-22 21:15:03 +00:00
import * as analyzerStatus from './analyzer_status';
2018-10-08 18:18:55 +00:00
import * as applySourceChange from './apply_source_change';
2019-11-17 18:47:50 +00:00
import * as expandMacro from './expand_macro';
2019-07-24 16:52:26 +00:00
import * as inlayHints from './inlay_hints';
2018-10-08 18:18:55 +00:00
import * as joinLines from './join_lines';
import * as matchingBrace from './matching_brace';
import * as onEnter from './on_enter';
2018-10-08 18:18:55 +00:00
import * as parentModule from './parent_module';
import * as runnables from './runnables';
import * as syntaxTree from './syntaxTree';
export {
2019-01-22 21:15:03 +00:00
analyzerStatus,
2018-10-08 18:18:55 +00:00
applySourceChange,
2019-11-17 18:47:50 +00:00
expandMacro,
2018-10-08 18:18:55 +00:00
joinLines,
matchingBrace,
parentModule,
runnables,
syntaxTree,
2019-07-23 13:38:21 +00:00
onEnter,
2019-12-09 18:57:55 +00:00
inlayHints,
2018-10-08 18:18:55 +00:00
};