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