Follow up to r20003.
authormarja@chromium.org <marja@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 17 Mar 2014 16:04:47 +0000 (16:04 +0000)
committermarja@chromium.org <marja@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 17 Mar 2014 16:04:47 +0000 (16:04 +0000)
(Fixing comments in tests.)

R=rossberg@chromium.org
BUG=

Review URL: https://codereview.chromium.org/197323003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20008 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

test/cctest/test-parsing.cc

index 5ae7b52..2e282ce 100644 (file)
@@ -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; })()";