예제 #1
0
파일: SimpleFunc.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_simple_func(self)
예제 #2
0
파일: Body.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_body(self)
예제 #3
0
 def accept(self, v: Visitor):
     return v.visit_plotter(self)
예제 #4
0
파일: MathFuncs.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_math_funcs(self)
예제 #5
0
파일: Axis.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_var_axis(self)
예제 #6
0
 def accept(self, v: Visitor):
     return v.visit_source(self)
예제 #7
0
 def accept(self, v: Visitor):
     return v.visit_loader(self)
예제 #8
0
파일: Value.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_value(self)
예제 #9
0
 def accept(self, v: Visitor):
     return v.visit_trigger(self)
예제 #10
0
 def accept(self, v: Visitor):
     return v.visit_program(self)
예제 #11
0
파일: Mapper.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_mapper(self)
예제 #12
0
 def accept(self, v: Visitor):
     return v.visit_graph(self)
예제 #13
0
파일: Axis.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_func_axis(self)
예제 #14
0
 def accept(self, v: Visitor):
     return v.visit_operand(self)
예제 #15
0
 def accept(self, v: Visitor):
     return v.visit_declare(self)
예제 #16
0
 def accept(self, v: Visitor):
     return v.visit_builtin_func(self)
예제 #17
0
파일: Type.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_type(self)
예제 #18
0
 def accept(self, v: Visitor):
     return v.visit_assigner(self)
예제 #19
0
파일: FastFunc.py 프로젝트: rlnsy/mystix
 def accept(self, v: Visitor):
     return v.visit_decrement(self)