From 06a444a19c6a84c297019d8ba850c3ad1a130661 Mon Sep 17 00:00:00 2001 From: "marja@chromium.org" Date: Mon, 17 Mar 2014 16:04:47 +0000 Subject: [PATCH] Follow up to r20003. (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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc index 5ae7b52..2e282ce 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(&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; })()"; -- 2.7.4