コード例 #1
0
        private bool Recognize()
        {
            var tokenRecognized = Chart.Count > Location + 1;

            if (!tokenRecognized)
            {
                return(false);
            }

            Location++;
            ReductionPass(Location);

            NodeSet.Clear();
            return(true);
        }
コード例 #2
0
ファイル: ExtensionPoint.cs プロジェクト: ewin66/mono-addins
 internal void Clear()
 {
     NodeSet.Clear();
     Conditions.Clear();
     Addins.Clear();
 }