public override AbstractSyntaxTreeNode applyToDictionaryLiteral(DictionaryLiteral operand)
        {
            var elements = new List <ExpressionNode>();

            operand.elementsDo(element => elements.Add((ExpressionNode)element.valueBy(this)));
            return(Context.newDictionaryLiteralNode(elements));
        }
Exemple #2
0
 public virtual T applyToDictionaryLiteral(DictionaryLiteral operand)
 {
     return(applyToParseTreeNode(operand));
 }