File: comparisonOperatorWithTwoOperandsAreAny.symbols

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (44 lines) | stat: -rw-r--r-- 2,114 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
=== tests/cases/conformance/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTwoOperandsAreAny.ts ===
var a: any;
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r1 = a < a;
>r1 : Symbol(r1, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 2, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r2 = a > a;
>r2 : Symbol(r2, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 3, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r3 = a <= a;
>r3 : Symbol(r3, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 4, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r4 = a >= a;
>r4 : Symbol(r4, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 5, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r5 = a == a;
>r5 : Symbol(r5, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 6, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r6 = a != a;
>r6 : Symbol(r6, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 7, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r7 = a === a;
>r7 : Symbol(r7, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 8, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))

var r8 = a !== a;
>r8 : Symbol(r8, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 9, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))
>a : Symbol(a, Decl(comparisonOperatorWithTwoOperandsAreAny.ts, 0, 3))