DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / cloduleStaticMembers.ts
1234567891011
class Clod { private static x = 10; public static y = 10; } module Clod { var p = Clod.x; var q = x; var s = Clod.y; var t = y; }