OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 20291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
20302 CheckCorrectThrow("%GetPropertyNames(other)"); | 20302 CheckCorrectThrow("%GetPropertyNames(other)"); |
20303 CheckCorrectThrow("%GetLocalPropertyNames(other, true)"); | 20303 CheckCorrectThrow("%GetLocalPropertyNames(other, true)"); |
20304 CheckCorrectThrow("%DefineOrRedefineAccessorProperty(" | 20304 CheckCorrectThrow("%DefineOrRedefineAccessorProperty(" |
20305 "other, 'x', null, null, 1)"); | 20305 "other, 'x', null, null, 1)"); |
20306 | 20306 |
20307 // Reset the failed access check callback so it does not influence | 20307 // Reset the failed access check callback so it does not influence |
20308 // the other tests. | 20308 // the other tests. |
20309 v8::V8::SetFailedAccessCheckCallbackFunction(NULL); | 20309 v8::V8::SetFailedAccessCheckCallbackFunction(NULL); |
20310 } | 20310 } |
20311 | 20311 |
| 20312 |
| 20313 THREADED_TEST(Regress256330) { |
| 20314 i::FLAG_allow_natives_syntax = true; |
| 20315 LocalContext context; |
| 20316 v8::HandleScope scope(context->GetIsolate()); |
| 20317 Handle<FunctionTemplate> templ = FunctionTemplate::New(); |
| 20318 AddInterceptor(templ, EmptyInterceptorGetter, EmptyInterceptorSetter); |
| 20319 context->Global()->Set(v8_str("Bug"), templ->GetFunction()); |
| 20320 CompileRun("\"use strict\"; var o = new Bug;" |
| 20321 "function f(o) { o.x = 10; };" |
| 20322 "f(o); f(o); f(o);" |
| 20323 "%OptimizeFunctionOnNextCall(f);" |
| 20324 "f(o);"); |
| 20325 ExpectBoolean("%GetOptimizationStatus(f) != 2", true); |
| 20326 } |
| 20327 |
20312 #endif // V8_OS_POSIX | 20328 #endif // V8_OS_POSIX |
OLD | NEW |