Skip to content

Commit

Permalink
deps: update acorn to 8.8.2
Browse files Browse the repository at this point in the history
PR-URL: #46363
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
nodejs-github-bot authored and juanarbol committed Mar 5, 2023
1 parent 1eaafc7 commit 732c77e
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 45 deletions.
10 changes: 10 additions & 0 deletions deps/acorn/acorn/CHANGELOG.md
@@ -1,3 +1,13 @@
## 8.8.2 (2023-01-23)

### Bug fixes

Fix a bug that caused `allowHashBang` to be set to false when not provided, even with `ecmaVersion >= 14`.

Fix an exception when passing no option object to `parse` or `new Parser`.

Fix incorrect parse error on `if (0) let\n[astral identifier char]`.

## 8.8.1 (2022-10-24)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion deps/acorn/acorn/dist/acorn.d.ts
Expand Up @@ -11,7 +11,7 @@ declare namespace acorn {
[Symbol.iterator](): Iterator<Token>
}

type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 'latest'
type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 'latest'

interface Options {
ecmaVersion: ecmaVersion
Expand Down
43 changes: 23 additions & 20 deletions deps/acorn/acorn/dist/acorn.js

Large diffs are not rendered by default.

41 changes: 23 additions & 18 deletions deps/acorn/acorn/dist/acorn.mjs

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions deps/acorn/acorn/dist/bin.js
Expand Up @@ -4,8 +4,7 @@ var path = require('path');
var fs = require('fs');
var acorn = require('./acorn.js');

function _interopNamespace(e) {
if (e && e.__esModule) return e;
function _interopNamespaceDefault(e) {
var n = Object.create(null);
if (e) {
Object.keys(e).forEach(function (k) {
Expand All @@ -18,11 +17,11 @@ function _interopNamespace(e) {
}
});
}
n["default"] = e;
n.default = e;
return Object.freeze(n);
}

var acorn__namespace = /*#__PURE__*/_interopNamespace(acorn);
var acorn__namespace = /*#__PURE__*/_interopNamespaceDefault(acorn);

var inputFilePaths = [], forceFileName = false, fileMode = false, silent = false, compact = false, tokenize = false;
var options = {};
Expand Down
2 changes: 1 addition & 1 deletion deps/acorn/acorn/package.json
Expand Up @@ -16,7 +16,7 @@
],
"./package.json": "./package.json"
},
"version": "8.8.1",
"version": "8.8.2",
"engines": {
"node": ">=0.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/acorn_version.h
Expand Up @@ -2,5 +2,5 @@
// Refer to tools/update-acorn.sh
#ifndef SRC_ACORN_VERSION_H_
#define SRC_ACORN_VERSION_H_
#define ACORN_VERSION "8.8.1"
#define ACORN_VERSION "8.8.2"
#endif // SRC_ACORN_VERSION_H_

0 comments on commit 732c77e

Please sign in to comment.