Skip to content

Commit b768354

Browse files
committed
prefs: turn off coctc by default
it broke getter/setter oops test262: 61.74% (+0.01) | πŸ§ͺ 50718 | 🀠 31314 (+6) | ❌ 7594 (-6) | πŸ’€ 11551 | πŸ—οΈ 0 | πŸ’₯ 239 | ⏰ 20
1 parent 169acd2 commit b768354

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

β€Žcompiler/builtins_precompiled.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žcompiler/prefs.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const onByDefault = [ 'treeshakeWasmImports', 'alwaysMemory', 'indirectCalls', 'optUnused', 'data', 'passiveData', 'rmUnusedTypes', 'optTypes', 'coctc', 'ctHash', 'closures' ];
1+
const onByDefault = [ 'treeshakeWasmImports', 'alwaysMemory', 'indirectCalls', 'optUnused', 'data', 'passiveData', 'rmUnusedTypes', 'optTypes', 'ctHash', 'closures' ];
22

33
const nameToKey = x => x.replace(/[a-z]\-[a-z]/g, y => `${y[0]}${y[2].toUpperCase()}`);
44

β€Žjsr.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@honk/porffor",
3-
"version": "0.60.29",
3+
"version": "0.60.30",
44
"exports": "./compiler/wrap.js",
55
"publish": {
66
"exclude": [

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "porffor",
33
"description": "An ahead-of-time JavaScript compiler",
4-
"version": "0.60.29",
4+
"version": "0.60.30",
55
"author": "Oliver Medhurst <honk@goose.icu>",
66
"license": "MIT",
77
"scripts": {},

β€Žruntime/index.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env node
22
import fs from 'node:fs';
3-
globalThis.version = '0.60.29';
3+
globalThis.version = '0.60.30';
44

55
// deno compat
66
if (typeof process === 'undefined' && typeof Deno !== 'undefined') {

β€Žtest262/history.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
Β (0)