Example #1
0
    public GolLangNode(GolLangLine line)
    {
        this.line = line;

        parents = null;

        leftSibling = null;

        rightSibling = null;

        children = new List <GolLangNode>();

        isVisited = false;
    }
Example #2
0
    public GolLangParseNode(GolLangLine keywords)
    {
        this.line = keywords.clone();

        parents = null;

        leftSibling = null;

        rightSibling = null;

        children = new List <GolLangParseNode>();

        isVisited = false;
    }