File: contextuallyTypingOrOperator.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (38 lines) | stat: -rw-r--r-- 2,123 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
37
38
=== tests/cases/compiler/contextuallyTypingOrOperator.ts ===
var v: { a: (_: string) => number } = { a: s => s.length } || { a: s => 1 };
>v : Symbol(v, Decl(contextuallyTypingOrOperator.ts, 0, 3))
>a : Symbol(a, Decl(contextuallyTypingOrOperator.ts, 0, 8))
>_ : Symbol(_, Decl(contextuallyTypingOrOperator.ts, 0, 13))
>a : Symbol(a, Decl(contextuallyTypingOrOperator.ts, 0, 39))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 0, 42))
>s.length : Symbol(String.length, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 0, 42))
>length : Symbol(String.length, Decl(lib.d.ts, --, --))
>a : Symbol(a, Decl(contextuallyTypingOrOperator.ts, 0, 63))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 0, 66))

var v2 = (s: string) => s.length || function (s) { s.length };
>v2 : Symbol(v2, Decl(contextuallyTypingOrOperator.ts, 2, 3))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 2, 10))
>s.length : Symbol(String.length, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 2, 10))
>length : Symbol(String.length, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 2, 46))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 2, 46))

var v3 = (s: string) => s.length || function (s: number) { return 1 };
>v3 : Symbol(v3, Decl(contextuallyTypingOrOperator.ts, 4, 3))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 4, 10))
>s.length : Symbol(String.length, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 4, 10))
>length : Symbol(String.length, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 4, 46))

var v4 = (s: number) => 1 || function (s: string) { return s.length };
>v4 : Symbol(v4, Decl(contextuallyTypingOrOperator.ts, 5, 3))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 5, 10))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 5, 39))
>s.length : Symbol(String.length, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(contextuallyTypingOrOperator.ts, 5, 39))
>length : Symbol(String.length, Decl(lib.d.ts, --, --))