Home
last modified time | relevance | path

Searched refs:MakeKeyword (Results 1 – 1 of 1) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/Syntax/
DGrammar.cs107 public static readonly Parser<string> UsingKeyword = MakeKeyword("using");
109 public static readonly Parser<string> NewKeyword = MakeKeyword("new");
111 public static readonly Parser<string> AsKeyword = MakeKeyword("as");
113 public static readonly Parser<string> InitKeyword = MakeKeyword("init");
115 public static readonly Parser<string> LocalKeyword = MakeKeyword("local");
117 public static readonly Parser<string> PrefixedKeyword = MakeKeyword("prefixed");
119 public static readonly Parser<bool> TrueKeyword = MakeKeyword("true", true);
121 public static readonly Parser<bool> FalseKeyword = MakeKeyword("false", false);
123 public static readonly Parser<Value> NoneKeyword = MakeKeyword("none", (Value)null);
125 …public static readonly Parser<EmptyValue> EmptyKeyword = MakeKeyword("empty", EmptyValue.Instance);
[all …]