Beispiel #1
0
        public static bool StartsWith(ParsingContext context)
        {
            char peek = context.Parser.Peek;

            return(peek == 'c' || peek == 'l' || peek == 'v' || SimpleOperatorName.StartsWith(context));
        }