File: incrementAndDecrement.js

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (139 lines) | stat: -rw-r--r-- 1,794 bytes parent folder | download | duplicates (7)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
//// [incrementAndDecrement.ts]
enum E { A, B, C };
var x = 4;
var e = E.B;
var a: any;
var w = window;

// Assign to expression++
x++ = 4; // Error

// Assign to expression--
x-- = 5; // Error

// Assign to++expression
++x = 4; // Error

// Assign to--expression
--x = 5; // Error

// Pre and postfix++ on number
x++;
x--;
++x;
--x;
++x++; // Error
--x--; // Error
++x--; // Error
--x++; // Error

// Pre and postfix++ on enum
e++;
e--;
++e;
--e;
++e++; // Error
--e--; // Error
++e--; // Error
--e++; // Error

// Pre and postfix++ on value of type 'any'
a++;
a--;
++a;
--a;
++a++; // Error
--a--; // Error
++a--; // Error
--a++; // Error


// Pre and postfix++ on other types
w++; // Error
w--; // Error
++w; // Error
--w; // Error
++w++; // Error
--w--; // Error
++w--; // Error
--w++; // Error




//// [incrementAndDecrement.js]
var E;
(function (E) {
    E[E["A"] = 0] = "A";
    E[E["B"] = 1] = "B";
    E[E["C"] = 2] = "C";
})(E || (E = {}));
;
var x = 4;
var e = E.B;
var a;
var w = window;
// Assign to expression++
x++;
4; // Error
// Assign to expression--
x--;
5; // Error
// Assign to++expression
++x;
4; // Error
// Assign to--expression
--x;
5; // Error
// Pre and postfix++ on number
x++;
x--;
++x;
--x;
++x;
++; // Error
--x;
--; // Error
++x;
--; // Error
--x;
++; // Error
// Pre and postfix++ on enum
e++;
e--;
++e;
--e;
++e;
++; // Error
--e;
--; // Error
++e;
--; // Error
--e;
++; // Error
// Pre and postfix++ on value of type 'any'
a++;
a--;
++a;
--a;
++a;
++; // Error
--a;
--; // Error
++a;
--; // Error
--a;
++; // Error
// Pre and postfix++ on other types
w++; // Error
w--; // Error
++w; // Error
--w; // Error
++w;
++; // Error
--w;
--; // Error
++w;
--; // Error
--w;
++; // Error