File tree 1 file changed +9
-1
lines changed
arduino-ide-extension/src/browser/theia/plugin-ext
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
- import { injectable , inject } from '@theia/core/shared/inversify' ;
1
+ import {
2
+ injectable ,
3
+ inject ,
4
+ postConstruct ,
5
+ } from '@theia/core/shared/inversify' ;
2
6
import { CommandService } from '@theia/core/lib/common/command' ;
3
7
import { OutputCommands } from '@theia/output/lib/browser/output-commands' ;
4
8
import { PluginInfo } from '@theia/plugin-ext/lib/common/plugin-api-rpc' ;
5
9
import { OutputChannelRegistryMainImpl as TheiaOutputChannelRegistryMainImpl } from '@theia/plugin-ext/lib/main/browser/output-channel-registry-main' ;
6
10
7
11
@injectable ( )
8
12
export class OutputChannelRegistryMainImpl extends TheiaOutputChannelRegistryMainImpl {
13
+ @postConstruct ( )
14
+ protected init ( ) : void {
15
+ console . log ( 'init' ) ;
16
+ }
9
17
@inject ( CommandService )
10
18
protected override readonly commandService : CommandService ;
11
19
You can’t perform that action at this time.
0 commit comments