6 references to TryMatch
Microsoft.CodeAnalysis.Features (6)
EmbeddedLanguages\Json\JsonParser.cs (6)
473if (TryMatch(token, "NaN", JsonKind.NaNLiteralToken, out var newKind) || 474TryMatch(token, "null", JsonKind.NullLiteralToken, out newKind) || 475TryMatch(token, "true", JsonKind.TrueLiteralToken, out newKind) || 476TryMatch(token, "false", JsonKind.FalseLiteralToken, out newKind) || 477TryMatch(token, "Infinity", JsonKind.InfinityLiteralToken, out newKind) || 478TryMatch(token, "undefined", JsonKind.UndefinedLiteralToken, out newKind))