Identifier

extern (C++) final
class Identifier : RootObject {
int value;
const(char)* string;
size_t len;
StringTable stringtable;
}

Members

Static functions

idPool
Identifier idPool(const(char)[] s)

Create an identifier in the string table.

isValidIdentifier
bool isValidIdentifier(const(char)* p)

Determine if string is a valid Identifier.

Meta