Cleaned up the SerialPort header a bit

This commit is contained in:
Jeff Parsons 2017-08-08 17:12:20 -07:00 committed by Jeff Parsons
commit f6fe72f43f
4 changed files with 31 additions and 26 deletions

File diff suppressed because one or more lines are too long

View file

@ -55010,6 +55010,12 @@ Web.onInit(ParallelPort.init);
* which would force us to declare all class properties in the constructor, as well as prevent
* us from defining any named properties. So, for now, we mark all our classes as 'unrestricted'.
*
* @class SerialPort
* @property {number} iAdapter
* @property {number} portBase
* @property {number} nIRQ
* @property {string|null} consoleOutput
* @property {Object} controlIOBuffer (DOM element bound to the port for rudimentary output; see transmitByte())
* @unrestricted
*/
class SerialPort extends Component {

File diff suppressed because one or more lines are too long