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 13 matching lines...) Expand all Loading... |
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 <stdio.h> | 28 #include <stdio.h> |
29 #include <stdlib.h> | 29 #include <stdlib.h> |
30 #include <string.h> | 30 #include <string.h> |
31 | 31 |
32 #include "src/v8.h" | 32 #include "src/v8.h" |
33 | 33 |
34 #include "src/ast.h" | |
35 #include "src/ast-numbering.h" | |
36 #include "src/ast-value-factory.h" | 34 #include "src/ast-value-factory.h" |
37 #include "src/compiler.h" | 35 #include "src/compiler.h" |
38 #include "src/execution.h" | 36 #include "src/execution.h" |
39 #include "src/isolate.h" | 37 #include "src/isolate.h" |
40 #include "src/objects.h" | 38 #include "src/objects.h" |
41 #include "src/parser.h" | 39 #include "src/parser.h" |
42 #include "src/preparser.h" | 40 #include "src/preparser.h" |
43 #include "src/rewriter.h" | 41 #include "src/rewriter.h" |
44 #include "src/scanner-character-streams.h" | 42 #include "src/scanner-character-streams.h" |
45 #include "src/token.h" | 43 #include "src/token.h" |
(...skipping 3222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3268 i::Handle<i::Script> script = factory->NewScript(source); | 3266 i::Handle<i::Script> script = factory->NewScript(source); |
3269 i::CompilationInfoWithZone info(script); | 3267 i::CompilationInfoWithZone info(script); |
3270 i::Parser::ParseInfo parse_info = { | 3268 i::Parser::ParseInfo parse_info = { |
3271 isolate->stack_guard()->real_climit(), | 3269 isolate->stack_guard()->real_climit(), |
3272 isolate->heap()->HashSeed(), isolate->unicode_cache()}; | 3270 isolate->heap()->HashSeed(), isolate->unicode_cache()}; |
3273 i::Parser parser(&info, &parse_info); | 3271 i::Parser parser(&info, &parse_info); |
3274 parser.set_allow_harmony_scoping(true); | 3272 parser.set_allow_harmony_scoping(true); |
3275 CHECK(parser.Parse()); | 3273 CHECK(parser.Parse()); |
3276 CHECK(i::Rewriter::Rewrite(&info)); | 3274 CHECK(i::Rewriter::Rewrite(&info)); |
3277 CHECK(i::Scope::Analyze(&info)); | 3275 CHECK(i::Scope::Analyze(&info)); |
3278 CHECK(i::AstNumbering::Renumber(info.function(), info.zone())); | |
3279 CHECK(info.function() != NULL); | 3276 CHECK(info.function() != NULL); |
3280 | 3277 |
3281 i::Scope* scope = info.function()->scope(); | 3278 i::Scope* scope = info.function()->scope(); |
3282 CHECK_EQ(scope->inner_scopes()->length(), 1); | 3279 CHECK_EQ(scope->inner_scopes()->length(), 1); |
3283 i::Scope* inner_scope = scope->inner_scopes()->at(0); | 3280 i::Scope* inner_scope = scope->inner_scopes()->at(0); |
3284 const i::AstRawString* var_name = | 3281 const i::AstRawString* var_name = |
3285 info.ast_value_factory()->GetOneByteString("x"); | 3282 info.ast_value_factory()->GetOneByteString("x"); |
3286 i::Variable* var = inner_scope->Lookup(var_name); | 3283 i::Variable* var = inner_scope->Lookup(var_name); |
3287 bool expected = outers[i].assigned || inners[j].assigned; | 3284 bool expected = outers[i].assigned || inners[j].assigned; |
3288 CHECK(var != NULL); | 3285 CHECK(var != NULL); |
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4198 | 4195 |
4199 const char* name_data[] = { | 4196 const char* name_data[] = { |
4200 "function* g() { ({yield}); }", | 4197 "function* g() { ({yield}); }", |
4201 NULL | 4198 NULL |
4202 }; | 4199 }; |
4203 | 4200 |
4204 static const ParserFlag always_flags[] = {kAllowHarmonyObjectLiterals}; | 4201 static const ParserFlag always_flags[] = {kAllowHarmonyObjectLiterals}; |
4205 RunParserSyncTest(context_data, name_data, kError, NULL, 0, | 4202 RunParserSyncTest(context_data, name_data, kError, NULL, 0, |
4206 always_flags, arraysize(always_flags)); | 4203 always_flags, arraysize(always_flags)); |
4207 } | 4204 } |
OLD | NEW |