Skip to content
Snippets Groups Projects

Updates required for QAT

Merged Olivier BICHLER requested to merge qat into dev
3 files
+ 152
7
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -160,7 +160,7 @@ private:
bool matchNodeOrBlock(Context& ctx, std::set<MatchingResult>& matches);
/**
* BLOCK = '(' SEQ | PAR | BLOCK | ALT | NODE ')'
* BLOCK = '(' SEQ | PAR | ALT | BLOCK | NODE ')'
*/
bool matchBlock(Context& ctx, std::set<MatchingResult>& matches);
@@ -192,7 +192,7 @@ private:
* TYPE = [A-Za-z0-9_]+
* ANCHOR = [A-Za-z0-9_]+
* LAMBDA = [A-Za-z0-9_]+
* NODE = (TYPE | '.') ('#' ANCHOR)? ('[' LAMBDA ']')?
* NODE = ((TYPE | '.') ('#' ANCHOR)? ('[' LAMBDA ']')?) | '$'
*/
bool matchNode(Context& ctx, std::set<MatchingResult>& matches);
Loading