BadScript 2
Loading...
Searching...
No Matches
IBadGenericObject.cs
Go to the documentation of this file.
2
6public interface IBadGenericObject
7{
11 bool IsResolved { get; }
15 bool IsGeneric { get; }
19 string GenericName { get; }
23 IReadOnlyCollection<string> GenericParameters { get; }
30}
The Base Class for all BadScript Objects.
Definition BadObject.cs:14
bool IsResolved
Indicates if the Object was already resolved to a concrete type.
IReadOnlyCollection< string > GenericParameters
The Generic Parameters of the Object.
BadObject CreateGeneric(BadObject[] args)
Resolves the Generic Object to a concrete type.
string GenericName
The Generic Name of the Object.
bool IsGeneric
Indicates if the Object is a Generic Object.