| 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 // A simple interpreter for the Irregexp byte code. | 5 // A simple interpreter for the Irregexp byte code. |
| 6 | 6 |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/ast.h" | 10 #include "src/ast.h" |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 if (start_position != 0) previous_char = subject_vector[start_position - 1]; | 599 if (start_position != 0) previous_char = subject_vector[start_position - 1]; |
| 600 return RawMatch(isolate, | 600 return RawMatch(isolate, |
| 601 code_base, | 601 code_base, |
| 602 subject_vector, | 602 subject_vector, |
| 603 registers, | 603 registers, |
| 604 start_position, | 604 start_position, |
| 605 previous_char); | 605 previous_char); |
| 606 } | 606 } |
| 607 } | 607 } |
| 608 | 608 |
| 609 } } // namespace v8::internal | 609 } // namespace internal |
| 610 } // namespace v8 |
| OLD | NEW |