예제 #1
0
 def code_operator_addition():
     actions.auto_insert(" + ")
예제 #2
0
 def code_operator_bitwise_right_shift_assignment():
     actions.auto_insert(" >>= ")
예제 #3
0
 def code_operator_object_accessor():
     actions.auto_insert(".")
예제 #4
0
 def code_operator_bitwise_exclusive_or():
     actions.auto_insert(" ^ ")
예제 #5
0
 def code_operator_bitwise_left_shift_assignment():
     actions.auto_insert(" <<= ")
예제 #6
0
 def code_operator_bitwise_and():
     actions.auto_insert(" & ")
예제 #7
0
 def code_operator_increment():
     actions.auto_insert('++')
예제 #8
0
 def code_operator_division_assignment():
     actions.auto_insert(" /= ")
예제 #9
0
 def code_operator_modulo():
     actions.auto_insert(" % ")
예제 #10
0
 def code_operator_exponent():
     actions.auto_insert(" ^ ")
예제 #11
0
 def code_operator_division():
     actions.auto_insert(" / ")
예제 #12
0
 def code_operator_multiplication_assignment():
     actions.auto_insert(" *= ")
예제 #13
0
 def code_operator_multiplication():
     actions.auto_insert(" * ")
예제 #14
0
 def code_operator_addition_assignment():
     actions.auto_insert(" += ")
예제 #15
0
 def code_operator_and():
     actions.auto_insert(" && ")
예제 #16
0
 def code_operator_modulo_assignment():
     actions.auto_insert(" %= ")
예제 #17
0
 def code_operator_or():
     actions.auto_insert(" || ")
예제 #18
0
 def code_operator_equal():
     actions.auto_insert(" == ")
예제 #19
0
 def code_operator_bitwise_and_assignment():
     actions.auto_insert(' &= ')
예제 #20
0
 def code_operator_not_equal():
     actions.auto_insert(" != ")
예제 #21
0
 def code_operator_bitwise_or():
     actions.auto_insert(" | ")
예제 #22
0
 def code_operator_greater_than():
     actions.auto_insert(" > ")
예제 #23
0
 def code_operator_bitwise_left_shift():
     actions.auto_insert(" << ")
예제 #24
0
 def code_operator_greater_than_or_equal_to():
     actions.auto_insert(" >= ")
예제 #25
0
 def code_operator_bitwise_right_shift():
     actions.auto_insert(" >> ")
예제 #26
0
 def code_operator_less_than():
     actions.auto_insert(" < ")
예제 #27
0
 def code_self():
     actions.auto_insert("this")
예제 #28
0
 def code_operator_less_than_or_equal_to():
     actions.auto_insert(" <= ")
예제 #29
0
 def code_insert_null():
     actions.auto_insert("null")
예제 #30
0
 def code_operator_subtraction_assignment():
     actions.auto_insert(" -= ")