C# Class Pegasus.Expressions.PrefixedExpression

Represents an expression that has been given a name as a prefix.
Inheritance: Expression
Show file Open project: otac0n/Pegasus Class Usage Examples

Public Methods

Method Description
PrefixedExpression ( Identifier prefix, Expression expression ) : System

Initializes a new instance of the PrefixedExpression class.

Method Details

PrefixedExpression() public method

Initializes a new instance of the PrefixedExpression class.
public PrefixedExpression ( Identifier prefix, Expression expression ) : System
prefix Identifier The name given to this expression as a prefix.
expression Expression The expression that has been prefixed.
return System