예제 #1
0
파일: Match.cs 프로젝트: Myvar/Eclang
 internal void TriggerMatch()
 {
     if (matches != null)
     {
         matches.ForEach(r => r.TriggerMatch());
     }
     Parser.TriggerMatch(this);
 }
예제 #2
0
 internal void TriggerMatch()
 {
     if (matches != null)
     {
         foreach (var match in matches)
         {
             match.TriggerMatch();
         }
     }
     Parser.TriggerMatch(this);
 }
예제 #3
0
 internal void TriggerMatch()
 {
     if (matches != null)
     {
         for (int i = 0; i < matches.Count; i++)
         {
             Match match = matches[i];
             match.TriggerMatch();
         }
     }
     Parser.TriggerMatch(this);
 }