| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_REGEXP_H_ | 5 #ifndef VM_REGEXP_H_ |
| 6 #define VM_REGEXP_H_ | 6 #define VM_REGEXP_H_ |
| 7 | 7 |
| 8 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
| 9 #include "vm/intermediate_language.h" | 9 #include "vm/intermediate_language.h" |
| 10 #include "vm/flow_graph_compiler.h" |
| 10 #include "vm/object.h" | 11 #include "vm/object.h" |
| 11 #include "vm/regexp_assembler.h" | 12 #include "vm/regexp_assembler.h" |
| 12 | 13 |
| 13 namespace dart { | 14 namespace dart { |
| 14 | 15 |
| 15 class NodeVisitor; | 16 class NodeVisitor; |
| 16 class RegExpCompiler; | 17 class RegExpCompiler; |
| 17 class RegExpMacroAssembler; | 18 class RegExpMacroAssembler; |
| 18 class RegExpNode; | 19 class RegExpNode; |
| 19 class RegExpTree; | 20 class RegExpTree; |
| (...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1405 const String& pattern, | 1406 const String& pattern, |
| 1406 bool multi_line, | 1407 bool multi_line, |
| 1407 bool ignore_case); | 1408 bool ignore_case); |
| 1408 | 1409 |
| 1409 static void DotPrint(const char* label, RegExpNode* node, bool ignore_case); | 1410 static void DotPrint(const char* label, RegExpNode* node, bool ignore_case); |
| 1410 }; | 1411 }; |
| 1411 | 1412 |
| 1412 } // namespace dart | 1413 } // namespace dart |
| 1413 | 1414 |
| 1414 #endif // VM_REGEXP_H_ | 1415 #endif // VM_REGEXP_H_ |
| OLD | NEW |