| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 body_(NULL), | 64 body_(NULL), |
| 65 continue_target_(JumpTarget::BIDIRECTIONAL), | 65 continue_target_(JumpTarget::BIDIRECTIONAL), |
| 66 osr_entry_id_(GetNextId()) { | 66 osr_entry_id_(GetNextId()) { |
| 67 } | 67 } |
| 68 | 68 |
| 69 | 69 |
| 70 DoWhileStatement::DoWhileStatement(ZoneStringList* labels) | 70 DoWhileStatement::DoWhileStatement(ZoneStringList* labels) |
| 71 : IterationStatement(labels), | 71 : IterationStatement(labels), |
| 72 cond_(NULL), | 72 cond_(NULL), |
| 73 condition_position_(-1), | 73 condition_position_(-1), |
| 74 next_id_(GetNextId()) { | 74 continue_id_(GetNextId()), |
| 75 back_edge_id_(GetNextId()) { |
| 75 } | 76 } |
| 76 | 77 |
| 77 | 78 |
| 78 WhileStatement::WhileStatement(ZoneStringList* labels) | 79 WhileStatement::WhileStatement(ZoneStringList* labels) |
| 79 : IterationStatement(labels), | 80 : IterationStatement(labels), |
| 80 cond_(NULL), | 81 cond_(NULL), |
| 81 may_have_function_literal_(true) { | 82 may_have_function_literal_(true), |
| 83 body_id_(GetNextId()) { |
| 82 } | 84 } |
| 83 | 85 |
| 84 | 86 |
| 85 ForStatement::ForStatement(ZoneStringList* labels) | 87 ForStatement::ForStatement(ZoneStringList* labels) |
| 86 : IterationStatement(labels), | 88 : IterationStatement(labels), |
| 87 init_(NULL), | 89 init_(NULL), |
| 88 cond_(NULL), | 90 cond_(NULL), |
| 89 next_(NULL), | 91 next_(NULL), |
| 90 may_have_function_literal_(true), | 92 may_have_function_literal_(true), |
| 91 loop_variable_(NULL), | 93 loop_variable_(NULL), |
| 92 next_id_(GetNextId()) { | 94 continue_id_(GetNextId()), |
| 95 body_id_(GetNextId()) { |
| 93 } | 96 } |
| 94 | 97 |
| 95 | 98 |
| 96 ForInStatement::ForInStatement(ZoneStringList* labels) | 99 ForInStatement::ForInStatement(ZoneStringList* labels) |
| 97 : IterationStatement(labels), each_(NULL), enumerable_(NULL), | 100 : IterationStatement(labels), each_(NULL), enumerable_(NULL), |
| 98 assignment_id_(GetNextId()) { | 101 assignment_id_(GetNextId()) { |
| 99 } | 102 } |
| 100 | 103 |
| 101 | 104 |
| 102 } } // namespace v8::internal | 105 } } // namespace v8::internal |
| 103 | 106 |
| 104 #endif // V8_AST_INL_H_ | 107 #endif // V8_AST_INL_H_ |
| OLD | NEW |