StringConstantType Enum
Definition
The kind of string constant.
public enum class StringConstantType
public enum StringConstantType
type StringConstantType =
Public Enum StringConstantType
- Inheritance
-
StringConstantType
Fields
BareWord | 4 | A string like token not enclosed in any quotes. This usually includes a command name or command argument. |
DoubleQuoted | 2 | A string enclosed in double quotes, e.g. |
DoubleQuotedHereString | 3 | A here string enclosed in double quotes, e.g. |
SingleQuoted | 0 | A string enclosed in single quotes, e.g. |
SingleQuotedHereString | 1 | A here string enclosed in single quotes, e.g. |