| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include <limits.h> | 33 #include <limits.h> |
| 34 | 34 |
| 35 #include "src/v8.h" | 35 #include "src/v8.h" |
| 36 | 36 |
| 37 #include "src/api.h" | 37 #include "src/api.h" |
| 38 #include "src/base/platform/platform.h" | 38 #include "src/base/platform/platform.h" |
| 39 #include "src/compilation-cache.h" | 39 #include "src/compilation-cache.h" |
| 40 #include "src/execution.h" | 40 #include "src/execution.h" |
| 41 #include "src/isolate.h" | 41 #include "src/isolate.h" |
| 42 #include "src/parser.h" | 42 #include "src/parsing/parser.h" |
| 43 #include "src/unicode-inl.h" | 43 #include "src/unicode-inl.h" |
| 44 #include "src/utils.h" | 44 #include "src/utils.h" |
| 45 #include "test/cctest/cctest.h" | 45 #include "test/cctest/cctest.h" |
| 46 | 46 |
| 47 using ::v8::Context; | 47 using ::v8::Context; |
| 48 using ::v8::Extension; | 48 using ::v8::Extension; |
| 49 using ::v8::Function; | 49 using ::v8::Function; |
| 50 using ::v8::FunctionTemplate; | 50 using ::v8::FunctionTemplate; |
| 51 using ::v8::HandleScope; | 51 using ::v8::HandleScope; |
| 52 using ::v8::Local; | 52 using ::v8::Local; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 TEST(lookup_slots) { | 136 TEST(lookup_slots) { |
| 137 LocalContext env; | 137 LocalContext env; |
| 138 v8::HandleScope scope(env->GetIsolate()); | 138 v8::HandleScope scope(env->GetIsolate()); |
| 139 Local<Value> result = CompileRun( | 139 Local<Value> result = CompileRun( |
| 140 "function f5(x) {" | 140 "function f5(x) {" |
| 141 " with ({}) return x;" | 141 " with ({}) return x;" |
| 142 "}" | 142 "}" |
| 143 "f5(5);"); | 143 "f5(5);"); |
| 144 ExpectInt32(env.local(), 5, result); | 144 ExpectInt32(env.local(), 5, result); |
| 145 } | 145 } |
| OLD | NEW |