def exitLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     assert tnsnamesParser.ruleNames[ctx.getRuleIndex()] == self._tnsStack.pop
 def enterLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     super().enterLsnr_entry(ctx)
     self._level = 1
     line_string = str(ctx.getChild(0).getText()) + str(ctx.getChild(1))
     self._lines.append(line_string)
     self._level += 1
 def enterLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     self._tnsStack.push(tnsnamesParser.ruleNames[ctx.getRuleIndex()])
Exemple #4
0
 def enterLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     super().enterLsnr_entry(ctx)
     self._level = 1
     line_string = str(ctx.getChild(0).getText()) + str(ctx.getChild(1))
     self._lines.append(line_string)
     self._level += 1
Exemple #5
0
 def exitLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     assert tnsnamesParser.ruleNames[
         ctx.getRuleIndex()] == self._tnsStack.pop
Exemple #6
0
 def enterLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     self._tnsStack.push(tnsnamesParser.ruleNames[ctx.getRuleIndex()])
 def enterLsnr_entry(self, ctx: tnsnamesParser.Lsnr_entryContext):
     super().enterLsnr_entry(ctx)
     self._lines.append(ctx.getText())