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
|
=== tests/cases/compiler/noDefaultLib.ts ===
/// <reference no-default-lib="true"/>
var x;
>x : Symbol(x, Decl(noDefaultLib.ts, 1, 3))
interface Array {}
>Array : Symbol(Array, Decl(noDefaultLib.ts, 1, 6))
interface String {}
>String : Symbol(String, Decl(noDefaultLib.ts, 3, 18))
interface Number {}
>Number : Symbol(Number, Decl(noDefaultLib.ts, 4, 19))
interface Object {}
>Object : Symbol(Object, Decl(noDefaultLib.ts, 5, 19))
interface Date {}
>Date : Symbol(Date, Decl(noDefaultLib.ts, 6, 19))
interface Function {}
>Function : Symbol(Function, Decl(noDefaultLib.ts, 7, 17))
interface RegExp {}
>RegExp : Symbol(RegExp, Decl(noDefaultLib.ts, 8, 21))
|