Inheritance: WSqlFragment
 public virtual void Visit(WRowValue node)
 {
     node.AcceptChildren(this);
 }
Beispiel #2
0
        private WRowValue ParseRowValue(RowValue rowValue)
        {
            var wrowValue = new WRowValue
            {
                ColumnValues = new List<WScalarExpression>(rowValue.ColumnValues.Count),
                FirstTokenIndex = rowValue.FirstTokenIndex,
                LastTokenIndex = rowValue.LastTokenIndex
            };

            foreach (var expr in rowValue.ColumnValues)
            {
                wrowValue.ColumnValues.Add(ParseScalarExpression(expr));
            }

            return wrowValue;
        }
 public virtual void Visit(WRowValue node)
 {
     node.AcceptChildren(this);
 }