| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 bool ForInStatement::IsInlineable() const { | 397 bool ForInStatement::IsInlineable() const { |
| 398 return false; | 398 return false; |
| 399 } | 399 } |
| 400 | 400 |
| 401 | 401 |
| 402 bool WithStatement::IsInlineable() const { | 402 bool WithStatement::IsInlineable() const { |
| 403 return false; | 403 return false; |
| 404 } | 404 } |
| 405 | 405 |
| 406 | 406 |
| 407 bool ExitContextStatement::IsInlineable() const { | |
| 408 return false; | |
| 409 } | |
| 410 | |
| 411 | |
| 412 bool SwitchStatement::IsInlineable() const { | 407 bool SwitchStatement::IsInlineable() const { |
| 413 return false; | 408 return false; |
| 414 } | 409 } |
| 415 | 410 |
| 416 | 411 |
| 417 bool TryStatement::IsInlineable() const { | 412 bool TryStatement::IsInlineable() const { |
| 418 return false; | 413 return false; |
| 419 } | 414 } |
| 420 | 415 |
| 421 | 416 |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1174 int pos) | 1169 int pos) |
| 1175 : label_(label), | 1170 : label_(label), |
| 1176 statements_(statements), | 1171 statements_(statements), |
| 1177 position_(pos), | 1172 position_(pos), |
| 1178 compare_type_(NONE), | 1173 compare_type_(NONE), |
| 1179 compare_id_(AstNode::GetNextId(isolate)), | 1174 compare_id_(AstNode::GetNextId(isolate)), |
| 1180 entry_id_(AstNode::GetNextId(isolate)) { | 1175 entry_id_(AstNode::GetNextId(isolate)) { |
| 1181 } | 1176 } |
| 1182 | 1177 |
| 1183 } } // namespace v8::internal | 1178 } } // namespace v8::internal |
| OLD | NEW |