OLD | NEW |
1 // Copyright 2007-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2007-2009 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 |
11 // with the distribution. | 11 // with the distribution. |
12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
15 // | 15 // |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include <limits.h> | 28 #include <limits.h> |
29 | 29 |
| 30 #define USE_NEW_QUERY_CALLBACKS |
| 31 |
30 #include "v8.h" | 32 #include "v8.h" |
31 | 33 |
32 #include "api.h" | 34 #include "api.h" |
33 #include "compilation-cache.h" | 35 #include "compilation-cache.h" |
34 #include "execution.h" | 36 #include "execution.h" |
35 #include "snapshot.h" | 37 #include "snapshot.h" |
36 #include "platform.h" | 38 #include "platform.h" |
37 #include "top.h" | 39 #include "top.h" |
38 #include "utils.h" | 40 #include "utils.h" |
39 #include "cctest.h" | 41 #include "cctest.h" |
(...skipping 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1187 | 1189 |
1188 | 1190 |
1189 v8::Handle<Value> CheckThisNamedPropertySetter(Local<String> property, | 1191 v8::Handle<Value> CheckThisNamedPropertySetter(Local<String> property, |
1190 Local<Value> value, | 1192 Local<Value> value, |
1191 const AccessorInfo& info) { | 1193 const AccessorInfo& info) { |
1192 ApiTestFuzzer::Fuzz(); | 1194 ApiTestFuzzer::Fuzz(); |
1193 CHECK(info.This()->Equals(bottom)); | 1195 CHECK(info.This()->Equals(bottom)); |
1194 return v8::Handle<Value>(); | 1196 return v8::Handle<Value>(); |
1195 } | 1197 } |
1196 | 1198 |
1197 v8::Handle<v8::Boolean> CheckThisIndexedPropertyQuery( | 1199 v8::Handle<v8::Integer> CheckThisIndexedPropertyQuery( |
1198 uint32_t index, | 1200 uint32_t index, |
1199 const AccessorInfo& info) { | 1201 const AccessorInfo& info) { |
1200 ApiTestFuzzer::Fuzz(); | 1202 ApiTestFuzzer::Fuzz(); |
1201 CHECK(info.This()->Equals(bottom)); | 1203 CHECK(info.This()->Equals(bottom)); |
1202 return v8::Handle<v8::Boolean>(); | 1204 return v8::Handle<v8::Integer>(); |
1203 } | 1205 } |
1204 | 1206 |
1205 | 1207 |
1206 v8::Handle<v8::Integer> CheckThisNamedPropertyQuery(Local<String> property, | 1208 v8::Handle<v8::Integer> CheckThisNamedPropertyQuery(Local<String> property, |
1207 const AccessorInfo& info) { | 1209 const AccessorInfo& info) { |
1208 ApiTestFuzzer::Fuzz(); | 1210 ApiTestFuzzer::Fuzz(); |
1209 CHECK(info.This()->Equals(bottom)); | 1211 CHECK(info.This()->Equals(bottom)); |
1210 return v8::Handle<v8::Integer>(); | 1212 return v8::Handle<v8::Integer>(); |
1211 } | 1213 } |
1212 | 1214 |
(...skipping 9967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11180 | 11182 |
11181 ExpectString("str2.substring(2, 10);", "elspenda"); | 11183 ExpectString("str2.substring(2, 10);", "elspenda"); |
11182 | 11184 |
11183 ExpectString("str2.substring(2, 20);", "elspendabelabelspe"); | 11185 ExpectString("str2.substring(2, 20);", "elspendabelabelspe"); |
11184 | 11186 |
11185 ExpectString("str2.charAt(2);", "e"); | 11187 ExpectString("str2.charAt(2);", "e"); |
11186 | 11188 |
11187 reresult = CompileRun("str2.charCodeAt(2);"); | 11189 reresult = CompileRun("str2.charCodeAt(2);"); |
11188 CHECK_EQ(static_cast<int32_t>('e'), reresult->Int32Value()); | 11190 CHECK_EQ(static_cast<int32_t>('e'), reresult->Int32Value()); |
11189 } | 11191 } |
OLD | NEW |