diff --git a/CHANGELOG.md b/CHANGELOG.md index 56a3502860..c0cf85961f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,14 +10,23 @@ > - :house: [Internal] > - :nail_care: [Polish] -# 11.1.5 (Unreleased) +# 11.2.0-beta.1 -- Handle absolute file paths in gentype https://github.com/rescript-lang/rescript-compiler/pull/7111 -- Deprecate JSX 3 https://github.com/rescript-lang/rescript-compiler/pull/7042 -- Deprecate js_cast.res https://github.com/rescript-lang/rescript-compiler/pull/7074 +#### :boom: Breaking Change + +- Deprecate JSX 3. https://github.com/rescript-lang/rescript-compiler/pull/7042 +- Deprecate js_cast.res. https://github.com/rescript-lang/rescript-compiler/pull/7074 - Deprecate top-level `"suffix"` option in `rescript.json`. https://github.com/rescript-lang/rescript-compiler/pull/7056 +#### :bug: Bug Fix + +- Handle absolute file paths in gentype. https://github.com/rescript-lang/rescript-compiler/pull/7111 +- Fix "rescript format" with many files. https://github.com/rescript-lang/rescript-compiler/pull/7081 +- Fix exponential notation syntax. https://github.com/rescript-lang/rescript/pull/7174 +- Fix formatter handling of wildcard in pattern matching records with no fields specified. https://github.com/rescript-lang/rescript/pull/7224 + #### :house: Internal + - Playground: Bundle and upload stdlib runtime so that the playground can execute functions from Core/Belt/Js. https://github.com/rescript-lang/rescript/pull/7268 # 11.1.4 diff --git a/jscomp/common/bs_version.ml b/jscomp/common/bs_version.ml index b60de7a330..b0ef4ef670 100644 --- a/jscomp/common/bs_version.ml +++ b/jscomp/common/bs_version.ml @@ -21,6 +21,6 @@ * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *) -let version = "11.1.4" +let version = "11.2.0-beta.1" let header = "// Generated by ReScript, PLEASE EDIT WITH CARE" let package_name = ref "rescript" diff --git a/jscomp/syntax/src/res_printer.ml b/jscomp/syntax/src/res_printer.ml index 376e9cacf8..f8fd5adf4c 100644 --- a/jscomp/syntax/src/res_printer.ml +++ b/jscomp/syntax/src/res_printer.ml @@ -2377,6 +2377,8 @@ and printPattern ~state (p : Parsetree.pattern) cmtTbl = Doc.group (Doc.concat [variantName; argsDoc]) | Ppat_type ident -> Doc.concat [Doc.text "#..."; printIdentPath ident cmtTbl] + | Ppat_record ([], Open) -> + Doc.concat [Doc.lbrace; Doc.text "_"; Doc.rbrace] | Ppat_record (rows, openFlag) -> Doc.group (Doc.concat diff --git a/jscomp/syntax/src/res_scanner.ml b/jscomp/syntax/src/res_scanner.ml index 40d759004a..7eaeea2a68 100644 --- a/jscomp/syntax/src/res_scanner.ml +++ b/jscomp/syntax/src/res_scanner.ml @@ -203,24 +203,30 @@ let scanIdentifier scanner = let scanDigits scanner ~base = if base <= 10 then - let rec loop scanner = + let rec loop scanner foundDigits = match scanner.ch with - | '0' .. '9' | '_' -> + | '0' .. '9' -> next scanner; - loop scanner - | _ -> () + loop scanner true + | '_' -> + next scanner; + loop scanner false + | _ -> foundDigits in - loop scanner + loop scanner false else - let rec loop scanner = + let rec loop scanner foundDigits = match scanner.ch with (* hex *) - | '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' | '_' -> + | '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' -> + next scanner; + loop scanner true + | '_' -> next scanner; - loop scanner - | _ -> () + loop scanner false + | _ -> foundDigits in - loop scanner + loop scanner false (* float: (0…9) { 0…9∣ _ } [. { 0…9∣ _ }] [(e∣ E) [+∣ -] (0…9) { 0…9∣ _ }] *) let scanNumber scanner = @@ -245,25 +251,30 @@ let scanNumber scanner = 8) | _ -> 10 in - scanDigits scanner ~base; + ignore (scanDigits scanner ~base); (* *) let isFloat = if '.' == scanner.ch then ( next scanner; - scanDigits scanner ~base; + ignore (scanDigits scanner ~base); true) else false in (* exponent part *) let isFloat = + let startPos = position scanner in match scanner.ch with | 'e' | 'E' | 'p' | 'P' -> (match peek scanner with | '+' | '-' -> next2 scanner | _ -> next scanner); - scanDigits scanner ~base; + let endPos = position scanner in + let foundDigits = scanDigits scanner ~base in + if not foundDigits then + scanner.err ~startPos ~endPos + (Diagnostics.message "Expected digits after exponential notation."); true | _ -> isFloat in diff --git a/jscomp/syntax/tests/parsing/errors/scanner/expected/exponent_notation.res.txt b/jscomp/syntax/tests/parsing/errors/scanner/expected/exponent_notation.res.txt new file mode 100644 index 0000000000..9dc53709b0 --- /dev/null +++ b/jscomp/syntax/tests/parsing/errors/scanner/expected/exponent_notation.res.txt @@ -0,0 +1,30 @@ + + Syntax error! + tests/parsing/errors/scanner/exponent_notation.res:7:10 + + 5 │ let x = 1_e_1 + 6 │ + 7 │ let x = 1e + 8 │ + 9 │ let x = 1_e_ + + Expected digits after exponential notation. + + + Syntax error! + tests/parsing/errors/scanner/exponent_notation.res:9:11 + + 7 │ let x = 1e + 8 │ + 9 │ let x = 1_e_ + 10 │ + 11 │ let x = 1. + + Expected digits after exponential notation. + +let x = 1e1 +let x = 1e_1 +let x = 1_e_1 +let x = 1e +let x = 1_e_ +let x = 1. \ No newline at end of file diff --git a/jscomp/syntax/tests/parsing/errors/scanner/exponent_notation.res b/jscomp/syntax/tests/parsing/errors/scanner/exponent_notation.res new file mode 100644 index 0000000000..623c94ccfd --- /dev/null +++ b/jscomp/syntax/tests/parsing/errors/scanner/exponent_notation.res @@ -0,0 +1,11 @@ +let x = 1e1 + +let x = 1e_1 + +let x = 1_e_1 + +let x = 1e + +let x = 1_e_ + +let x = 1. diff --git a/jscomp/syntax/tests/printer/pattern/expected/record.res.txt b/jscomp/syntax/tests/printer/pattern/expected/record.res.txt index 58fae7db62..bf469d0a31 100644 --- a/jscomp/syntax/tests/printer/pattern/expected/record.res.txt +++ b/jscomp/syntax/tests/printer/pattern/expected/record.res.txt @@ -116,3 +116,14 @@ let get_age3 = ({age: module(P: S), name: _}) => age2 let get_age3 = ({age: exception Exit, name: _}) => age2 let get_age3 = ({age: %raw("__GC"), name: _}) => age2 + +let get_age3 = ({age, _}) => age +let get_age3 = ({_}) => "" +let get_age3 = () => + switch x { + | {age, _} => age + } +let get_age3 = () => + switch x { + | {_} => "" + } diff --git a/jscomp/syntax/tests/printer/pattern/record.res b/jscomp/syntax/tests/printer/pattern/record.res index e627e6c74a..3a0c0da348 100644 --- a/jscomp/syntax/tests/printer/pattern/record.res +++ b/jscomp/syntax/tests/printer/pattern/record.res @@ -60,3 +60,14 @@ let get_age3 = ({age: module(P: S), name: _}) => age2 let get_age3 = ({age: exception Exit, name: _}) => age2 let get_age3 = ({age: %raw("__GC"), name: _}) => age2 + +let get_age3 = ({age, _}) => age +let get_age3 = ({_}) => "" +let get_age3 = () => + switch x { + | {age, _} => age + } +let get_age3 = () => + switch x { + | {_} => "" + } diff --git a/package-lock.json b/package-lock.json index c07933ec3b..67b863de9c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rescript", - "version": "11.1.4", + "version": "11.2.0-beta.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rescript", - "version": "11.1.4", + "version": "11.2.0-beta.1", "hasInstallScript": true, "license": "SEE LICENSE IN LICENSE", "bin": { diff --git a/package.json b/package.json index 91025ff35c..f80345c712 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rescript", - "version": "11.1.4", + "version": "11.2.0-beta.1", "devDependencies": { "mocha": "10.1.0", "nyc": "15.0.0", diff --git a/packages/std/package.json b/packages/std/package.json index 8e38b1b4fe..1c983dcf56 100644 --- a/packages/std/package.json +++ b/packages/std/package.json @@ -1,6 +1,6 @@ { "name": "@rescript/std", - "version": "11.1.4", + "version": "11.2.0-beta.1", "keywords": [ "rescript", "stdlib", diff --git a/scripts/rescript_format.js b/scripts/rescript_format.js index 939f8d4274..4679dd2714 100644 --- a/scripts/rescript_format.js +++ b/scripts/rescript_format.js @@ -1,5 +1,7 @@ //@ts-check +var os = require("os"); var arg = require("./rescript_arg.js"); + var format_usage = `Usage: rescript format [files] \`rescript format\` formats the current directory @@ -67,6 +69,27 @@ async function readStdin() { return Buffer.concat(chunks).toString("utf8"); } +const numThreads = os.cpus().length; + +/** + * Splits an array into smaller chunks of a specified size. + * + * @template T + * @param {T[]} array - The array to split into chunks. + * @param {number} chunkSize - The size of each chunk. + * @returns {T[][]} - An array of chunks, where each chunk is an array of type T. + */ +function chunkArray(array, chunkSize) { + /** @type {T[][]} */ + const result = []; + + for (let i = 0; i < array.length; i += chunkSize) { + result.push(array.slice(i, i + chunkSize)); + } + + return result; +} + /** * @param {string[]} files * @param {string} bsc_exe @@ -74,11 +97,15 @@ async function readStdin() { * @param {boolean} checkFormatting */ async function formatFiles(files, bsc_exe, isSupportedFile, checkFormatting) { - var incorrectlyFormattedFiles = 0; + const supportedFiles = files.filter(isSupportedFile); + const batchSize = 4 * os.cpus().length; + const batches = chunkArray(supportedFiles, batchSize); + + let incorrectlyFormattedFiles = 0; try { - const _promises = await Promise.all( - files.map(async file => { - if (isSupportedFile(file)) { + for (const batch of batches) { + await Promise.all( + batch.map(async file => { const flags = checkFormatting ? ["-format", file] : ["-o", file, "-format", file]; @@ -90,10 +117,9 @@ async function formatFiles(files, bsc_exe, isSupportedFile, checkFormatting) { incorrectlyFormattedFiles++; } } - } - return null; - }) - ); + }) + ); + } } catch (err) { console.error(err); process.exit(2);