File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class BlocklyLayout extends PanelLayout {
17
17
private _host : HTMLElement ;
18
18
private _manager : BlocklyManager ;
19
19
private _workspace : Blockly . WorkspaceSvg ;
20
- private _sessionContext : ISessionContext ;
20
+ // private _sessionContext: ISessionContext;
21
21
private _outputArea : Widget ;
22
22
23
23
/**
@@ -31,7 +31,7 @@ export class BlocklyLayout extends PanelLayout {
31
31
) {
32
32
super ( ) ;
33
33
this . _manager = manager ;
34
- this . _sessionContext = sessionContext ;
34
+ // this._sessionContext = sessionContext;
35
35
36
36
// Creating the container for the Blockly editor
37
37
// and the output area to render the execution replies.
@@ -85,7 +85,7 @@ export class BlocklyLayout extends PanelLayout {
85
85
}
86
86
87
87
run ( ) : void {
88
- const code = this . _manager . generator . workspaceToCode ( this . _workspace ) ;
88
+ // const code = this._manager.generator.workspaceToCode(this._workspace);
89
89
// Execute the code using the kernel
90
90
}
91
91
You can’t perform that action at this time.
0 commit comments