Skip to content

Commit 2caf2b2

Browse files
committed
Comment unused variables
1 parent 5cee0a7 commit 2caf2b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/layout.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class BlocklyLayout extends PanelLayout {
1717
private _host: HTMLElement;
1818
private _manager: BlocklyManager;
1919
private _workspace: Blockly.WorkspaceSvg;
20-
private _sessionContext: ISessionContext;
20+
//private _sessionContext: ISessionContext;
2121
private _outputArea: Widget;
2222

2323
/**
@@ -31,7 +31,7 @@ export class BlocklyLayout extends PanelLayout {
3131
) {
3232
super();
3333
this._manager = manager;
34-
this._sessionContext = sessionContext;
34+
//this._sessionContext = sessionContext;
3535

3636
// Creating the container for the Blockly editor
3737
// and the output area to render the execution replies.
@@ -85,7 +85,7 @@ export class BlocklyLayout extends PanelLayout {
8585
}
8686

8787
run(): void {
88-
const code = this._manager.generator.workspaceToCode(this._workspace);
88+
//const code = this._manager.generator.workspaceToCode(this._workspace);
8989
// Execute the code using the kernel
9090
}
9191

0 commit comments

Comments
 (0)