public override void Visit(FloatLiteral literal) { if (typeof(T) == typeof(FloatLiteral)) { mCollectedNodes.Add(literal as T); } base.Visit(literal); }
public bool Equals(FloatLiteral other) { return(Value == other?.Value); }