porffor 0.57.0 → 0.57.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/r.cjs DELETED
@@ -1,71 +0,0 @@
1
-
2
- // class C {
3
- // // static #method = () => 1;
4
- // static #method() {
5
- // return 'Test262';
6
- // }
7
-
8
- // static getPrivateMethod() {
9
- // this.#method = () => 2;
10
- // return this.#method();
11
- // }
12
- // }
13
-
14
- // console.log(C.getPrivateMethod())
15
-
16
- // var __assert_throws = (expectedErrorConstructor, func) => {
17
- // if (typeof func !== 'function') {
18
- // throw new Test262Error('assert.throws invoked with a non-function value');
19
- // }
20
-
21
- // try {
22
- // func();
23
- // } catch {
24
- // return;
25
- // }
26
-
27
- // throw new Test262Error('assert.throws failed');
28
- // };
29
-
30
- // var __assert__isSameValue = (a, b) => {
31
- // if (a === b) {
32
- // // Handle +/-0 vs. -/+0
33
- // return a !== 0 || 1 / a === 1 / b;
34
- // }
35
-
36
- // // Handle NaN vs. NaN
37
- // return a !== a && b !== b;
38
- // };
39
-
40
- // var __assert_sameValue = (actual, expected) => {
41
- // if (__assert__isSameValue(actual, expected)) {
42
- // return;
43
- // }
44
-
45
- // throw new Test262Error('assert.sameValue failed');
46
- // };
47
-
48
- // (function() {
49
- // eval(
50
- // '__assert_throws(ReferenceError, function() {\
51
- // f;\
52
- // }, "An initialized binding is not created prior to evaluation");\
53
- // __assert_sameValue(\
54
- // typeof f,\
55
- // "undefined",\
56
- // "An uninitialized binding is not created prior to evaluation"\
57
- // );\
58
- // \
59
- // {\
60
- // let f = 123;if (false) ; else function f() { }}\
61
- // \
62
- // __assert_throws(ReferenceError, function() {\
63
- // f;\
64
- // }, "An initialized binding is not created following evaluation");\
65
- // __assert_sameValue(\
66
- // typeof f,\
67
- // "undefined",\
68
- // "An uninitialized binding is not created following evaluation"\
69
- // );'
70
- // );
71
- // }());
File without changes
File without changes
File without changes
File without changes