Exemplo n.º 1
0
 public override bool VisitIncludeDeclaration(VclLangParser.IncludeDeclarationContext context)
 {
     Files.Add(context.StringConstant().GetText().Trim('\"'));
     return(base.VisitIncludeDeclaration(context));
 }
Exemplo n.º 2
0
 public override bool VisitIncludeDeclaration(VclLangParser.IncludeDeclarationContext context)
 {
     Operations.Add($"Include {context.children[1].GetText().Trim('"')}");
     return base.VisitIncludeDeclaration(context);
 }