File: arithmeticOnInvalidTypes2.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 (34 lines) | stat: -rw-r--r-- 1,399 bytes parent folder | download | duplicates (5)
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
=== tests/cases/compiler/arithmeticOnInvalidTypes2.ts ===
var obj = function f<T>(a: T, b: T) {
>obj : Symbol(obj, Decl(arithmeticOnInvalidTypes2.ts, 0, 3))
>f : Symbol(f, Decl(arithmeticOnInvalidTypes2.ts, 0, 9))
>T : Symbol(T, Decl(arithmeticOnInvalidTypes2.ts, 0, 21))
>a : Symbol(a, Decl(arithmeticOnInvalidTypes2.ts, 0, 24))
>T : Symbol(T, Decl(arithmeticOnInvalidTypes2.ts, 0, 21))
>b : Symbol(b, Decl(arithmeticOnInvalidTypes2.ts, 0, 29))
>T : Symbol(T, Decl(arithmeticOnInvalidTypes2.ts, 0, 21))

    var z1 = a + b;
>z1 : Symbol(z1, Decl(arithmeticOnInvalidTypes2.ts, 1, 7))
>a : Symbol(a, Decl(arithmeticOnInvalidTypes2.ts, 0, 24))
>b : Symbol(b, Decl(arithmeticOnInvalidTypes2.ts, 0, 29))

    var z2 = a - b;
>z2 : Symbol(z2, Decl(arithmeticOnInvalidTypes2.ts, 2, 7))
>a : Symbol(a, Decl(arithmeticOnInvalidTypes2.ts, 0, 24))
>b : Symbol(b, Decl(arithmeticOnInvalidTypes2.ts, 0, 29))

    var z3 = a * b;
>z3 : Symbol(z3, Decl(arithmeticOnInvalidTypes2.ts, 3, 7))
>a : Symbol(a, Decl(arithmeticOnInvalidTypes2.ts, 0, 24))
>b : Symbol(b, Decl(arithmeticOnInvalidTypes2.ts, 0, 29))

    var z4 = a / b;
>z4 : Symbol(z4, Decl(arithmeticOnInvalidTypes2.ts, 4, 7))
>a : Symbol(a, Decl(arithmeticOnInvalidTypes2.ts, 0, 24))
>b : Symbol(b, Decl(arithmeticOnInvalidTypes2.ts, 0, 29))

    return a;
>a : Symbol(a, Decl(arithmeticOnInvalidTypes2.ts, 0, 24))

};