File: commaOperatorOtherInvalidOperation.symbols

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 (36 lines) | stat: -rw-r--r-- 1,710 bytes parent folder | download | duplicates (2)
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
=== tests/cases/conformance/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts ===
//Expect to have compiler errors
//Comma operator in fuction arguments and return
function foo(x: number, y: string) {
>foo : Symbol(foo, Decl(commaOperatorOtherInvalidOperation.ts, 0, 0))
>x : Symbol(x, Decl(commaOperatorOtherInvalidOperation.ts, 2, 13))
>y : Symbol(y, Decl(commaOperatorOtherInvalidOperation.ts, 2, 23))

    return x, y;
>x : Symbol(x, Decl(commaOperatorOtherInvalidOperation.ts, 2, 13))
>y : Symbol(y, Decl(commaOperatorOtherInvalidOperation.ts, 2, 23))
}
var resultIsString: number = foo(1, "123"); //error here
>resultIsString : Symbol(resultIsString, Decl(commaOperatorOtherInvalidOperation.ts, 5, 3))
>foo : Symbol(foo, Decl(commaOperatorOtherInvalidOperation.ts, 0, 0))

//TypeParameters
function foo1<T1, T2>() {
>foo1 : Symbol(foo1, Decl(commaOperatorOtherInvalidOperation.ts, 5, 43))
>T1 : Symbol(T1, Decl(commaOperatorOtherInvalidOperation.ts, 8, 14))
>T2 : Symbol(T2, Decl(commaOperatorOtherInvalidOperation.ts, 8, 17))

    var x: T1;
>x : Symbol(x, Decl(commaOperatorOtherInvalidOperation.ts, 9, 7))
>T1 : Symbol(T1, Decl(commaOperatorOtherInvalidOperation.ts, 8, 14))

    var y: T2;
>y : Symbol(y, Decl(commaOperatorOtherInvalidOperation.ts, 10, 7))
>T2 : Symbol(T2, Decl(commaOperatorOtherInvalidOperation.ts, 8, 17))

    var result: T1 = (x, y); //error here
>result : Symbol(result, Decl(commaOperatorOtherInvalidOperation.ts, 11, 7))
>T1 : Symbol(T1, Decl(commaOperatorOtherInvalidOperation.ts, 8, 14))
>x : Symbol(x, Decl(commaOperatorOtherInvalidOperation.ts, 9, 7))
>y : Symbol(y, Decl(commaOperatorOtherInvalidOperation.ts, 10, 7))
}