File: commonMissingSemicolons.ts

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (81 lines) | stat: -rw-r--r-- 1,403 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// @noEmit: true
// @noTypesAndSymbols: true

async function myAsyncFunction1() {}
asynd function myAsyncFunction2() {}
sasync function myAsyncFunction3() {}

// Arrow functions don't (yet?) parse as nicely as standalone functions.
// Eventually it would be good to get them the same "did you mean" for typos such as "asyncd".
const myAsyncArrow1 = async () => 3;
const myAsyncArrow2 = asyncd () => 3;

class MyClass1 {}
clasd MyClass2 {}
classs MyClass3 {}

const myConst1 = 1;
consd myConst2 = 1;
constd myConst3 = 1;

declare const myDeclareConst1: 1;
declared const myDeclareConst2: 1;
declare constd myDeclareConst3: 1;
declared constd myDeclareConst4: 1;
declareconst myDeclareConst5;

function myFunction1() { }
functiond myFunction2() { }
function function() { }
functionMyFunction;

interface myInterface1 { }
interfaced myInterface2 { }
interface interface { }
interface { }
interface void { }
interfaceMyInterface { }

let let = 1;
let let1 = 1;
letd let2 = 1;
letMyLet;

type type;
type type1 = {};
type type2 = type;
type type3 = {};
typed type4 = {}
typed type5 = type;
typeMyType;

var myVar1 = 1;
vard myVar2 = 1;
varMyVar;

class NoSemicolonClassA {
  ['a'] = 0
  {}
}

class NoSemicolonClassB {
  ['a'] = 0
  {}
}

class NoSemicolonClassC {
  ['a'] = 0;
  {}
}

class NoSemicolonClassD {
  ['a'] = 0
  ['b']() {}
}
 
class NoSemicolonClassE {
  ['a'] = 0
  ['b']() {
    c: true
  }
}