2016-02-18 19:59:34 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
2015-10-28 17:37:17 +00:00
|
|
|
|
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-11-03 06:16:50 +00:00
|
|
|
const {objectTypes} = constants;
|
|
|
|
|
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-11-20 22:05:18 +00:00
|
|
|
// Non-mutating methods:
|
2015-11-03 06:16:50 +00:00
|
|
|
util.createMethods(List.prototype, objectTypes.LIST, [
|
2016-02-18 04:27:10 +00:00
|
|
|
'filtered',
|
2016-02-18 21:41:11 +00:00
|
|
|
'sorted',
|
2015-11-20 22:05:18 +00:00
|
|
|
'snapshot',
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Mutating methods:
|
2015-11-03 06:16:50 +00:00
|
|
|
util.createMethods(List.prototype, objectTypes.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
|
|
|
}
|