summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/doc-remember-expanded-scopes.html
blob: 7648b1841c2f692386e5d8b3a683056a909741b2 (plain)
1
2
3
4
5
6
7
<script>
function main() {
  var object = { a:0, b:1, innerObject: { innerData: 0 } };
  debugger;
  return 0;
}
</script>