Macro: MOVE

Module location: FMAC line 11520 (view source)

Create Move command that will move object access methods to a var with simple name

  #IFDEF !1 // if Move Var to Var...normal move.
    MoveVar !1 !2 !3
  #ELSE
    #IFDEF GET_!1   // if defined as a function
      #IF (GET_!1>$40000000) // If move Object-access to (var|property)
        MoveObj !1 !2 !3
      #ELSE
        MoveVar !1 !2 !3 // this will generate an error
      #ENDIF
    #ELSE
      MoveVar !1 !2 !3 // will gen an error
    #ENDIF
  #ENDIF