mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +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() {};
|