Placeholder

data class Placeholder(val title: String) : Type

Used to define the unknown (at parse time) type of a value

Example:

struct myStructure {
int myNum;
char myLetter;
};
int main() {
struct myStructure s1;
return 0;
}

In this example, the type of s1 would be a Placeholder since myStructure is unknown at parse time

Constructors

Link copied to clipboard
constructor(title: String)

Properties

Link copied to clipboard
open override val title: String

represents the name of the type