コード例 #1
0
ファイル: Match.cs プロジェクト: Myvar/Eclang
 internal void TriggerPreMatch()
 {
     if (matches != null)
     {
         matches.ForEach(r => r.TriggerPreMatch());
     }
     Parser.TriggerPreMatch(this);
 }
コード例 #2
0
 internal void TriggerPreMatch()
 {
     if (matches != null)
     {
         foreach (var match in matches)
         {
             match.TriggerPreMatch();
         }
     }
     Parser.TriggerPreMatch(this);
 }
コード例 #3
0
 internal void TriggerPreMatch()
 {
     if (matches != null)
     {
         for (int i = 0; i < matches.Count; i++)
         {
             Match match = matches[i];
             match.TriggerPreMatch();
         }
     }
     Parser.TriggerPreMatch(this);
 }