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

Side by Side Diff: test/cctest/test-js-arm64-variables.cc

Issue 1481613002: Create ast/ and parsing/ subdirectories and move appropriate files (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 years 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
« no previous file with comments | « test/cctest/test-javascript-arm64.cc ('k') | test/cctest/test-lockers.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 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
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
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 }
OLDNEW
« no previous file with comments | « test/cctest/test-javascript-arm64.cc ('k') | test/cctest/test-lockers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698