src
regexp_cat.h
Go to the documentation of this file.
1 #ifndef _RE2C_IR_REGEXP_REGEXP_CAT_
2 #define _RE2C_IR_REGEXP_REGEXP_CAT_
3 
4 #include "src/ir/regexp/regexp.h"
5 
6 namespace re2c
7 {
8 
9 class CatOp: public RegExp
10 {
11  RegExp * exp1;
12  RegExp * exp2;
13 
14 public:
15  inline CatOp (RegExp * e1, RegExp * e2)
16  : exp1 (e1)
17  , exp2 (e2)
18  {}
19  void split (std::set<uint32_t> &);
20  uint32_t calc_size() const;
21  uint32_t fixedLength ();
23  void display (std::ostream & o) const;
24 
26 };
27 
28 } // end namespace re2c
29 
30 #endif // _RE2C_IR_REGEXP_REGEXP_CAT_
uint32_t calc_size() const
Definition: calc_size.cc:21
void display(std::ostream &o) const
Definition: display.cc:25
FORBID_COPY(CatOp)
nfa_state_t * compile(nfa_t &nfa, nfa_state_t *n)
Definition: nfa.cc:32
CatOp(RegExp *e1, RegExp *e2)
Definition: regexp_cat.h:15
void split(std::set< uint32_t > &)
Definition: split.cc:21
Definition: bitmap.cc:10
uint32_t fixedLength()
Definition: fixed_length.cc:30