2015-10-28 17:37:17 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const constants = require('./constants');
|
|
|
|
const util = require('./util');
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
module.exports = {
|
|
|
|
create,
|
|
|
|
};
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
class List {}
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-19 23:19:43 +00:00
|
|
|
util.createMethods(List.prototype, constants.propTypes.LIST, [
|
2015-10-02 05:56:47 +00:00
|
|
|
'pop',
|
|
|
|
'shift',
|
|
|
|
'push',
|
|
|
|
'unshift',
|
|
|
|
'splice',
|
2015-10-19 19:06:47 +00:00
|
|
|
], true);
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
function create(realmId, info) {
|
2015-10-21 20:09:51 +00:00
|
|
|
return util.createList(List.prototype, realmId, info, true);
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|