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