@@ -20,7 +20,6 @@ import {
2020 PrimaryActionAuto ,
2121 PrimaryActionCore ,
2222 ProcessAssembly ,
23- Position ,
2423} from './types' ;
2524
2625import { performCommonExecute , wsExecuteRequest } from './reducers/output/execute' ;
@@ -56,7 +55,6 @@ export enum ActionType {
5655 ChangeMode = 'CHANGE_MODE' ,
5756 ChangeEdition = 'CHANGE_EDITION' ,
5857 ChangeBacktrace = 'CHANGE_BACKTRACE' ,
59- SelectText = 'SELECT_TEXT' ,
6058}
6159
6260export const initializeApplication = ( ) => createAction ( ActionType . InitializeApplication ) ;
@@ -189,9 +187,6 @@ export const performCompileToNightlyHir =
189187export const performCompileToWasm =
190188 performAndSwitchPrimaryAction ( performCompileToCdylibWasmOnly , PrimaryActionCore . Wasm ) ;
191189
192- export const selectText = ( start : Position , end : Position ) =>
193- createAction ( ActionType . SelectText , { start, end } ) ;
194-
195190function parseChannel ( s ?: string ) : Channel | null {
196191 switch ( s ) {
197192 case 'stable' :
@@ -293,7 +288,6 @@ export type Action =
293288 | ReturnType < typeof changeProcessAssembly >
294289 | ReturnType < typeof changeAceTheme >
295290 | ReturnType < typeof changeMonacoTheme >
296- | ReturnType < typeof selectText >
297291 | ReturnType < typeof editCode >
298292 | ReturnType < typeof addCrateType >
299293 | ReturnType < typeof navigateToIndex >
0 commit comments