Home
last modified time | relevance | path

Searched refs:editRanges (Results 1 – 6 of 6) sorted by relevance

/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts1549 public editRanges: { length: number; editRange: TypeScript.ScriptEditRange; }[] = [];
1556 this.editRanges = [];
1570 this.editRanges.push({
1575 if (this.editRanges.length > this.maxScriptVersions) {
1576 this.editRanges.splice(0, this.maxScriptVersions - this.editRanges.length);
1589 var initialEditRangeIndex = this.editRanges.length - (this.version - version);
1590 if (initialEditRangeIndex < 0 || initialEditRangeIndex >= this.editRanges.length) {
1595 var entries = this.editRanges.slice(initialEditRangeIndex);
/third_party/typescript/tests/baselines/reference/
Dparserharness.js1549 public editRanges: { length: number; editRange: TypeScript.ScriptEditRange; }[] = [];
1556 this.editRanges = []; property
1570 this.editRanges.push({
1575 if (this.editRanges.length > this.maxScriptVersions) {
1576 this.editRanges.splice(0, this.maxScriptVersions - this.editRanges.length);
1589 var initialEditRangeIndex = this.editRanges.length - (this.version - version);
1590 if (initialEditRangeIndex < 0 || initialEditRangeIndex >= this.editRanges.length) {
1595 var entries = this.editRanges.slice(initialEditRangeIndex);
3424 this.editRanges = []; property in anonymousFunction403853da2300.ScriptInfo.ScriptInfo
3428 this.editRanges = []; property
[all …]
Dparserharness.symbols4560 public editRanges: { length: number; editRange: TypeScript.ScriptEditRange; }[] = [];
4561 >editRanges : Symbol(ScriptInfo.editRanges, Decl(parserharness.ts, 1546, 31))
4584 this.editRanges = [];
4585 >this.editRanges : Symbol(ScriptInfo.editRanges, Decl(parserharness.ts, 1546, 31))
4587 >editRanges : Symbol(ScriptInfo.editRanges, Decl(parserharness.ts, 1546, 31))
4645 this.editRanges.push({
4646 >this.editRanges.push : Symbol(Array.push, Decl(lib.es5.d.ts, --, --))
4647 >this.editRanges : Symbol(ScriptInfo.editRanges, Decl(parserharness.ts, 1546, 31))
4649 >editRanges : Symbol(ScriptInfo.editRanges, Decl(parserharness.ts, 1546, 31))
4672 if (this.editRanges.length > this.maxScriptVersions) {
[all …]
Dparserharness.types6239 public editRanges: { length: number; editRange: TypeScript.ScriptEditRange; }[] = [];
6240 >editRanges : { length: number; editRange: TypeScript.ScriptEditRange; }[]
6265 this.editRanges = [];
6266 >this.editRanges = [] : undefined[]
6267 >this.editRanges : { length: number; editRange: TypeScript.ScriptEditRange; }[]
6269 >editRanges : { length: number; editRange: TypeScript.ScriptEditRange; }[]
6337 this.editRanges.push({
6338 >this.editRanges.push({ length: this.content.length, editRange: new T…
6339 >this.editRanges.push : (...items: { length: number; editRange: TypeScript.ScriptEditRange; }[]) =>…
6340 >this.editRanges : { length: number; editRange: TypeScript.ScriptEditRange; }[]
[all …]
Dparserharness.errors.txt1833 public editRanges: { length: number; editRange: TypeScript.ScriptEditRange; }[] = [];
1842 this.editRanges = [];
1856 this.editRanges.push({
1863 if (this.editRanges.length > this.maxScriptVersions) {
1864 this.editRanges.splice(0, this.maxScriptVersions - this.editRanges.length);
1879 var initialEditRangeIndex = this.editRanges.length - (this.version - version);
1880 if (initialEditRangeIndex < 0 || initialEditRangeIndex >= this.editRanges.length) {
1887 var entries = this.editRanges.slice(initialEditRangeIndex);
/third_party/typescript/src/harness/
DharnessLanguageService.ts17 public editRanges: { length: number; textChangeRange: ts.TextChangeRange; }[] = []; property in Harness.LanguageService.ScriptInfo
34 this.editRanges = [];
47 this.editRanges.push({
63 const initialEditRangeIndex = this.editRanges.length - (this.version - startVersion);
64 const lastEditRangeIndex = this.editRanges.length - (this.version - endVersion);
66 const entries = this.editRanges.slice(initialEditRangeIndex, lastEditRangeIndex);