Commit 4d86b8f0 authored by yann300's avatar yann300

renaming

parent 7830667a
...@@ -75,9 +75,9 @@ class ContextualListener { ...@@ -75,9 +75,9 @@ class ContextualListener {
var self = this var self = this
function highlights (id) { function highlights (id) {
if (self._index['Declarations'] && self._index['Declarations'][id]) { if (self._index['Declarations'] && self._index['Declarations'][id]) {
var calls = self._index['Declarations'][id] var refs = self._index['Declarations'][id]
for (var call in calls) { for (var ref in refs) {
var node = calls[call] var node = refs[ref]
self._highlight(node, compilationResult) self._highlight(node, compilationResult)
} }
} }
......
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