Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d45045f commit 3d7fd9aCopy full SHA for 3d7fd9a
src/node.cc
@@ -1470,8 +1470,8 @@ void AppendExceptionLine(Environment* env,
1470
// sourceline to 78 characters, and we end up not providing very much
1471
// useful debugging info to the user if we remove 62 characters.
1472
1473
- int start = message->GetStartColumn();
1474
- int end = message->GetEndColumn();
+ int start = message->GetStartColumn(env->context()).FromJust();
+ int end = message->GetEndColumn(env->context()).FromJust();
1475
1476
char arrow[1024];
1477
int max_off = sizeof(arrow) - 2;
0 commit comments