示例#1
0
 public ArrayTypeRepresentation(ITypeRepresentation underlyingType)
 {
     UnderlyingType = underlyingType;
 }
 public VariableType(ITypeRepresentation entityType) : base(entityType)
 {
 }
示例#3
0
 protected ScalarType(ITypeRepresentation entityType)
 {
     EntityType = entityType;
 }
示例#4
0
 public RoutineType(ITypeRepresentation returnType, ImmutableList <ITypeRepresentation> parametersTypes)
 {
     ReturnType      = Some(returnType);
     ParametersTypes = parametersTypes;
 }
示例#5
0
 public RoutineType(ITypeRepresentation returnType)
 {
     ReturnType = Some(returnType);
 }
 public TypeAliasType(ITypeRepresentation entityType) : base(entityType)
 {
 }