Commit 35830a2c authored by aniket-engg's avatar aniket-engg Committed by Aniket

register with engine

parent 8253eb60
...@@ -448,7 +448,8 @@ Please make a backup of your contracts and start using http://remix.ethereum.org ...@@ -448,7 +448,8 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
test, test,
filePanel.remixdHandle, filePanel.remixdHandle,
filePanel.gitHandle, filePanel.gitHandle,
filePanel.hardhatHandle filePanel.hardhatHandle,
filePanel.slitherHandle
]) ])
if (isElectron()) { if (isElectron()) {
......
...@@ -9,6 +9,7 @@ import { checkSpecialChars, checkSlash } from '../../lib/helper' ...@@ -9,6 +9,7 @@ import { checkSpecialChars, checkSlash } from '../../lib/helper'
const { RemixdHandle } = require('../files/remixd-handle.js') const { RemixdHandle } = require('../files/remixd-handle.js')
const { GitHandle } = require('../files/git-handle.js') const { GitHandle } = require('../files/git-handle.js')
const { HardhatHandle } = require('../files/hardhat-handle.js') const { HardhatHandle } = require('../files/hardhat-handle.js')
const { SlitherHandle } = require('../files/slither-handle.js')
const globalRegistry = require('../../global/registry') const globalRegistry = require('../../global/registry')
const examples = require('../editor/examples') const examples = require('../editor/examples')
const GistHandler = require('../../lib/gist-handler') const GistHandler = require('../../lib/gist-handler')
...@@ -59,6 +60,7 @@ module.exports = class Filepanel extends ViewPlugin { ...@@ -59,6 +60,7 @@ module.exports = class Filepanel extends ViewPlugin {
this.remixdHandle = new RemixdHandle(this._deps.fileProviders.localhost, appManager) this.remixdHandle = new RemixdHandle(this._deps.fileProviders.localhost, appManager)
this.gitHandle = new GitHandle() this.gitHandle = new GitHandle()
this.hardhatHandle = new HardhatHandle() this.hardhatHandle = new HardhatHandle()
this.slitherHandle = new SlitherHandle()
this.registeredMenuItems = [] this.registeredMenuItems = []
this.removedMenuItems = [] this.removedMenuItems = []
this.request = {} this.request = {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment