Пример #1
0
        public override IQueryElement VisitDrop_attribute_dec_stm([NotNull] QueryGrammarParser.Drop_attribute_dec_stmContext context)
        {
            AttributeDrop attributeDrop = new AttributeDrop();

            attributeDrop.Name = context.NAME().GetText();

            return(attributeDrop);
        }
Пример #2
0
        public override IQueryElement VisitDrop_attribute_dec_stm([NotNull] QueryGrammarParser.Drop_attribute_dec_stmContext context)
        {
            DropAttribute dropAttribute = new DropAttribute();

            dropAttribute.Name = context.NAME().GetText();

            return(dropAttribute);
        }