| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 return visitor->Visit##Name(this, data); \ | 188 return visitor->Visit##Name(this, data); \ |
| 189 } | 189 } |
| 190 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ACCEPT) | 190 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ACCEPT) |
| 191 #undef MAKE_ACCEPT | 191 #undef MAKE_ACCEPT |
| 192 | 192 |
| 193 #define MAKE_TYPE_CASE(Name) \ | 193 #define MAKE_TYPE_CASE(Name) \ |
| 194 RegExp##Name* RegExpTree::As##Name() { \ | 194 RegExp##Name* RegExpTree::As##Name() { \ |
| 195 return NULL; \ | 195 return NULL; \ |
| 196 } \ | 196 } \ |
| 197 bool RegExpTree::Is##Name() { return false; } | 197 bool RegExpTree::Is##Name() { return false; } |
| 198 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) | 198 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) |
| 199 #undef MAKE_TYPE_CASE | 199 #undef MAKE_TYPE_CASE |
| 200 | 200 |
| 201 #define MAKE_TYPE_CASE(Name) \ | 201 #define MAKE_TYPE_CASE(Name) \ |
| 202 RegExp##Name* RegExp##Name::As##Name() { \ | 202 RegExp##Name* RegExp##Name::As##Name() { \ |
| 203 return this; \ | 203 return this; \ |
| 204 } \ | 204 } \ |
| 205 bool RegExp##Name::Is##Name() { return true; } | 205 bool RegExp##Name::Is##Name() { return true; } |
| 206 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) | 206 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) |
| 207 #undef MAKE_TYPE_CASE | 207 #undef MAKE_TYPE_CASE |
| 208 | 208 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 | 374 |
| 375 | 375 |
| 376 SmartPointer<const char> RegExpTree::ToString() { | 376 SmartPointer<const char> RegExpTree::ToString() { |
| 377 RegExpUnparser unparser; | 377 RegExpUnparser unparser; |
| 378 Accept(&unparser, NULL); | 378 Accept(&unparser, NULL); |
| 379 return unparser.ToString(); | 379 return unparser.ToString(); |
| 380 } | 380 } |
| 381 | 381 |
| 382 | 382 |
| 383 } } // namespace v8::internal | 383 } } // namespace v8::internal |
| OLD | NEW |