mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 03:01:48 +03:00
13 lines
194 B
JavaScript
13 lines
194 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @class
|
|
*/
|
|
function Socket() {
|
|
/** Port number. */
|
|
this['port#number'] = 0;
|
|
}
|
|
|
|
/** Open a connection. */
|
|
Socket.prototype['open~a.connection#now'] = function() {};
|