Exemplo n.º 1
0
        public override void Visit(FloatLiteral literal)
        {
            if (typeof(T) == typeof(FloatLiteral))
            {
                mCollectedNodes.Add(literal as T);
            }

            base.Visit(literal);
        }
Exemplo n.º 2
0
 public bool Equals(FloatLiteral other)
 {
     return(Value == other?.Value);
 }