mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
8f2023d961
Summary: fix 4 lint warnings under Libraries/Components/Touchable directory Closes https://github.com/facebook/react-native/pull/4449 Reviewed By: svcscm Differential Revision: D2705537 Pulled By: spicyj fb-gh-sync-id: 0c573d846a2263819c2a0bffe0a178eee1fe3fca
33 lines
706 B
JavaScript
33 lines
706 B
JavaScript
/**
|
|
* @providesModule Position
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var PooledClass = require('PooledClass');
|
|
|
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
|
|
/**
|
|
* Position does not expose methods for construction via an `HTMLDOMElement`,
|
|
* because it isn't meaningful to construct such a thing without first defining
|
|
* a frame of refrence.
|
|
*
|
|
* @param {number} windowStartKey Key that window starts at.
|
|
* @param {number} windowEndKey Key that window ends at.
|
|
*/
|
|
function Position(left, top) {
|
|
this.left = left;
|
|
this.top = top;
|
|
}
|
|
|
|
Position.prototype.destructor = function() {
|
|
this.left = null;
|
|
this.top = null;
|
|
};
|
|
|
|
PooledClass.addPoolingTo(Position, twoArgumentPooler);
|
|
|
|
module.exports = Position;
|
|
|