Coverage for src/pyensae/languages/CSharpPreprocessorParserListener.py: 0%

38 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-03 02:16 +0200

1# Generated from \CSharpPreprocessorParser.g4 by ANTLR 4.10.1 

2from antlr4 import * 

3if __name__ is not None and "." in __name__: 

4 from .CSharpPreprocessorParser import CSharpPreprocessorParser 

5else: 

6 from CSharpPreprocessorParser import CSharpPreprocessorParser 

7# import java.util.Stack 

8# import java.util.HashSet 

9 

10# This class defines a complete listener for a parse tree produced by CSharpPreprocessorParser. 

11 

12 

13class CSharpPreprocessorParserListener(ParseTreeListener): 

14 

15 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessorDeclaration. 

16 def enterPreprocessorDeclaration(self, ctx: CSharpPreprocessorParser.PreprocessorDeclarationContext): 

17 pass 

18 

19 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessorDeclaration. 

20 def exitPreprocessorDeclaration(self, ctx: CSharpPreprocessorParser.PreprocessorDeclarationContext): 

21 pass 

22 

23 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessorConditional. 

24 def enterPreprocessorConditional(self, ctx: CSharpPreprocessorParser.PreprocessorConditionalContext): 

25 pass 

26 

27 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessorConditional. 

28 def exitPreprocessorConditional(self, ctx: CSharpPreprocessorParser.PreprocessorConditionalContext): 

29 pass 

30 

31 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessorLine. 

32 def enterPreprocessorLine(self, ctx: CSharpPreprocessorParser.PreprocessorLineContext): 

33 pass 

34 

35 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessorLine. 

36 def exitPreprocessorLine(self, ctx: CSharpPreprocessorParser.PreprocessorLineContext): 

37 pass 

38 

39 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessorDiagnostic. 

40 def enterPreprocessorDiagnostic(self, ctx: CSharpPreprocessorParser.PreprocessorDiagnosticContext): 

41 pass 

42 

43 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessorDiagnostic. 

44 def exitPreprocessorDiagnostic(self, ctx: CSharpPreprocessorParser.PreprocessorDiagnosticContext): 

45 pass 

46 

47 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessorRegion. 

48 def enterPreprocessorRegion(self, ctx: CSharpPreprocessorParser.PreprocessorRegionContext): 

49 pass 

50 

51 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessorRegion. 

52 def exitPreprocessorRegion(self, ctx: CSharpPreprocessorParser.PreprocessorRegionContext): 

53 pass 

54 

55 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessorPragma. 

56 def enterPreprocessorPragma(self, ctx: CSharpPreprocessorParser.PreprocessorPragmaContext): 

57 pass 

58 

59 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessorPragma. 

60 def exitPreprocessorPragma(self, ctx: CSharpPreprocessorParser.PreprocessorPragmaContext): 

61 pass 

62 

63 # Enter a parse tree produced by CSharpPreprocessorParser#directive_new_line_or_sharp. 

64 def enterDirective_new_line_or_sharp(self, ctx: CSharpPreprocessorParser.Directive_new_line_or_sharpContext): 

65 pass 

66 

67 # Exit a parse tree produced by CSharpPreprocessorParser#directive_new_line_or_sharp. 

68 def exitDirective_new_line_or_sharp(self, ctx: CSharpPreprocessorParser.Directive_new_line_or_sharpContext): 

69 pass 

70 

71 # Enter a parse tree produced by CSharpPreprocessorParser#preprocessor_expression. 

72 def enterPreprocessor_expression(self, ctx: CSharpPreprocessorParser.Preprocessor_expressionContext): 

73 pass 

74 

75 # Exit a parse tree produced by CSharpPreprocessorParser#preprocessor_expression. 

76 def exitPreprocessor_expression(self, ctx: CSharpPreprocessorParser.Preprocessor_expressionContext): 

77 pass 

78 

79 

80del CSharpPreprocessorParser