33 lines
596 B
JavaScript
33 lines
596 B
JavaScript
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
* Proprietary and Confidential
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const constants = require('./constants');
|
|
const util = require('./util');
|
|
|
|
module.exports = {
|
|
create,
|
|
};
|
|
|
|
class List {}
|
|
|
|
// Non-mutating methods:
|
|
util.createMethods(List.prototype, constants.propTypes.LIST, [
|
|
'snapshot',
|
|
]);
|
|
|
|
// Mutating methods:
|
|
util.createMethods(List.prototype, constants.propTypes.LIST, [
|
|
'pop',
|
|
'shift',
|
|
'push',
|
|
'unshift',
|
|
'splice',
|
|
], true);
|
|
|
|
function create(realmId, info) {
|
|
return util.createList(List.prototype, realmId, info, true);
|
|
}
|