Commit 8736b273 authored by yann300's avatar yann300

fix standard

parent bf278f68
...@@ -52,7 +52,7 @@ class ContextualListener { ...@@ -52,7 +52,7 @@ class ContextualListener {
self._index[node.name][node.id] = node self._index[node.name][node.id] = node
if (node.name === 'FunctionCall' && node.children[0] && node.children[0].attributes) { if (node.name === 'FunctionCall' && node.children[0] && node.children[0].attributes) {
var declaration = node.children[0].attributes.referencedDeclaration var declaration = node.children[0].attributes.referencedDeclaration
if (!self._index['FunctionCalls'][declaration]) self._index['FunctionCalls'][declaration] = [] if (!self._index['FunctionCalls'][declaration]) self._index['FunctionCalls'][declaration] = []
self._index['FunctionCalls'][declaration].push(node.id) self._index['FunctionCalls'][declaration].push(node.id)
} }
} }
......
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