OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/parsing/func-name-inferrer.h" | 5 #include "src/parsing/func-name-inferrer.h" |
6 | 6 |
7 #include "src/ast/ast.h" | 7 #include "src/ast/ast.h" |
8 #include "src/ast/ast-value-factory.h" | 8 #include "src/ast/ast-value-factory.h" |
9 #include "src/list-inl.h" | 9 #include "src/list-inl.h" |
10 | 10 |
11 namespace v8 { | 11 namespace v8 { |
12 namespace internal { | 12 namespace internal { |
13 | 13 |
14 FuncNameInferrer::FuncNameInferrer(AstValueFactory* ast_value_factory, | 14 FuncNameInferrer::FuncNameInferrer(AstValueFactory* ast_value_factory, |
15 Zone* zone) | 15 Zone* zone) |
16 : ast_value_factory_(ast_value_factory), | 16 : ast_value_factory_(ast_value_factory), |
17 entries_stack_(10, zone), | 17 entries_stack_(10, zone), |
18 names_stack_(5, zone), | 18 names_stack_(5, zone), |
19 funcs_to_infer_(4, zone), | 19 funcs_to_infer_(4, zone), |
20 zone_(zone) { | 20 zone_(zone) {} |
21 } | |
22 | 21 |
23 | 22 |
24 void FuncNameInferrer::PushEnclosingName(const AstRawString* name) { | 23 void FuncNameInferrer::PushEnclosingName(const AstRawString* name) { |
25 // Enclosing name is a name of a constructor function. To check | 24 // Enclosing name is a name of a constructor function. To check |
26 // that it is really a constructor, we check that it is not empty | 25 // that it is really a constructor, we check that it is not empty |
27 // and starts with a capital letter. | 26 // and starts with a capital letter. |
28 if (!name->IsEmpty() && unibrow::Uppercase::Is(name->FirstCharacter())) { | 27 if (!name->IsEmpty() && unibrow::Uppercase::Is(name->FirstCharacter())) { |
29 names_stack_.Add(Name(name, kEnclosingConstructorName), zone()); | 28 names_stack_.Add(Name(name, kEnclosingConstructorName), zone()); |
30 } | 29 } |
31 } | 30 } |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 const AstString* func_name = MakeNameFromStack(); | 75 const AstString* func_name = MakeNameFromStack(); |
77 for (int i = 0; i < funcs_to_infer_.length(); ++i) { | 76 for (int i = 0; i < funcs_to_infer_.length(); ++i) { |
78 funcs_to_infer_[i]->set_raw_inferred_name(func_name); | 77 funcs_to_infer_[i]->set_raw_inferred_name(func_name); |
79 } | 78 } |
80 funcs_to_infer_.Rewind(0); | 79 funcs_to_infer_.Rewind(0); |
81 } | 80 } |
82 | 81 |
83 | 82 |
84 } // namespace internal | 83 } // namespace internal |
85 } // namespace v8 | 84 } // namespace v8 |
OLD | NEW |