Beispiel #1
0
            ExitInput_files
            (
                [NotNull] CLIParser.Input_filesContext Context
            )
            {
                //
                // A little LINQ magic. Get the list of string tokens. Input files are separated by space, so unlike the file_list rule, we don't
                // need to skip commas
                //

                parsed_command_line.file_names = (from e in Context.children select e.GetText()).ToList();
            }                       // End ExitInput_files
 /// <summary>
 /// Exit a parse tree produced by <see cref="CLIParser.input_files"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitInput_files([NotNull] CLIParser.Input_filesContext context)
 {
 }