@@ -5312,8 +5312,7 @@ void TryCatchMixedNestingCheck(v8::TryCatch* try_catch) {
53125312 CHECK_EQ(0,
53135313 strcmp(*v8::String::Utf8Value(message->Get()), "Uncaught Error: a"));
53145314 CHECK_EQ(1, message->GetLineNumber());
5315- // TODO(3995): Our compilers disagree about the position.
5316- if (!i::FLAG_always_opt) CHECK_EQ(6, message->GetStartColumn());
5315+ CHECK_EQ(0, message->GetStartColumn());
53175316}
53185317
53195318
@@ -9795,11 +9794,7 @@ THREADED_TEST(ConstructorForObject) {
97959794 value = CompileRun("new obj2(28)");
97969795 CHECK(try_catch.HasCaught());
97979796 String::Utf8Value exception_value1(try_catch.Exception());
9798- // TODO(3995): Our compilers disagree about the position (and message).
9799- if (!i::FLAG_always_opt) {
9800- CHECK_EQ(0,
9801- strcmp("TypeError: obj2 is not a function", *exception_value1));
9802- }
9797+ CHECK_EQ(0, strcmp("TypeError: obj2 is not a function", *exception_value1));
98039798 try_catch.Reset();
98049799
98059800 Local<Value> args[] = {v8_num(29)};
@@ -15005,11 +15000,9 @@ void AnalyzeStackInNativeCode(const v8::FunctionCallbackInfo<v8::Value>& args) {
1500515000 checkStackFrame(origin, "foo", 6, 3, false, false,
1500615001 stackTrace->GetFrame(1));
1500715002 // This is the source string inside the eval which has the call to foo.
15008- checkStackFrame(NULL, "", 1, 5, false, false,
15009- stackTrace->GetFrame(2));
15003+ checkStackFrame(NULL, "", 1, 1, false, false, stackTrace->GetFrame(2));
1501015004 // The last frame is an anonymous function which has the initial eval call.
15011- checkStackFrame(origin, "", 8, 7, false, false,
15012- stackTrace->GetFrame(3));
15005+ checkStackFrame(origin, "", 8, 7, false, false, stackTrace->GetFrame(3));
1501315006
1501415007 CHECK(stackTrace->AsArray()->IsArray());
1501515008 } else if (testGroup == kDetailedTest) {
@@ -15022,11 +15015,9 @@ void AnalyzeStackInNativeCode(const v8::FunctionCallbackInfo<v8::Value>& args) {
1502215015 stackTrace->GetFrame(1));
1502315016 bool is_eval = true;
1502415017 // This is the source string inside the eval which has the call to baz.
15025- checkStackFrame(NULL, "", 1, 5, is_eval, false,
15026- stackTrace->GetFrame(2));
15018+ checkStackFrame(NULL, "", 1, 1, is_eval, false, stackTrace->GetFrame(2));
1502715019 // The last frame is an anonymous function which has the initial eval call.
15028- checkStackFrame(origin, "", 10, 1, false, false,
15029- stackTrace->GetFrame(3));
15020+ checkStackFrame(origin, "", 10, 1, false, false, stackTrace->GetFrame(3));
1503015021
1503115022 CHECK(stackTrace->AsArray()->IsArray());
1503215023 }
0 commit comments