예제 #1
0
        public void start()
        {
            try
            {
                string        input = "using someting";
                StringBuilder text  = new StringBuilder();
                Console.WriteLine("Input the chat.");

                // to type the EOF character and end the input: use CTRL+D, then press <enter>
                while ((input = Console.ReadLine()) != "\u0004")
                {
                    text.AppendLine(input);
                }

                // AntlrInputStream inputStream = new AntlrInputStream(text.ToString());
                ICharStream inputStream = new AntlrInputStream(text.ToString());
                CSharpLexer csharpLexer = new CSharpLexer(inputStream);

                CommonTokenStream        commonTokenStream = new CommonTokenStream(csharpLexer);
                CSharpPreprocessorParser csharpParser      = new CSharpPreprocessorParser(commonTokenStream);

                CSharpPreprocessorParser.Preprocessor_expressionContext preprocessorContext = csharpParser.preprocessor_expression();

                CSharpPreprocessorParserVisitor visitor = new CSharpPreprocessorParserVisitor();
                visitor.Visit(preprocessorContext);

                foreach (var value in visitor.csharpValues)
                {
                    Console.WriteLine("Token: {0} Value: {1}", value.Token, value.Value);
                }
                Console.Read();
            }

            catch (Exception ex)
            {
                Console.WriteLine("Error: " + ex);
            }
        }
예제 #2
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="CSharpPreprocessorParser.preprocessor_expression"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitPreprocessor_expression([NotNull] CSharpPreprocessorParser.Preprocessor_expressionContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by <see cref="CSharpPreprocessorParser.preprocessor_expression"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitPreprocessor_expression([NotNull] CSharpPreprocessorParser.Preprocessor_expressionContext context)
 {
 }