mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-27 22:39:59 -05:00
Merge branch 'master' into templates
Conflicts: src/compiler/diagnosticInformationMap.generated.ts src/compiler/diagnosticMessages.json src/compiler/types.ts src/services/utilities.ts
This commit is contained in:
14
tests/cases/fourslash/noSignatureHelpOnNewKeyword.ts
Normal file
14
tests/cases/fourslash/noSignatureHelpOnNewKeyword.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
///<reference path="fourslash.ts"/>
|
||||
|
||||
////class Foo { }
|
||||
////new/*1*/ Foo
|
||||
////new /*2*/Foo(/*3*/)
|
||||
|
||||
goTo.marker('1');
|
||||
verify.not.signatureHelpPresent();
|
||||
|
||||
goTo.marker('2');
|
||||
verify.not.signatureHelpPresent();
|
||||
|
||||
goTo.marker('3');
|
||||
verify.signatureHelpPresent();
|
||||
Reference in New Issue
Block a user