TypeScript/tests/cases/fourslash/completionListAfterStringLiteral1.ts
Andy 83c58a4fb5
Don't consider x. a new identifier location just because x has a number index signature (#24699)
* Don't consider `x.` a new identifier location just because x has a number index signature

* Update more tests
2018-06-07 12:05:47 -07:00

12 lines
402 B
TypeScript

/// <reference path="fourslash.ts" />
////"a"./**/
verify.completions({
marker: "",
exact: [
"toString", "charAt", "charCodeAt", "concat", "indexOf", "lastIndexOf", "localeCompare", "match", "replace", "search", "slice",
"split", "substring", "toLowerCase", "toLocaleLowerCase", "toUpperCase", "toLocaleUpperCase", "trim", "length", "substr", "valueOf",
],
});