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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 // Returns a string representation of a regular expression. | 63 // Returns a string representation of a regular expression. |
64 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4. | 64 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4. |
65 // This function calls the garbage collector if necessary. | 65 // This function calls the garbage collector if necessary. |
66 static Handle<String> ToString(Handle<Object> value); | 66 static Handle<String> ToString(Handle<Object> value); |
67 | 67 |
68 // Parses the RegExp pattern and prepares the JSRegExp object with | 68 // Parses the RegExp pattern and prepares the JSRegExp object with |
69 // generic data and choice of implementation - as well as what | 69 // generic data and choice of implementation - as well as what |
70 // the implementation wants to store in the data field. | 70 // the implementation wants to store in the data field. |
71 // Returns false if compilation fails. | 71 // Returns false if compilation fails. |
72 static Handle<Object> Compile(Handle<JSRegExp> re, | 72 MUST_USE_RESULT static MaybeHandle<Object> Compile( |
73 Handle<String> pattern, | 73 Handle<JSRegExp> re, |
74 Handle<String> flags); | 74 Handle<String> pattern, |
| 75 Handle<String> flags); |
75 | 76 |
76 // See ECMA-262 section 15.10.6.2. | 77 // See ECMA-262 section 15.10.6.2. |
77 // This function calls the garbage collector if necessary. | 78 // This function calls the garbage collector if necessary. |
78 static Handle<Object> Exec(Handle<JSRegExp> regexp, | 79 static Handle<Object> Exec(Handle<JSRegExp> regexp, |
79 Handle<String> subject, | 80 Handle<String> subject, |
80 int index, | 81 int index, |
81 Handle<JSArray> lastMatchInfo); | 82 Handle<JSArray> lastMatchInfo); |
82 | 83 |
83 // Prepares a JSRegExp object with Irregexp-specific data. | 84 // Prepares a JSRegExp object with Irregexp-specific data. |
84 static void IrregexpInitialize(Handle<JSRegExp> re, | 85 static void IrregexpInitialize(Handle<JSRegExp> re, |
(...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1636 Handle<String> sample_subject, | 1637 Handle<String> sample_subject, |
1637 bool is_ascii, Zone* zone); | 1638 bool is_ascii, Zone* zone); |
1638 | 1639 |
1639 static void DotPrint(const char* label, RegExpNode* node, bool ignore_case); | 1640 static void DotPrint(const char* label, RegExpNode* node, bool ignore_case); |
1640 }; | 1641 }; |
1641 | 1642 |
1642 | 1643 |
1643 } } // namespace v8::internal | 1644 } } // namespace v8::internal |
1644 | 1645 |
1645 #endif // V8_JSREGEXP_H_ | 1646 #endif // V8_JSREGEXP_H_ |
OLD | NEW |