ZenCode compiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GenericParameterBound.zs 392B

1234567891011
  1. public interface GenericParameterBound {
  2. get isObjectType as bool;
  3. registerMembers(cache as LocalMemberCache, type as TypeMembers) as void;
  4. matches(cache as LocalMemberCache, type as ITypeID) as bool;
  5. withGenericArguments(registry as GlobalTypeRegistry, arguments as ITypeID[TypeParameter]) as GenericParameterBound;
  6. accept<T>(visitor as GenericParameterBoundVisitor<T>) as T;
  7. }