file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc/tests/tsc-references/typesWithPublicConstructor.1.normal.js | JavaScript | //// [typesWithPublicConstructor.ts]
// public is allowed on a constructor but is not meaningful
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
var C = function C() {
"use strict";
_class_call_check(this, C);
};
var c = new C();
var r = c.constructor;
var C2 = function C2(x) {
"u... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typesWithPublicConstructor.2.minified.js | JavaScript | //// [typesWithPublicConstructor.ts]
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
new function C() {
_class_call_check(this, C);
}().constructor, new function C2(x) {
_class_call_check(this, C2);
}().constructor;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typesWithSpecializedCallSignatures.1.normal.js | JavaScript | //// [typesWithSpecializedCallSignatures.ts]
// basic uses of specialized signatures without errors
import { _ as _call_super } from "@swc/helpers/_/_call_super";
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
var Base = function Bas... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typesWithSpecializedCallSignatures.2.minified.js | JavaScript | //// [typesWithSpecializedCallSignatures.ts]
import { _ as _call_super } from "@swc/helpers/_/_call_super";
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
var i, a, c = new (/*#__PURE__*/ function() {
function C() {
_clas... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typesWithSpecializedConstructSignatures.1.normal.js | JavaScript | //// [typesWithSpecializedConstructSignatures.ts]
// basic uses of specialized signatures without errors
import { _ as _call_super } from "@swc/helpers/_/_call_super";
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
var Base = functio... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typesWithSpecializedConstructSignatures.2.minified.js | JavaScript | //// [typesWithSpecializedConstructSignatures.ts]
import { _ as _call_super } from "@swc/helpers/_/_call_super";
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
var i, a, C = function C(x) {
return _class_call_check(this, C), x;
}... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typingsLookupAmd.1.normal.js | JavaScript | //// [typingsLookupAmd.ts]
define([
"require"
], function(require) {
"use strict";
});
//// [/node_modules/@types/a/index.d.ts]
define([
"require",
"exports"
], function(require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
});
//// [/x/node... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/typingsLookupAmd.2.minified.js | JavaScript | //// [typingsLookupAmd.ts]
define([
"require"
], function(require) {});
//// [/node_modules/@types/a/index.d.ts]
define([
"require",
"exports"
], function(require, exports) {
Object.defineProperty(exports, "__esModule", {
value: !0
});
});
//// [/x/node_modules/@types/b/index.d.ts]
define([
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unannotatedParametersAreOptional.1.normal.js | JavaScript | //// [test.js]
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
function f(x) {}
f(); // Always been ok
var C = /*#__PURE__*/ function() {
"use strict";
function C() {
_class_call_check(this, C);
this.p = function(x) {};
}
var _proto = C.prototype;
_proto.m ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unannotatedParametersAreOptional.2.minified.js | JavaScript | //// [test.js]
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
var C = /*#__PURE__*/ function() {
function C() {
_class_call_check(this, C), this.p = function(x) {};
}
return C.prototype.m = function(x) {}, C.m = function(x) {}, C;
}();
C.m(), new C().m(), new C().p();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/undefinedAssignableToEveryType.1.normal.js | JavaScript | //// [undefinedAssignableToEveryType.ts]
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
var C = function C() {
"use strict";
_class_call_check(this, C);
};
var ac;
var ai;
var E = /*#__PURE__*/ function(E) {
E[E["A"] = 0] = "A";
return E;
}(E || {});
var ae;
var b = undefined... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/undefinedAssignableToEveryType.2.minified.js | JavaScript | //// [undefinedAssignableToEveryType.ts]
import "@swc/helpers/_/_class_call_check";
var E, E1 = ((E = E1 || {})[E.A = 0] = "A", E);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/undefinedIsSubtypeOfEverything.1.normal.js | JavaScript | //// [undefinedIsSubtypeOfEverything.ts]
// undefined is a subtype of every other types, no errors expected below
import { _ as _call_super } from "@swc/helpers/_/_call_super";
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
var Base ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/undefinedIsSubtypeOfEverything.2.minified.js | JavaScript | //// [undefinedIsSubtypeOfEverything.ts]
import { _ as _call_super } from "@swc/helpers/_/_call_super";
import { _ as _class_call_check } from "@swc/helpers/_/_class_call_check";
import { _ as _inherits } from "@swc/helpers/_/_inherits";
var E, E1 = ((E = E1 || {})[E.A = 0] = "A", E);
function f() {}
(f || (f = {})).ba... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeEscapesInJsxtags.1.normal.js | JavaScript | //// [file.tsx]
//!
//! x Unexpected token `a`. Expected jsx identifier
//! ,-[9:1]
//! 9 | }
//! 10 | const Compa = (x: {x: number}) => <div>{"" + x}</div>;
//! 11 |
//! 12 | let a = <\u0061></a>; // works
//! : ^^^^^^
//! 13 | let ab = <\u0061-b></a-b>; // works
//! 14 | let ac = <a-\u0063... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeEscapesInJsxtags.2.minified.js | JavaScript | //// [file.tsx]
//!
//! x Unexpected token `a`. Expected jsx identifier
//! ,-[9:1]
//! 9 | }
//! 10 | const Compa = (x: {x: number}) => <div>{"" + x}</div>;
//! 11 |
//! 12 | let a = <\u0061></a>; // works
//! : ^^^^^^
//! 13 | let ab = <\u0061-b></a-b>; // works
//! 14 | let ac = <a-\u0063... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions01_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions01_ES5.ts]
var x = /\u{0}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions01_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions01_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions01_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions01_ES6.ts]
var x = /\u{0}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions01_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions01_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions02_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions02_ES5.ts]
var x = /\u{00}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions02_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions02_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions02_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions02_ES6.ts]
var x = /\u{00}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions02_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions02_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions03_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions03_ES5.ts]
var x = /\u{0000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions03_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions03_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions03_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions03_ES6.ts]
var x = /\u{0000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions03_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions03_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions04_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions04_ES5.ts]
var x = /\u{00000000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions04_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions04_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions04_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions04_ES6.ts]
var x = /\u{00000000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions04_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions04_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions05_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions05_ES5.ts]
var x = /\u{48}\u{65}\u{6c}\u{6c}\u{6f}\u{20}\u{77}\u{6f}\u{72}\u{6c}\u{64}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions05_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions05_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions05_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions05_ES6.ts]
var x = /\u{48}\u{65}\u{6c}\u{6c}\u{6f}\u{20}\u{77}\u{6f}\u{72}\u{6c}\u{64}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions05_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions05_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions06_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions06_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 1. Assert: 0 ≤ cp ≤ 0x10FFFF.
var x = /\u{10FFFF}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions06_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions06_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions06_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions06_ES6.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 1. Assert: 0 ≤ cp ≤ 0x10FFFF.
var x = /\u{10FFFF}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions06_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions06_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions07_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions07_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 1. Assert: 0 ≤ cp ≤ 0x10FFFF.
var x = /\u{110000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions07_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions07_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions07_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions07_ES6.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 1. Assert: 0 ≤ cp ≤ 0x10FFFF.
var x = /\u{110000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions07_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions07_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions08_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions08_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (FFFF == 65535)
var x = /\u{FFFF}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions08_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions08_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions08_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions08_ES6.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (FFFF == 65535)
var x = /\u{FFFF}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions08_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions08_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions09_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions09_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (10000 == 65536)
var x = /\u{10000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions09_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions09_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions09_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions09_ES6.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (10000 == 65536)
var x = /\u{10000}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions09_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions09_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions10_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions10_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. Let cu1 be floor((cp – 65536) / 1024) + 0xD800.
// Although we should just get back a single code point value of 0xD800,
// this is a useful edge-case test.
var x = /\u{D800}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions10_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions10_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions10_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions10_ES6.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. Let cu1 be floor((cp – 65536) / 1024) + 0xD800.
// Although we should just get back a single code point value of 0xD800,
// this is a useful edge-case test.
var x = /\u{D800}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions10_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions10_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions11_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions11_ES5.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. Let cu2 be ((cp – 65536) modulo 1024) + 0xDC00.
// Although we should just get back a single code point value of 0xDC00,
// this is a useful edge-case test.
var x = /\u{DC00}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions11_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions11_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions11_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions11_ES6.ts]
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. Let cu2 be ((cp – 65536) modulo 1024) + 0xDC00.
// Although we should just get back a single code point value of 0xDC00,
// this is a useful edge-case test.
var x = /\u{DC00}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions11_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions11_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions12_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions12_ES5.ts]
var x = /\u{FFFFFFFF}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions12_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions12_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions12_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions12_ES6.ts]
var x = /\u{FFFFFFFF}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions12_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions12_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions13_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions13_ES5.ts]
var x = /\u{DDDDD}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions13_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions13_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions13_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions13_ES6.ts]
var x = /\u{DDDDD}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions13_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions13_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions14_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions14_ES5.ts]
// Shouldn't work, negatives are not allowed.
var x = /\u{-DDDD}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions14_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions14_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions14_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions14_ES6.ts]
// Shouldn't work, negatives are not allowed.
var x = /\u{-DDDD}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions14_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions14_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions15_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions15_ES5.ts]
var x = /\u{abcd}\u{ef12}\u{3456}\u{7890}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions15_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions15_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions15_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions15_ES6.ts]
var x = /\u{abcd}\u{ef12}\u{3456}\u{7890}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions15_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions15_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions16_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions16_ES5.ts]
var x = /\u{ABCD}\u{EF12}\u{3456}\u{7890}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions16_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions16_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions16_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions16_ES6.ts]
var x = /\u{ABCD}\u{EF12}\u{3456}\u{7890}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions16_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions16_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions17_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions17_ES5.ts]
var x = /\u{r}\u{n}\u{t}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions17_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions17_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions17_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions17_ES6.ts]
var x = /\u{r}\u{n}\u{t}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions17_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions17_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions18_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions18_ES5.ts]
var x = /\u{65}\u{65}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions18_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions18_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions18_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions18_ES6.ts]
var x = /\u{65}\u{65}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions18_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions18_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions19_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions19_ES5.ts]
var x = /\u{}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions19_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions19_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions19_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions19_ES6.ts]
var x = /\u{}/g;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInRegularExpressions19_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInRegularExpressions19_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings01_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInStrings01_ES5.ts]
var x = "\u{0}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings01_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInStrings01_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings01_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInStrings01_ES6.ts]
var x = "\u{0}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings01_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInStrings01_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings02_ES5.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInStrings02_ES5.ts]
var x = "\u{00}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings02_ES5.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInStrings02_ES5.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings02_ES6.1.normal.js | JavaScript | //// [unicodeExtendedEscapesInStrings02_ES6.ts]
var x = "\u{00}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc/tests/tsc-references/unicodeExtendedEscapesInStrings02_ES6.2.minified.js | JavaScript | //// [unicodeExtendedEscapesInStrings02_ES6.ts]
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.