Format fixture JSON with Prettier. (#8658)
This commit is contained in:
parent
45c28fa785
commit
79b2af5997
@ -7,7 +7,6 @@
|
|||||||
"bracketSpacing": true,
|
"bracketSpacing": true,
|
||||||
"jsxBracketSameLine": false,
|
"jsxBracketSameLine": false,
|
||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
"parser": "babylon",
|
|
||||||
"printWidth": 80,
|
"printWidth": 80,
|
||||||
"overrides": [{
|
"overrides": [{
|
||||||
"files": [
|
"files": [
|
||||||
@ -16,6 +15,7 @@
|
|||||||
"**/packages/*/src/**/*.js",
|
"**/packages/*/src/**/*.js",
|
||||||
"**/packages/*/test/**/*.js"
|
"**/packages/*/test/**/*.js"
|
||||||
],
|
],
|
||||||
|
"parser": "babylon",
|
||||||
"options": {
|
"options": {
|
||||||
"trailingComma": "all"
|
"trailingComma": "all"
|
||||||
}
|
}
|
||||||
|
|||||||
3
Makefile
3
Makefile
@ -52,6 +52,9 @@ lint:
|
|||||||
fix:
|
fix:
|
||||||
./node_modules/.bin/eslint scripts $(SOURCES) '*.js' --format=codeframe --fix
|
./node_modules/.bin/eslint scripts $(SOURCES) '*.js' --format=codeframe --fix
|
||||||
|
|
||||||
|
fix-json:
|
||||||
|
./node_modules/.bin/prettier "{packages,codemod}/*/test/fixtures/**/options.json" --write --loglevel warn
|
||||||
|
|
||||||
clean: test-clean
|
clean: test-clean
|
||||||
rm -rf packages/babel-polyfill/browser*
|
rm -rf packages/babel-polyfill/browser*
|
||||||
rm -rf packages/babel-polyfill/dist
|
rm -rf packages/babel-polyfill/dist
|
||||||
|
|||||||
@ -1,10 +1,12 @@
|
|||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"src",
|
"src",
|
||||||
"--out-dir", "lib",
|
"--out-dir",
|
||||||
|
"lib",
|
||||||
"--copy-files",
|
"--copy-files",
|
||||||
"--include-dotfiles",
|
"--include-dotfiles",
|
||||||
"--ignore", "src/foo",
|
"--ignore",
|
||||||
|
"src/foo",
|
||||||
"--verbose"
|
"--verbose"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,10 +1,12 @@
|
|||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"src",
|
"src",
|
||||||
"--out-dir", "lib",
|
"--out-dir",
|
||||||
|
"lib",
|
||||||
"--copy-files",
|
"--copy-files",
|
||||||
"--include-dotfiles",
|
"--include-dotfiles",
|
||||||
"--only", "src/foo",
|
"--only",
|
||||||
|
"src/foo",
|
||||||
"--verbose"
|
"--verbose"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
{
|
{
|
||||||
"args": ["src", "--out-dir", "lib", "--copy-files", "--include-dotfiles", "--verbose"]
|
"args": [
|
||||||
|
"src",
|
||||||
|
"--out-dir",
|
||||||
|
"lib",
|
||||||
|
"--copy-files",
|
||||||
|
"--include-dotfiles",
|
||||||
|
"--verbose"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"src",
|
"src",
|
||||||
"--out-dir", "lib",
|
"--out-dir",
|
||||||
|
"lib",
|
||||||
"--copy-files",
|
"--copy-files",
|
||||||
"--ignore", "src/foo/*",
|
"--ignore",
|
||||||
|
"src/foo/*",
|
||||||
"--verbose"
|
"--verbose"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"src",
|
"src",
|
||||||
"--out-dir", "lib",
|
"--out-dir",
|
||||||
|
"lib",
|
||||||
"--copy-files",
|
"--copy-files",
|
||||||
"--only", "src/foo/*",
|
"--only",
|
||||||
|
"src/foo/*",
|
||||||
"--verbose"
|
"--verbose"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"args": ["src", "--skip-initial-build", "--out-dir", "lib"]
|
"args": ["src", "--skip-initial-build", "--out-dir", "lib"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
{
|
{
|
||||||
"args": ["script.js", "script2.js", "--source-maps", "inline", "--out-file", "script3.js"]
|
"args": [
|
||||||
|
"script.js",
|
||||||
|
"script2.js",
|
||||||
|
"--source-maps",
|
||||||
|
"inline",
|
||||||
|
"--out-file",
|
||||||
|
"script3.js"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,9 @@
|
|||||||
{
|
{
|
||||||
"args": ["script.js", "script2.js", "--source-maps", "--out-file", "script3.js"]
|
"args": [
|
||||||
|
"script.js",
|
||||||
|
"script2.js",
|
||||||
|
"--source-maps",
|
||||||
|
"--out-file",
|
||||||
|
"script3.js"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["transform-classes", "external-helpers", "transform-block-scoping"]
|
"plugins": [
|
||||||
|
"transform-classes",
|
||||||
|
"external-helpers",
|
||||||
|
"transform-block-scoping"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["syntax-flow", "transform-flow-strip-types", "transform-parameters", "transform-block-scoping"]
|
"plugins": [
|
||||||
|
"syntax-flow",
|
||||||
|
"transform-flow-strip-types",
|
||||||
|
"transform-parameters",
|
||||||
|
"transform-block-scoping"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["transform-parameters", "transform-arrow-functions", "transform-block-scoping"]
|
"plugins": [
|
||||||
|
"transform-parameters",
|
||||||
|
"transform-arrow-functions",
|
||||||
|
"transform-block-scoping"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,10 +1,5 @@
|
|||||||
{
|
{
|
||||||
"compact": false,
|
"compact": false,
|
||||||
"presets": [
|
"presets": ["env"],
|
||||||
"env"
|
"plugins": ["external-helpers", "proposal-object-rest-spread"]
|
||||||
],
|
|
||||||
"plugins": [
|
|
||||||
"external-helpers",
|
|
||||||
"proposal-object-rest-spread"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["transform-destructuring", "transform-parameters", "transform-block-scoping", "transform-regenerator"]
|
"plugins": [
|
||||||
|
"transform-destructuring",
|
||||||
|
"transform-parameters",
|
||||||
|
"transform-block-scoping",
|
||||||
|
"transform-regenerator"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["external-helpers", "transform-classes", "transform-block-scoping"]
|
"plugins": [
|
||||||
|
"external-helpers",
|
||||||
|
"transform-classes",
|
||||||
|
"transform-block-scoping"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": ["transform-modules-commonjs"]
|
||||||
"transform-modules-commonjs"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx"] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["objectRestSpread"] }
|
{ "plugins": ["objectRestSpread"] }
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [["decorators", { "decoratorsBeforeExport": false }]],
|
||||||
["decorators", { "decoratorsBeforeExport": false }]
|
|
||||||
],
|
|
||||||
"decoratorsBeforeExport": false
|
"decoratorsBeforeExport": false
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [["decorators", { "decoratorsBeforeExport": false }]],
|
||||||
["decorators", { "decoratorsBeforeExport": false }]
|
|
||||||
],
|
|
||||||
"decoratorsBeforeExport": true
|
"decoratorsBeforeExport": true
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [["decorators", { "decoratorsBeforeExport": true }]],
|
||||||
["decorators", { "decoratorsBeforeExport": true }]
|
|
||||||
],
|
|
||||||
"decoratorsBeforeExport": false
|
"decoratorsBeforeExport": false
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [["decorators", { "decoratorsBeforeExport": true }]],
|
||||||
["decorators", { "decoratorsBeforeExport": true }]
|
|
||||||
],
|
|
||||||
"decoratorsBeforeExport": true
|
"decoratorsBeforeExport": true
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["classProperties", "flow"] }
|
{ "plugins": ["classProperties", "flow"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["flow"] }
|
{ "plugins": ["flow"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["classPrivateProperties", "flow"] }
|
{ "plugins": ["classPrivateProperties", "flow"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["flow"] }
|
{ "plugins": ["flow"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["doExpressions"] }
|
{ "plugins": ["doExpressions"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["bigInt"] }
|
{ "plugins": ["bigInt"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["functionBind"] }
|
{ "plugins": ["functionBind"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["doExpressions"] }
|
{ "plugins": ["doExpressions"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["dynamicImport"] }
|
{ "plugins": ["dynamicImport"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["jsx" ] }
|
{ "plugins": ["jsx"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["optionalChaining"] }
|
{ "plugins": ["optionalChaining"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["optionalChaining"] }
|
{ "plugins": ["optionalChaining"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["optionalCatchBinding"] }
|
{ "plugins": ["optionalCatchBinding"] }
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
{ "plugins": ["objectRestSpread"] }
|
{ "plugins": ["objectRestSpread"] }
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["jsx", "typescript"]
|
"plugins": ["jsx", "typescript"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["exportDefaultFrom", "typescript"]
|
"plugins": ["exportDefaultFrom", "typescript"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["jsx", "typescript"],
|
"plugins": ["jsx", "typescript"],
|
||||||
"sourceType": "module"
|
"sourceType": "module"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ],
|
"plugins": ["./plugin"],
|
||||||
"throws": " "
|
"throws": " "
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"plugins": [ "./plugin" ]
|
"plugins": ["./plugin"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"args": ["--eval","--print", "var a = 1;"],
|
"args": ["--eval", "--print", "var a = 1;"],
|
||||||
"stdout": "undefined"
|
"stdout": "undefined"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,8 @@
|
|||||||
{
|
{
|
||||||
"args": ["--expose-gc-as=garbageCollector", "--eval", "console.log(typeof global.garbageCollector)"],
|
"args": [
|
||||||
|
"--expose-gc-as=garbageCollector",
|
||||||
|
"--eval",
|
||||||
|
"console.log(typeof global.garbageCollector)"
|
||||||
|
],
|
||||||
"stdout": "function"
|
"stdout": "function"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,4 +1,8 @@
|
|||||||
{
|
{
|
||||||
"args": ["--expose_gc_as=garbageCollector", "--eval", "console.log(typeof global.garbageCollector)"],
|
"args": [
|
||||||
|
"--expose_gc_as=garbageCollector",
|
||||||
|
"--eval",
|
||||||
|
"console.log(typeof global.garbageCollector)"
|
||||||
|
],
|
||||||
"stdout": "function"
|
"stdout": "function"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"sourceFilename": "path/to/input-file.js"
|
"sourceFilename": "path/to/input-file.js"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (2:2)"
|
"throws": "Unexpected token (2:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "getter should have no params (1:11)"
|
"throws": "getter should have no params (1:11)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "setter should have exactly one param (1:11)"
|
"throws": "setter should have exactly one param (1:11)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "setter should have exactly one param (1:11)"
|
"throws": "setter should have exactly one param (1:11)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"allowReturnOutsideFunction": true
|
"allowReturnOutsideFunction": true
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"allowReturnOutsideFunction": true
|
"allowReturnOutsideFunction": true
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (1:1)"
|
"throws": "Unexpected token (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (1:0)"
|
"throws": "Unexpected token (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid number (1:0)"
|
"throws": "Invalid number (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Identifier directly after number (1:1)"
|
"throws": "Identifier directly after number (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid number (1:0)"
|
"throws": "Invalid number (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid number (1:0)"
|
"throws": "Invalid number (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid number (1:0)"
|
"throws": "Invalid number (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Identifier directly after number (1:1)"
|
"throws": "Identifier directly after number (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Identifier directly after number (1:1)"
|
"throws": "Identifier directly after number (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Expected number in radix 16 (1:2)"
|
"throws": "Expected number in radix 16 (1:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Identifier directly after number (1:2)"
|
"throws": "Identifier directly after number (1:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Identifier directly after number (1:1)"
|
"throws": "Identifier directly after number (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Identifier directly after number (1:3)"
|
"throws": "Identifier directly after number (1:3)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unterminated string constant (1:0)"
|
"throws": "Unterminated string constant (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Expecting Unicode escape sequence \\uXXXX (1:2)"
|
"throws": "Expecting Unicode escape sequence \\uXXXX (1:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid Unicode escape (1:1)"
|
"throws": "Invalid Unicode escape (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid Unicode escape (1:1)"
|
"throws": "Invalid Unicode escape (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unterminated regular expression (1:1)"
|
"throws": "Unterminated regular expression (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unterminated regular expression (1:1)"
|
"throws": "Unterminated regular expression (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in assignment expression (1:0)"
|
"throws": "Invalid left-hand side in assignment expression (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in assignment expression (1:0)"
|
"throws": "Invalid left-hand side in assignment expression (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in assignment expression (1:1)"
|
"throws": "Invalid left-hand side in assignment expression (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in postfix operation (1:0)"
|
"throws": "Invalid left-hand side in postfix operation (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in postfix operation (1:0)"
|
"throws": "Invalid left-hand side in postfix operation (1:0)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in prefix operation (1:2)"
|
"throws": "Invalid left-hand side in prefix operation (1:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in prefix operation (1:2)"
|
"throws": "Invalid left-hand side in prefix operation (1:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Invalid left-hand side in for-in statement (1:5)"
|
"throws": "Invalid left-hand side in for-in statement (1:5)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (1:1)"
|
"throws": "Unexpected token (1:1)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (1:2)"
|
"throws": "Unexpected token (1:2)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (1:5)"
|
"throws": "Unexpected token (1:5)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unexpected token (1:10)"
|
"throws": "Unexpected token (1:10)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unterminated regular expression (1:9)"
|
"throws": "Unterminated regular expression (1:9)"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"throws": "Unterminated string constant (1:8)"
|
"throws": "Unterminated string constant (1:8)"
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user