whitespace
pull/2790/head
bunsenstraat 2 years ago
parent 20055f378a
commit 50137bc519
  1. 3
      libs/remix-ui/editor/src/lib/providers/completionProvider.ts

@ -310,8 +310,7 @@ export class RemixCompletionProvider implements languages.CompletionItemProvider
nodes = [...Object.values(fileNodes.imports), ...nodes] nodes = [...Object.values(fileNodes.imports), ...nodes]
// at the nodes at the block itself // at the nodes at the block itself
nodes = [...nodes, ...await this.getBlockNodesAtPosition(position)] nodes = [...nodes, ...await this.getBlockNodesAtPosition(position)]
console.log(await this.getBlockNodesAtPosition(position)) // filter private nodes, only allow them when contract ID is the same as the current contract
// filter private nodes, only allow them when contract ID is the same as the current contract
nodes = nodes.filter(node => { nodes = nodes.filter(node => {
if (node.visibility) { if (node.visibility) {
if (node.visibility === 'private') { if (node.visibility === 'private') {

Loading…
Cancel
Save