File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -2013,7 +2013,8 @@ namespace ts.Completions {
2013
2013
const result = isInStringOrRegularExpressionOrTemplateLiteral ( contextToken ) ||
2014
2014
isSolelyIdentifierDefinitionLocation ( contextToken ) ||
2015
2015
isDotOfNumericLiteral ( contextToken ) ||
2016
- isInJsxText ( contextToken ) ;
2016
+ isInJsxText ( contextToken ) ||
2017
+ isBigIntLiteral ( contextToken ) ;
2017
2018
log ( "getCompletionsAtPosition: isCompletionListBlocker: " + ( timestamp ( ) - start ) ) ;
2018
2019
return result ;
2019
2020
}
Original file line number Diff line number Diff line change
1
+ /// <reference path="fourslash.ts" />
2
+
3
+ //// declare const SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number
4
+ //// const foo = 0n/*1*/;
5
+
6
+ verify . completions ( {
7
+ marker : '1' ,
8
+ exact : [ ]
9
+ } ) ;
You can’t perform that action at this time.
0 commit comments