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 20156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
20167 CheckCorrectThrow("%HasProperty(other, 'x')"); | 20167 CheckCorrectThrow("%HasProperty(other, 'x')"); |
20168 CheckCorrectThrow("%HasElement(other, 1)"); | 20168 CheckCorrectThrow("%HasElement(other, 1)"); |
20169 CheckCorrectThrow("%IsPropertyEnumerable(other, 'x')"); | 20169 CheckCorrectThrow("%IsPropertyEnumerable(other, 'x')"); |
20170 CheckCorrectThrow("%GetPropertyNames(other)"); | 20170 CheckCorrectThrow("%GetPropertyNames(other)"); |
20171 CheckCorrectThrow("%GetLocalPropertyNames(other, true)"); | 20171 CheckCorrectThrow("%GetLocalPropertyNames(other, true)"); |
20172 CheckCorrectThrow("%DefineOrRedefineAccessorProperty(" | 20172 CheckCorrectThrow("%DefineOrRedefineAccessorProperty(" |
20173 "other, 'x', null, null, 1)"); | 20173 "other, 'x', null, null, 1)"); |
20174 } | 20174 } |
20175 | 20175 |
20176 | 20176 |
| 20177 THREADED_TEST(Regress256330) { |
| 20178 i::FLAG_allow_natives_syntax = true; |
| 20179 LocalContext context; |
| 20180 v8::HandleScope scope(context->GetIsolate()); |
| 20181 Handle<FunctionTemplate> templ = FunctionTemplate::New(); |
| 20182 AddInterceptor(templ, EmptyInterceptorGetter, EmptyInterceptorSetter); |
| 20183 context->Global()->Set(v8_str("Bug"), templ->GetFunction()); |
| 20184 CompileRun("\"use strict\"; var o = new Bug;" |
| 20185 "function f(o) { o.x = 10; };" |
| 20186 "f(o); f(o); f(o);" |
| 20187 "%OptimizeFunctionOnNextCall(f);" |
| 20188 "f(o);"); |
| 20189 ExpectBoolean("%GetOptimizationStatus(f) != 2", true); |
| 20190 } |
| 20191 |
| 20192 |
20177 #endif // WIN32 | 20193 #endif // WIN32 |
OLD | NEW |