Index: test/cctest/test-parsing.cc |
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc |
index 5ae7b527348e602047f8666e3d4482a2aff260bf..2e282cef8a52f0029680d45bae27b94a4a48ade6 100644 |
--- a/test/cctest/test-parsing.cc |
+++ b/test/cctest/test-parsing.cc |
@@ -312,12 +312,12 @@ TEST(PreparseSymbolDataIsUsed) { |
CcTest::i_isolate()->stack_guard()->SetStackLimit( |
reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); |
- // Note that the ( before function makes the |
+ // Note that the ( before function makes the function not lazily compiled. |
const char* good_source = |
"(function weird() { var foo = 26; return foo; })()"; |
// Insert an undefined identifier. If the preparser data is used, the symbol |
- // stream is used instead, and this identifier resolves correctly to"foo". |
+ // stream is used instead, and this identifier resolves to "foo". |
const char* bad_source = |
"(function weird() { var foo = 26; return wut; })()"; |