Esempio n. 1
0
 def dot(self, ctx):
     return Delimiter('.')
Esempio n. 2
0
 def close_parenthesis(self, ctx):
     return Delimiter(')')
Esempio n. 3
0
 def my_not(self, ctx):
     return Delimiter('!')
Esempio n. 4
0
 def close_brace(self, ctx):
     return Delimiter('}')
Esempio n. 5
0
 def open_parenthesis(self, ctx):
     return Delimiter('(')
Esempio n. 6
0
 def assignment(self, ctx):
     return Delimiter('=')
Esempio n. 7
0
 def open_brace(self, ctx):
     return Delimiter('{')
Esempio n. 8
0
 def greater_than_or_equal_to(self, ctx):
     return Delimiter('>=')
Esempio n. 9
0
 def open_bracket(self, ctx):
     return Delimiter('[')
Esempio n. 10
0
 def less_than_or_equal_to(self, ctx):
     return Delimiter('<=')
Esempio n. 11
0
 def greater_than(self, ctx):
     return Delimiter('>')
Esempio n. 12
0
 def less_than(self, ctx):
     return Delimiter('<')
Esempio n. 13
0
 def not_equal_to(self, ctx):
     return Delimiter('!=')
Esempio n. 14
0
 def equals(self, ctx):
     return Delimiter('==')
Esempio n. 15
0
 def colon(self, ctx):
     return Delimiter(':')
Esempio n. 16
0
 def close_bracket(self, ctx):
     return Delimiter(']')
Esempio n. 17
0
 def comma(self, ctx):
     return Delimiter(',')
Esempio n. 18
0
 def pipe(self, ctx):
     return Delimiter('|')