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