Add mapping for Focus, and make focusing a stack frame focus the thread

This commit is contained in:
Ben Jackson 2020-11-21 20:37:35 +00:00
commit a9d0ebde0b
3 changed files with 45 additions and 11 deletions

View file

@ -3,7 +3,7 @@ var msg = 'Hello, world!'
var obj = {
test: 'testing',
toast: function() {
return 'toasty' . this.test;
return 'toasty' + this.test;
}
}