Searched refs:newContent (Results 1 – 25 of 464) sorted by relevance
12345678910>>...19
/third_party/typescript/tests/cases/fourslash/ |
D | refactorConvertStringOrTemplateLiteral_escapeSequences.ts | 11 newContent: 'let s = `\\0\\b\\f\\t\\r\\n${text}\\n`;' 23 newContent: 'let s = `"${text}\'`;' 35 newContent: 'let s = `\\$${text}\\\\`;' 47 newContent: 'let s = `\\$${text}\\\\`;' 59 newContent: 'let s = `\\${${text}}`;' 71 newContent: 'let s = `\\${${text}}`;' 83 newContent: 'let s = `\\\\\\$${text}\\\\`;' 95 newContent: 'let s = `\\u0041\\u0061${text}\\0\\u0000`;' 107 newContent: 'let s = `\\$\\`${text}\\`\\\\`;'
|
D | refactorConvertExport_exportNodeKinds.ts | 73 const newContent = tests[name]; constant 76 if (newContent === undefined) { 84 newContent: { [fileName]: newContent },
|
D | refactorConvertParamsToDestructuredObject_tupleRestParam.ts | 26 newContent: `function fn1({ a, b, args }: { a: number; b: number; args: [number, number]; }) { } 35 …newContent: `function fn2({ a, b, args }: { a: number; b: number; args: [number, number, ...string… 45 newContent: `function fn3({ b, c }: { b: boolean; c: []; }) { } 54 newContent: `function fn4({ a, args = [] }: { a: number; args?: [...string[]]; }) { }
|
D | typeExtractionDoesNotDuplicateTrailingComment.ts | 14 newContent: `type /*RENAME*/NewType = { 30 newContent: `type NewType = { 50 newContent: `type NewType = {
|
D | refactorConvertParamsToDestructuredObject_methodOverrides.ts | 19 newContent: `class A { 35 newContent: `class A {
|
D | refactorConvertToGetAccessAndSetAccess23.ts | 13 newContent: `class A { 30 newContent: `class A {
|
D | extract-method13.ts | 17 newContent: 44 newContent:
|
D | refactorConvertImport_namedToDefault1.ts | 35 newContent: `import process from "process"; 47 newContent: `import * as url from "url";
|
D | refactorExtractType49.ts | 11 newContent: `type A<T extends string> = T;
|
D | refactorConvertToGetAccessAndSetAccess_js_8.ts | 15 newContent: `/** Class comment */
|
D | refactorConvertArrowFunctionOrFunctionExpression_ToNamed_SingleLine.ts | 10 newContent: `function foo() {
|
D | refactorConvertToGetAccessAndSetAccess25.ts | 12 newContent: `class A {
|
D | refactorAddOrRemoveBracesToArrowFunction12.ts | 10 newContent: `const foo = a => "foo";`,
|
D | refactorConvertArrowFunctionOrFunctionExpression_ToArrow_Single_If.ts | 12 newContent: `const foo = () => {
|
D | extract-const-callback-function-generic.ts | 11 newContent:
|
D | refactorExtractType5.ts | 10 newContent: `type /*RENAME*/NewType = 1 | 2;
|
D | textChangesPreserveNewlines4.ts | 14 newContent:
|
D | refactorAddOrRemoveBracesToArrowFunction29.ts | 12 newContent: `const a = () => ({} as {});`,
|
D | refactorConvertToOptionalChainExpression_BinaryExpressionPartialSpan.ts | 12 newContent:
|
D | refactorConvertToGetAccessAndSetAccess16.ts | 12 newContent: `class A {
|
D | refactorExtractType46.ts | 11 newContent: `namespace A { export const b = 1; }
|
D | refactorInferFunctionReturnType8.ts | 13 newContent:
|
D | refactorExtractType10.ts | 12 newContent: `type /*RENAME*/NewType = boolean;
|
/third_party/node/deps/v8/tools/system-analyzer/view/ |
D | tool-tip.mjs | 111 const newContent = DOM.div(); 112 newContent.appendChild(content); 113 this.contentNode.replaceWith(newContent); 114 newContent.id = 'content';
|
D | property-link-table.mjs | 53 const newContent = DOM.div(); 54 newContent.appendChild(this._fragment); 55 this.$('#content').replaceWith(newContent); 56 newContent.id = 'content';
|
12345678910>>...19