File: objectFreezeLiteralsDontWiden.symbols

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (27 lines) | stat: -rw-r--r-- 1,599 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
=== tests/cases/compiler/objectFreezeLiteralsDontWiden.ts ===
const PUPPETEER_REVISIONS = Object.freeze({
>PUPPETEER_REVISIONS : Symbol(PUPPETEER_REVISIONS, Decl(objectFreezeLiteralsDontWiden.ts, 0, 5))
>Object.freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>freeze : Symbol(ObjectConstructor.freeze, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))

  chromium: '1011831',
>chromium : Symbol(chromium, Decl(objectFreezeLiteralsDontWiden.ts, 0, 43))

  firefox: 'latest',
>firefox : Symbol(firefox, Decl(objectFreezeLiteralsDontWiden.ts, 1, 22))

});

let preferredRevision = PUPPETEER_REVISIONS.chromium;
>preferredRevision : Symbol(preferredRevision, Decl(objectFreezeLiteralsDontWiden.ts, 5, 3))
>PUPPETEER_REVISIONS.chromium : Symbol(chromium, Decl(objectFreezeLiteralsDontWiden.ts, 0, 43))
>PUPPETEER_REVISIONS : Symbol(PUPPETEER_REVISIONS, Decl(objectFreezeLiteralsDontWiden.ts, 0, 5))
>chromium : Symbol(chromium, Decl(objectFreezeLiteralsDontWiden.ts, 0, 43))

preferredRevision = PUPPETEER_REVISIONS.firefox;
>preferredRevision : Symbol(preferredRevision, Decl(objectFreezeLiteralsDontWiden.ts, 5, 3))
>PUPPETEER_REVISIONS.firefox : Symbol(firefox, Decl(objectFreezeLiteralsDontWiden.ts, 1, 22))
>PUPPETEER_REVISIONS : Symbol(PUPPETEER_REVISIONS, Decl(objectFreezeLiteralsDontWiden.ts, 0, 5))
>firefox : Symbol(firefox, Decl(objectFreezeLiteralsDontWiden.ts, 1, 22))