コード例 #1
0
ファイル: analysis.cs プロジェクト: JamesJustinHarrell/niviok
 public virtual void CaseTKeywordLte(TKeywordLte node)
 {
     DefaultCase(node);
 }
コード例 #2
0
ファイル: prods.cs プロジェクト: JamesJustinHarrell/niviok
 internal override void RemoveChild(Node child)
 {
     if ( _keyword_lte_ == child )
     {
     _keyword_lte_ = null;
     return;
     }
 }
コード例 #3
0
ファイル: prods.cs プロジェクト: JamesJustinHarrell/niviok
     public ABComparisonfunction(
         TKeywordLte _keyword_lte_
 )
     {
         SetKeywordLte (_keyword_lte_);
     }
コード例 #4
0
ファイル: prods.cs プロジェクト: JamesJustinHarrell/niviok
        public void SetKeywordLte(TKeywordLte node)
        {
            if(_keyword_lte_ != null)
            {
            _keyword_lte_.Parent(null);
            }

            if(node != null)
            {
            if(node.Parent() != null)
            {
                node.Parent().RemoveChild(node);
            }

            node.Parent(this);
            }

            _keyword_lte_ = node;
        }
コード例 #5
0
ファイル: parser.cs プロジェクト: JamesJustinHarrell/niviok
 public override void CaseTKeywordLte(TKeywordLte node)
 {
     index = 33;
 }