Exemplo n.º 1
0
 def code_operator_bitwise_left_shift():
     actions.auto(' << ')
Exemplo n.º 2
0
 def code_operator_modulo_assignment():
     actions.auto(' %= ')
Exemplo n.º 3
0
 def code_operator_not_equal():
     actions.auto(' != ')
Exemplo n.º 4
0
 def code_operator_exponent():
     actions.auto('.pow()')
     actions.edit.left()
Exemplo n.º 5
0
 def code_operator_division_assignment():
     actions.auto(' /= ')
Exemplo n.º 6
0
 def code_operator_addition():
     actions.auto(' + ')
Exemplo n.º 7
0
 def code_operator_multiplication():
     actions.auto(' * ')
Exemplo n.º 8
0
 def code_import():
     actions.auto('use ')
Exemplo n.º 9
0
 def code_comment_line_prefix():
     actions.auto('//')
Exemplo n.º 10
0
 def code_operator_object_accessor():
     actions.auto('.')
Exemplo n.º 11
0
 def code_block():
     actions.auto('{\n\n}')
     actions.edit.left()
     actions.edit.up()
     actions.key('tab')
Exemplo n.º 12
0
 def code_operator_bitwise_right_shift_assignment():
     actions.auto(' >>= ')
Exemplo n.º 13
0
 def code_operator_bitwise_right_shift():
     actions.auto(' >> ')
Exemplo n.º 14
0
 def code_operator_bitwise_left_shift_assignment():
     actions.auto(' <<= ')
Exemplo n.º 15
0
 def code_operator_subtraction():
     actions.auto(' - ')
Exemplo n.º 16
0
 def code_comment_documentation():
     actions.auto('/// ')
Exemplo n.º 17
0
 def code_operator_subtraction_assignment():
     actions.auto(' -= ')
Exemplo n.º 18
0
 def code_self():
     actions.auto('self')
Exemplo n.º 19
0
 def code_operator_addition_assignment():
     actions.auto(' += ')
Exemplo n.º 20
0
 def code_insert_true():
     actions.auto('true')
Exemplo n.º 21
0
 def code_operator_multiplication_assignment():
     actions.auto(' *= ')
Exemplo n.º 22
0
 def code_insert_false():
     actions.auto('false')
Exemplo n.º 23
0
 def code_operator_division():
     actions.auto(' / ')
Exemplo n.º 24
0
 def code_operator_indirection():
     actions.auto('*')
Exemplo n.º 25
0
 def code_operator_modulo():
     actions.auto(' % ')
Exemplo n.º 26
0
 def code_operator_address_of():
     actions.auto('&')
Exemplo n.º 27
0
 def code_operator_equal():
     actions.auto(' == ')
Exemplo n.º 28
0
 def code_operator_assignment():
     actions.auto(' = ')
Exemplo n.º 29
0
 def code_operator_greater_than():
     actions.auto(' > ')
Exemplo n.º 30
0
 def code_operator_bitwise_exclusive_or():
     actions.auto(' ^ ')