[Gambas-bugtracker] Bug #1540: Line continuation character and statement separator

bugtracker at gambaswiki.org bugtracker at gambaswiki.org
Fri Mar 1 13:26:39 CET 2019


http://gambaswiki.org/bugtracker/edit?object=BUG.1540&from=L21haW4-

Cedron DAWG reported a new bug.

Summary
-------

Line continuation character and statement separator

Type             : Request
Priority         : Low
Gambas version   : Master
Product          : Development Environment


Description
-----------

My preference would be the traditional BASIC trailing underscore and standalone colon.

>From my video game:

           theTouchFlag = myGame.HandleGamePadRead(p, myEvent.EventType, myEvent.EventIndex, myEvent.EventValue)

  Public Sub HandleGamePadRead(argPlayerIndex As Integer, argType As Byte, argIndex As Short, argValue As Short) As Boolean



I'd like to be able to make it:

           theTouchFlag = myGame.HandleGamePadRead( p,                    _
                                                    myEvent.EventType,    _
                                                    myEvent.EventIndex,   _
                                                    myEvent.EventValue )


  Public Sub HandleGamePadRead( argPlayerIndex As Integer, _
                                argType        As Byte,    _
                                argIndex       As Short,   _
                                argValue       As Short) As Boolean


System information
------------------

N/A




More information about the Bugtracker mailing list