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_ecma_parser/tests/tsc/parserEnum3.ts | TypeScript |
export enum SignatureFlags {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnum6.ts | TypeScript | enum E {
"A", "B", "C"
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnum7.ts | TypeScript | enum E {
1, 2, 3
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnumDeclaration1.ts | TypeScript | enum E {
Foo = 1,
Bar
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnumDeclaration2.d.ts | TypeScript | declare enum E {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnumDeclaration3.ts | TypeScript | declare enum E {
A = 1
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnumDeclaration5.ts | TypeScript | enum E {
A = 1,
B,
C = 2,
D
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserEnumDeclaration6.ts | TypeScript | enum E {
A = 1,
B,
C = 1 << 1,
D,
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserErrorRecovery_IncompleteMemberVariable1.ts | TypeScript | // Interface
interface IPoint {
getDist(): number;
}
// Module
module Shapes {
// Class
export class Point implements IPoint {
public con: "hello";
// Constructor
constructor (public x: number, public y: number) { }
// Instance member
getDist() { return Math.sqrt(this.x * this.x + this.y * this.y); }
// Static member
static origin = new Point(0, 0);
}
}
// Local variables
var p: IPoint = new Shapes.Point(3, 4);
var dist = p.getDist();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserErrorRecovery_ParameterList6.ts | TypeScript | class Foo {
public banana (x: break) { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserExportAsFunctionIdentifier.ts | TypeScript | interface Foo {
export(): string;
}
var f: Foo;
var x = f.export();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserExportAssignment1.ts | TypeScript | export = foo | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserExportAssignment2.ts | TypeScript | export = foo; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserExportAssignment6.ts | TypeScript | declare module "M" {
export = A;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserExportAssignment7.ts | TypeScript | export class C {
}
export = B; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserExportAssignment8.ts | TypeScript | export = B;
export class C {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForInStatement5.ts | TypeScript | for (var a: number in X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForInStatement8.ts | TypeScript | // repro from https://github.com/microsoft/TypeScript/issues/54769
for (let [x = 'a' in {}] in { '': 0 }) console.log(x)
for (let {x = 'a' in {}} in { '': 0 }) console.log(x)
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement10.ts | TypeScript | //@target: ES6
for (const v of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement11.ts | TypeScript | //@target: ES6
for (const [a, b] of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement12.ts | TypeScript | //@target: ES6
for (const {a, b} of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement13.ts | TypeScript | //@target: ES6
for (let {a, b} of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement14.ts | TypeScript | //@target: ES6
for (let [a, b] of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement15.ts | TypeScript | //@target: ES6
for (var [a, b] of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement16.ts | TypeScript | //@target: ES6
for (var {a, b} of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement17.ts | TypeScript | //@target: ES6
for (var of; ;) { } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement18.ts | TypeScript | //@target: ES6
for (var of of of) { } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement19.ts | TypeScript | //@target: ES6
for (var of in of) { } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement23.ts | TypeScript | // @target: esnext
async function foo(x: any) {
var async;
for await (async of x) {}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement24.ts | TypeScript | // @target: esnext
var async;
for ((async) of [1, 2]);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement25.ts | TypeScript | // @target: esnext
// repro from https://github.com/microsoft/TypeScript/issues/54769
for (let [x = 'a' in {}] of [[]]) console.log(x)
for (let {x = 'a' in {}} of [{}]) console.log(x)
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement5.ts | TypeScript | //@target: ES6
for (var a: number of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement8.ts | TypeScript | //@target: ES6
for (var v of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForOfStatement9.ts | TypeScript | //@target: ES6
for (let v of X) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement2.ts | TypeScript | var a;
var b = [];
var c;
for (a in b[c] = b[c] || [], d) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement3.ts | TypeScript | for(d in _.jh[a]=_.jh[a]||[],b); | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement4.ts | TypeScript | for (a = 1 in b) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement5.ts | TypeScript | for ({} in b) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement6.ts | TypeScript | for (foo() in b) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement7.ts | TypeScript | for (new foo() in b) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement8.ts | TypeScript | for (this in b) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserForStatement9.ts | TypeScript | // repro from https://github.com/microsoft/TypeScript/issues/54769
for (let [x = 'a' in {}] = []; !x; x = !x) console.log(x)
for (let {x = 'a' in {}} = {}; !x; x = !x) console.log(x)
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration1.d.ts | TypeScript | declare function F(); | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration3.ts | TypeScript | function foo(); | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration4.ts | TypeScript | function foo();
function bar() { } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration5.ts | TypeScript | function foo();
function foo() { } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration6.ts | TypeScript | {
function foo();
function bar() { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration7.ts | TypeScript | module M {
function foo();
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionDeclaration8.ts | TypeScript | declare module M {
function foo();
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionPropertyAssignment1.ts | TypeScript | var v = { foo() { } }; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionPropertyAssignment2.ts | TypeScript | var v = { 0() { } }; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionPropertyAssignment3.ts | TypeScript | var v = { "foo"() { } }; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserFunctionPropertyAssignment4.ts | TypeScript | var v = { 0<T>() { } }; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericClass1.ts | TypeScript | class C<T> {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericClass2.ts | TypeScript | class C<K,V> {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint1.ts | TypeScript | class C<T extends number> {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint2.ts | TypeScript | class C<T extends List<T> > {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint3.ts | TypeScript | class C<T extends List<T>> {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint4.ts | TypeScript | class C<T extends List<List<T> > > {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint5.ts | TypeScript | class C<T extends List<List<T>> > {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint6.ts | TypeScript | class C<T extends List<List<T> >> {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericConstraint7.ts | TypeScript | class C<T extends List<List<T>>> {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericsInInterfaceDeclaration1.ts | TypeScript | interface I<T> {
v: A<T>;
f1<T>(): T;
f2?<T>(): T;
<T>(): void;
new <T>(): void;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericsInTypeContexts1.ts | TypeScript | class C extends A<T> implements B<T> {
}
var v1: C<T>;
var v2: D<T> = null;
var v3: E.F<T>;
var v3: G.H.I<T>;
var v6: K<T>[];
function f1(a: E<T>) {
}
function f2(): F<T> {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericsInTypeContexts2.ts | TypeScript | class C extends A<X<T>, Y<Z<T>>> implements B<X<T>, Y<Z<T>>> {
}
var v1: C<X<T>, Y<Z<T>>>;
var v2: D<X<T>, Y<Z<T>>> = null;
var v3: E.F<X<T>, Y<Z<T>>>;
var v4: G.H.I<X<T>, Y<Z<T>>>;
var v6: K<X<T>, Y<Z<T>>>[];
function f1(a: E<X<T>, Y<Z<T>>>) {
}
function f2(): F<X<T>, Y<Z<T>>> {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGenericsInVariableDeclaration1.ts | TypeScript | var v : Foo<T> = 1;
var v : Foo<T>= 1;
var v : Foo<Bar<T>> = 1;
var v : Foo<Bar<T>>= 1;
var v : Foo<Bar<Quux<T>>> = 1;
var v : Foo<Bar<Quux<T>>>= 1; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity1.ts | TypeScript | 1 >> 2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity10.ts | TypeScript | 1
// before
>>> // after
2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity11.ts | TypeScript | 1 >>= 2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity15.ts | TypeScript | 1
// before
>>= // after
2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity16.ts | TypeScript | 1 >>>= 2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity20.ts | TypeScript | 1
// Before
>>>= // after
2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity5.ts | TypeScript | 1
// before
>> // after
2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserGreaterThanTokenAmbiguity6.ts | TypeScript | 1 >>> 2; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserIfStatement2.ts | TypeScript | if (a) {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserImportDeclaration1.ts | TypeScript | import TypeScript = TypeScriptServices.TypeScript; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInExpression1.ts | TypeScript | console.log("a" in { "a": true }); | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserIndexMemberDeclaration1.ts | TypeScript | class C {
[a: string]: number
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserIndexMemberDeclaration2.ts | TypeScript | class C {
[a: string]: number
public v: number
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserIndexMemberDeclaration3.ts | TypeScript | class C {
[a: string]: number;
public v: number
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserIndexMemberDeclaration4.ts | TypeScript | class C {
[a: string]: number; public v: number
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserIndexMemberDeclaration6.ts | TypeScript | class C {
static [x: string]: string;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInterfaceDeclaration5.ts | TypeScript | declare interface I {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInterfaceDeclaration7.ts | TypeScript | export interface I {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInterfaceDeclaration8.ts | TypeScript | interface string {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInterfaceDeclaration9.ts | TypeScript | interface I1 {
get foo(): number,
set foo(value: number),
}
interface I2 {
get foo(): number;
set foo(value: number);
}
interface I3 {
get foo(): number
set foo(value: number)
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInterfaceKeywordInEnum.ts | TypeScript | enum Bar {
interface,
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInterfaceKeywordInEnum1.ts | TypeScript | "use strict";
enum Bar {
interface,
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserInvocationOfMemberAccessOffOfObjectCreationExpression1.ts | TypeScript | new A().b() | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserKeywordsAsIdentifierName1.ts | TypeScript | var big = {
break : 0,
super : 0,
const : 0
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessor1.ts | TypeScript | // @target: es5
class C {
get foo() { }
set foo(a) { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration1.ts | TypeScript | // @target: es5
class C {
get a() { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration15.ts | TypeScript | // @target: es5
class C {
set Foo(public a: number) { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration2.ts | TypeScript | // @target: es5
class C {
get "b"() { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration3.ts | TypeScript | // @target: es5
class C {
get 0() { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration4.ts | TypeScript | // @target: es5
class C {
set a(i) { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration5.ts | TypeScript | // @target: es5
class C {
set "a"(i) { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberAccessorDeclaration6.ts | TypeScript | // @target: es5
class C {
set 0(i) { }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberFunctionDeclarationAmbiguities1.ts | TypeScript | class C {
public() {}
static() {}
public public() {}
public static() {}
public static public() {}
public static static() {}
static public() {}
static static() {}
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_parser/tests/tsc/parserMemberVariableDeclaration5.ts | TypeScript | class C {
declare Foo;
} | 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.