Example #1
0
 def accept(self, v: Visitor):
     return v.visit_simple_func(self)
Example #2
0
File: Body.py Project: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_body(self)
Example #3
0
 def accept(self, v: Visitor):
     return v.visit_plotter(self)
Example #4
0
 def accept(self, v: Visitor):
     return v.visit_math_funcs(self)
Example #5
0
File: Axis.py Project: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_var_axis(self)
Example #6
0
 def accept(self, v: Visitor):
     return v.visit_source(self)
Example #7
0
 def accept(self, v: Visitor):
     return v.visit_loader(self)
Example #8
0
 def accept(self, v: Visitor):
     return v.visit_value(self)
Example #9
0
 def accept(self, v: Visitor):
     return v.visit_trigger(self)
Example #10
0
 def accept(self, v: Visitor):
     return v.visit_program(self)
Example #11
0
 def accept(self, v: Visitor):
     return v.visit_mapper(self)
Example #12
0
 def accept(self, v: Visitor):
     return v.visit_graph(self)
Example #13
0
File: Axis.py Project: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_func_axis(self)
Example #14
0
 def accept(self, v: Visitor):
     return v.visit_operand(self)
Example #15
0
 def accept(self, v: Visitor):
     return v.visit_declare(self)
Example #16
0
 def accept(self, v: Visitor):
     return v.visit_builtin_func(self)
Example #17
0
File: Type.py Project: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_type(self)
Example #18
0
 def accept(self, v: Visitor):
     return v.visit_assigner(self)
Example #19
0
 def accept(self, v: Visitor):
     return v.visit_decrement(self)