Esempio n. 1
0
        private List <string> GetFileGlobList(MutatorParser.FileListContext context)
        {
            var fileGlobList = new List <string>();

            if (context != null)
            {
                foreach (var fileglob in context.FILEGLOB())
                {
                    fileGlobList.Add(fileglob.GetText());
                }
            }
            return(fileGlobList);
        }
Esempio n. 2
0
 public MutASTNode VisitFileList([NotNull] MutatorParser.FileListContext context)
 {
     throw new NotImplementedException("Should never be called");
 }