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