Esempio n. 1
0
            ExitExclude_dlls_qual
            (
                [NotNull] CLIParser.Exclude_dlls_qualContext Context
            )
            {
                //
                // Get either the file name or the list of file names
                //

                if (_file != null)
                {
                    parsed_command_line.exclude_dlls.Add(_file);
                    _file = null;
                }
                else
                {
                    parsed_command_line.exclude_dlls = _file_list;
                    _file_list = null;
                }
            }                       // End ExitExclude_dll_qual
Esempio n. 2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="CLIParser.exclude_dlls_qual"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitExclude_dlls_qual([NotNull] CLIParser.Exclude_dlls_qualContext context)
 {
 }