| Index: test/cctest/test-decls.cc
|
| diff --git a/test/cctest/test-decls.cc b/test/cctest/test-decls.cc
|
| index 88fa79b70e07374ca4d969a5592bee993f8b639f..6ea4c849ee71fd5439983b12cb99575abcaebc7a 100644
|
| --- a/test/cctest/test-decls.cc
|
| +++ b/test/cctest/test-decls.cc
|
| @@ -223,7 +223,7 @@ TEST(Unknown) {
|
| { DeclarationContext context;
|
| context.Check("function x() { }; x",
|
| 1, // access
|
| - 1, // declaration
|
| + 0,
|
| 0,
|
| EXPECT_RESULT);
|
| }
|
| @@ -278,7 +278,7 @@ TEST(Present) {
|
| { PresentPropertyContext context;
|
| context.Check("function x() { }; x",
|
| 1, // access
|
| - 1, // declaration
|
| + 0,
|
| 0,
|
| EXPECT_RESULT);
|
| }
|
| @@ -332,7 +332,7 @@ TEST(Absent) {
|
| { AbsentPropertyContext context;
|
| context.Check("function x() { }; x",
|
| 1, // access
|
| - 1, // declaration
|
| + 0,
|
| 0,
|
| EXPECT_RESULT);
|
| }
|
| @@ -422,7 +422,7 @@ TEST(Appearing) {
|
| { AppearingPropertyContext context;
|
| context.Check("function x() { }; x",
|
| 1, // access
|
| - 1, // declaration
|
| + 0,
|
| 0,
|
| EXPECT_RESULT);
|
| }
|
|
|