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