Welcome to mirror list, hosted at ThFree Co, Russian Federation.

es2015.js « test « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51b94d2e3eeb0a52ab44c0da138fb6f8b8456aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

var ES = require('../').ES2015;

var ops = require('../operations/2015');

// jscs:disable
var expectedMissing = ['CreateMethodProperty', 'DefinePropertyOrThrow', 'DeletePropertyOrThrow', 'Construct', 'SetIntegrityLevel', 'TestIntegrityLevel', 'CreateArrayFromList', 'CreateListFromArrayLike', 'OrdinaryHasInstance', 'EnumerableOwnNames', 'GetIterator', 'IteratorNext', 'IteratorComplete', 'IteratorValue', 'IteratorStep', 'IteratorClose', 'CreateListIterator', 'thisNumberValue', 'thisTimeValue', 'thisStringValue', 'RegExpBuiltinExec', 'IsPromise', 'NormalCompletion'];
// jscs:enable

require('./tests').es2015(ES, ops, expectedMissing);