| Index: runtime/vm/debugger.cc
|
| diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
|
| index 53bcba2632e17b1e2eb42aee4b611cb66b6ad185..3dce57392b6fe5e4c27ca441cd835d36f8b2b2b6 100644
|
| --- a/runtime/vm/debugger.cc
|
| +++ b/runtime/vm/debugger.cc
|
| @@ -638,7 +638,7 @@ intptr_t ActivationFrame::ContextLevel() {
|
| const int8_t kind = var_info.kind();
|
| if ((kind == RawLocalVarDescriptors::kContextLevel) &&
|
| (var_info.begin_pos <= activation_token_pos) &&
|
| - (activation_token_pos < var_info.end_pos)) {
|
| + (activation_token_pos <= var_info.end_pos)) {
|
| // This var_descriptors_ entry is a context scope which is in scope
|
| // of the current token position. Now check whether it is shadowing
|
| // the previous context scope.
|
|
|