## 2017-10-12

```javascript

import {getScopeIdForModule} from "src/external/babel-plugin-var-recorder.js"

var variables = _recorder_[getScopeIdForModule()]

Object.keys(variables).forEach(ea => {
  var value = variables[ea]
  if (value instanceof Array && value.length == 2) {
    if (value[0].isPoint && value[1].isPoint) {
      var name = "debug_variable_"+ea
      var path = document.body.querySelector("#" + name)
      if (path) path.remove();      
      var vector = lively.createPath(value, "blue", true, ea)
      vector.id = name
      document.body.appendChild(vector)                                     
    }
  }
})
```