示例#1
0
 public ArrayType(TypeBase memberType, Span span, string asString) : base(span, asString)
 {
     MemberType = memberType;
 }
示例#2
0
 public MapType(TypeBase keyType, TypeBase valueType, Span span, string asString) : base(span, asString)
 {
     KeyType   = keyType;
     ValueType = valueType;
 }
示例#3
0
 public static bool IsFixedScalar(this TypeBase type)
 {
     return(type is ScalarType and {
         BaseType : not BaseType.String
     });