|
|
@ -2,7 +2,7 @@ |
|
|
|
import { Plugin } from '@remixproject/engine' |
|
|
|
import { Plugin } from '@remixproject/engine' |
|
|
|
import { sourceMappingDecoder } from '@remix-project/remix-debug' |
|
|
|
import { sourceMappingDecoder } from '@remix-project/remix-debug' |
|
|
|
import { CompilerAbstract } from '@remix-project/remix-solidity' |
|
|
|
import { CompilerAbstract } from '@remix-project/remix-solidity' |
|
|
|
import { getValidLanguage, Compiler} from '@remix-project/remix-solidity' |
|
|
|
import { Compiler } from '@remix-project/remix-solidity' |
|
|
|
|
|
|
|
|
|
|
|
const profile = { |
|
|
|
const profile = { |
|
|
|
name: 'contextualListener', |
|
|
|
name: 'contextualListener', |
|
|
@ -63,7 +63,7 @@ export class EditorContextListener extends Plugin { |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
this.compiler = new Compiler((url, cb) => this.call('contentImport', 'resolveAndSave', url, undefined, false).then((result) => cb(null, result)).catch((error) => cb(error.message))) |
|
|
|
this.compiler = new Compiler((url, cb) => this.call('contentImport', 'resolveAndSave', url, undefined, false).then((result) => cb(null, result)).catch((error) => cb(error.message))) |
|
|
|
this.compiler.loadVersion(true,'https://binaries.soliditylang.org/wasm/soljson-v0.8.7+commit.e28d00a7.js') |
|
|
|
this.compiler.loadVersion(true, 'https://binaries.soliditylang.org/wasm/soljson-v0.8.7+commit.e28d00a7.js') |
|
|
|
|
|
|
|
|
|
|
|
this.on('solidity', 'astFinished', async (file, source, languageVersion, data, input, version) => { |
|
|
|
this.on('solidity', 'astFinished', async (file, source, languageVersion, data, input, version) => { |
|
|
|
// console.log('compilation result', Object.keys(data.sources))
|
|
|
|
// console.log('compilation result', Object.keys(data.sources))
|
|
|
@ -81,7 +81,7 @@ export class EditorContextListener extends Plugin { |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
setInterval(async () => { |
|
|
|
setInterval(async () => { |
|
|
|
//await this.compile()
|
|
|
|
await this.compile() |
|
|
|
}, 5000) |
|
|
|
}, 5000) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -109,14 +109,19 @@ export class EditorContextListener extends Plugin { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async compile() { |
|
|
|
async compile() { |
|
|
|
this.currentFile = await this.call('fileManager', 'file') |
|
|
|
try { |
|
|
|
if(!this.currentFile) return |
|
|
|
this.currentFile = await this.call('fileManager', 'file') |
|
|
|
return await this.call('solidity', 'compile', this.currentFile, { save: false }) |
|
|
|
if (!this.currentFile) return |
|
|
|
|
|
|
|
const content = await this.call('fileManager', 'readFile', this.currentFile) |
|
|
|
|
|
|
|
const sources = { [this.currentFile]: { content } } |
|
|
|
|
|
|
|
this.compiler.compile(sources, this.currentFile) |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async getBlockName(position: any) { |
|
|
|
async getBlockName(position: any) { |
|
|
|
await this.getAST() |
|
|
|
await this.getAST() |
|
|
|
const allowedTypes = ['SourceUnit','ContractDefinition','FunctionDefinition'] |
|
|
|
const allowedTypes = ['SourceUnit', 'ContractDefinition', 'FunctionDefinition'] |
|
|
|
|
|
|
|
|
|
|
|
const walkAst = (node) => { |
|
|
|
const walkAst = (node) => { |
|
|
|
console.log(node) |
|
|
|
console.log(node) |
|
|
@ -138,7 +143,7 @@ export class EditorContextListener extends Plugin { |
|
|
|
|
|
|
|
|
|
|
|
async getAST() { |
|
|
|
async getAST() { |
|
|
|
this.currentFile = await this.call('fileManager', 'file') |
|
|
|
this.currentFile = await this.call('fileManager', 'file') |
|
|
|
if(!this.currentFile) return |
|
|
|
if (!this.currentFile) return |
|
|
|
let fileContent = await this.call('fileManager', 'readFile', this.currentFile) |
|
|
|
let fileContent = await this.call('fileManager', 'readFile', this.currentFile) |
|
|
|
try { |
|
|
|
try { |
|
|
|
const ast = (SolidityParser as any).parse(fileContent, { loc: true, range: true, tolerant: true }) |
|
|
|
const ast = (SolidityParser as any).parse(fileContent, { loc: true, range: true, tolerant: true }) |
|
|
|