%PDF- %PDF-
Direktori : /usr/share/nodejs/acorn-class-fields/ |
Current File : //usr/share/nodejs/acorn-class-fields/run_test262.js |
"use strict" const path = require("path") const run = require("test262-parser-runner") const acorn = require("acorn") const Parser = acorn.Parser.extend(require(".")) const unsupportedFeatures = [ "class-methods-private", "class-static-fields-public", "class-static-fields-private", "class-static-methods-private" ] const implementedFeatures = [ "class-fields-private", "class-fields-public" ] run( (content, options) => Parser.parse(content, {sourceType: options.sourceType, ecmaVersion: 11}), { testsDirectory: path.dirname(require.resolve("test262/package.json")), skip: test => (!test.attrs.features || !implementedFeatures.some(f => test.attrs.features.includes(f)) || unsupportedFeatures.some(f => test.attrs.features.includes(f))), } )