Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: test/cctest/test-decls.cc

Issue 11931013: Revert trunk to version 3.16.4. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-debug.cc ('k') | test/cctest/test-heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2007-2008 the V8 project authors. All rights reserved. 1 // Copyright 2007-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 if (!value.IsEmpty()) { 154 if (!value.IsEmpty()) {
155 CHECK_EQ(value, result); 155 CHECK_EQ(value, result);
156 } 156 }
157 } else { 157 } else {
158 CHECK(expectations == EXPECT_EXCEPTION); 158 CHECK(expectations == EXPECT_EXCEPTION);
159 CHECK(catcher.HasCaught()); 159 CHECK(catcher.HasCaught());
160 if (!value.IsEmpty()) { 160 if (!value.IsEmpty()) {
161 CHECK_EQ(value, catcher.Exception()); 161 CHECK_EQ(value, catcher.Exception());
162 } 162 }
163 } 163 }
164 HEAP->CollectAllAvailableGarbage(); // Clean slate for the next test.
165 } 164 }
166 165
167 166
168 v8::Handle<Value> DeclarationContext::HandleGet(Local<String> key, 167 v8::Handle<Value> DeclarationContext::HandleGet(Local<String> key,
169 const AccessorInfo& info) { 168 const AccessorInfo& info) {
170 DeclarationContext* context = GetInstance(info); 169 DeclarationContext* context = GetInstance(info);
171 context->get_count_++; 170 context->get_count_++;
172 return context->Get(key); 171 return context->Get(key);
173 } 172 }
174 173
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 SimpleContext context; 833 SimpleContext context;
835 context.Check(firsts[i], EXPECT_RESULT, Number::New(1)); 834 context.Check(firsts[i], EXPECT_RESULT, Number::New(1));
836 // TODO(rossberg): All tests should actually be errors in Harmony, 835 // TODO(rossberg): All tests should actually be errors in Harmony,
837 // but we currently do not detect the cases where the first declaration 836 // but we currently do not detect the cases where the first declaration
838 // is not lexical. 837 // is not lexical.
839 context.Check(seconds[j], 838 context.Check(seconds[j],
840 i < 2 ? EXPECT_RESULT : EXPECT_ERROR, Number::New(2)); 839 i < 2 ? EXPECT_RESULT : EXPECT_ERROR, Number::New(2));
841 } 840 }
842 } 841 }
843 } 842 }
OLDNEW
« no previous file with comments | « test/cctest/test-debug.cc ('k') | test/cctest/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698