Exemple #1
0
 internal NespReferenceSymbolExpression(string symbol, NespSourceInformation source)
     : base(symbol, source)
 {
 }
Exemple #2
0
 internal NespFieldExpression(FieldInfo field, NespSourceInformation source)
     : base(source)
 {
     this.Field = field;
 }
Exemple #3
0
 internal NespUnitExpression(NespSourceInformation source)
     : base(source)
 {
 }
Exemple #4
0
 internal NespResolvedListExpression(NespExpression[] list, Type type, NespSourceInformation source)
     : base(source)
 {
     this.List      = list;
     this.FixedType = type;
 }
Exemple #5
0
 internal NespTokenExpression(NespSourceInformation source)
     : base(source)
 {
 }
 internal NespAbstractListExpression(NespExpression[] list, NespSourceInformation source)
     : base(source)
 {
     this.List = list;
 }
Exemple #7
0
 internal NespSymbolExpression(string symbol, NespSourceInformation source)
     : this(symbol, null, source)
 {
 }
 internal NespNumericExpression(object value, NespSourceInformation source)
     : base(source)
 {
     this.Value = value;
 }
 internal NespDefineLambdaExpression(
     string name, NespResolvedExpression body, NespParameterExpression[] parameters, NespSourceInformation source)
     : base(source)
 {
     this.Name       = name;
     this.Body       = body;
     this.Parameters = parameters;
 }
Exemple #10
0
 internal NespEnumExpression(Enum value, NespSourceInformation source)
     : base(source)
 {
     this.FixedType = value.GetType();
     this.Value     = value;
 }
Exemple #11
0
 internal NespApplyFunctionExpression(MethodInfo method, NespExpression[] arguments, NespSourceInformation source)
     : base(source)
 {
     this.Method    = method;
     this.Arguments = arguments;
 }
Exemple #12
0
 internal NespExpression(NespSourceInformation source)
 {
     this.Source = source;
 }
Exemple #13
0
 internal NespStringExpression(string value, NespSourceInformation source)
     : base(source)
 {
     this.Value = value;
 }
 internal NespParameterExpression(string symbol, Type annotatedType, NespSourceInformation source)
     : base(symbol, annotatedType, source)
 {
 }
Exemple #15
0
 internal NespSymbolExpression(string symbol, Type annotatedType, NespSourceInformation source)
     : base(source)
 {
     this.Symbol = symbol;
     this.type   = annotatedType;
 }
Exemple #16
0
 internal NespBoolExpression(bool value, NespSourceInformation source)
     : base(source)
 {
     this.Value = value;
 }
 internal NespPropertyExpression(PropertyInfo property, NespSourceInformation source)
     : base(source)
 {
     this.Property = property;
 }
Exemple #18
0
 internal NespCharExpression(char value, NespSourceInformation source)
     : base(source)
 {
     this.Value = value;
 }
 internal NespConstantExpression(object value, NespSourceInformation source)
     : this(value.GetType(), value, source)
 {
 }
Exemple #20
0
 internal NespBracketedListExpression(NespExpression[] list, NespSourceInformation source)
     : base(list, source)
 {
 }
 internal NespConstantExpression(Type type, object value, NespSourceInformation source)
     : base(source)
 {
     this.FixedType = type;
     this.Value     = value;
 }
Exemple #22
0
 internal NespIdExpression(string id, NespSourceInformation source)
     : base(source)
 {
     this.Id = id;
 }
Exemple #23
0
 internal NespAbstractExpression(NespSourceInformation source)
     : base(source)
 {
 }