Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Fix selectors in watch expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
haltman-at committed Sep 9, 2020
1 parent 04e2a49 commit b88fbdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core/lib/debug/printer.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ class DebugPrinter {
}

// throws its own exception
result = this.session.view(selector);
// note: we avoid using this.session so that this
// can be called from js-interpreter
result = session.view(selector);

return result;
};
Expand Down

0 comments on commit b88fbdf

Please sign in to comment.