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