TypeScript/tests/cases/fourslash/protoVarVisibleWithOuterScopeUnderscoreProto.ts
2014-11-11 15:56:56 -08:00

12 lines
328 B
TypeScript

/// <reference path='fourslash.ts' />
////// outer
////var ___proto__ = 10;
////function foo() {
//// var __proto__ = "hello";
//// /**/
////}
goTo.marker('');
verify.completionListContains("__proto__", '(local var) __proto__: string');
verify.completionListContains("___proto__", '(var) ___proto__: number');