//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Microsoft
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Xml.Schema;
using System.Xml.Xsl;
namespace System.Xml.Xsl.Qil {
///
/// A function invocation node which represents a call to a Qil functions.
///
internal class QilInvoke : QilBinary {
//-----------------------------------------------
// Constructor
//-----------------------------------------------
///
/// Construct a new node
///
public QilInvoke(QilNodeType nodeType, QilNode function, QilNode arguments) : base(nodeType, function, arguments) {
}
//-----------------------------------------------
// QilInvoke methods
//-----------------------------------------------
public QilFunction Function {
get { return (QilFunction) Left; }
set { Left = value; }
}
public QilList Arguments {
get { return (QilList) Right; }
set { Right = value; }
}
}
}