File: reservedNamesInAliases.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 (25 lines) | stat: -rw-r--r-- 865 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
=== tests/cases/conformance/types/typeAliases/reservedNamesInAliases.ts ===
interface I {}
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))

type any = I;
>any : Symbol(any, Decl(reservedNamesInAliases.ts, 0, 14))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))

type number = I;
>number : Symbol(number, Decl(reservedNamesInAliases.ts, 1, 13))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))

type boolean = I;
>boolean : Symbol(boolean, Decl(reservedNamesInAliases.ts, 2, 16))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))

type string = I;
>string : Symbol(string, Decl(reservedNamesInAliases.ts, 3, 17))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))

type void = I;
type object = I;
>object : Symbol(object, Decl(reservedNamesInAliases.ts, 5, 14))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))