Home
last modified time | relevance | path

Searched refs:thisParameter (Results 1 – 14 of 14) sorted by relevance

/third_party/typescript/src/services/refactors/
DconvertParamsToDestructuredObject.ts485 const thisParameter = functionDeclaration.parameters[0]; constant
489 thisParameter.name,
491 thisParameter.type);
494 copyComments(thisParameter.name, newThisParameter.name);
495 if (thisParameter.type) {
497 copyComments(thisParameter.type, newThisParameter.type!);
DextractSymbol.ts1331 if (functionSignature && !!functionSignature.thisParameter) {
1336 … const thisType = checker.getTypeOfSymbolAtLocation(functionSignature.thisParameter, node);
/third_party/typescript/src/services/
DsignatureHelp.ts617 …const thisParameter = candidateSignature.thisParameter ? [checker.symbolToParameterDeclaration(can… constant
620 …const params = factory.createNodeArray([...thisParameter, ...map(paramList, param => checker.symbo…
DfindAllReferences.ts2083 …const thisParameter = firstDefined(references, r => isParameter(r.node.parent) ? r.node : undefine… constant
2085 … definition: { type: DefinitionKind.This, node: thisParameter || thisOrSuperKeyword },
Dservices.ts565 thisParameter!: Symbol;
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.h179 void pushImplicitThis(TVariable* thisParameter) { implicitThisStack.push_back(thisParameter); } in pushImplicitThis() argument
/third_party/typescript/src/services/codefixes/
DinferFromUsage.ts259 …st thisInference = inferTypeFromReferences(program, references, cancellationToken).thisParameter();
456 thisParameter,
573 function thisParameter() {
DreturnValueCorrect.ts144 sig.thisParameter,
/third_party/typescript/src/compiler/transformers/
Ddeclarations.ts659 const thisParameter = getThisParameter(input); constant
660 if (thisParameter) {
661 newParams = [ensureParameter(thisParameter)];
/third_party/typescript/src/compiler/
Dchecker.ts6178 …const thisParameter = context.flags & NodeBuilderFlags.OmitThisParameter ? undefined : tryGetThisP…
6179 if (thisParameter) {
6180 parameters.unshift(thisParameter);
6235 if (signature.thisParameter) {
6236 return symbolToParameterDeclaration(signature.thisParameter, context);
9286 const thisParameter = getAccessorThisParameter(func as AccessorDeclaration); constant
9287 if (thisParameter && declaration === thisParameter) {
9289 Debug.assert(!thisParameter.type);
9290 return getTypeOfSymbol(getterSignature.thisParameter!);
11386 thisParameter: Symbol | undefined,
[all …]
Dutilities.ts4555 const thisParameter = signature.parameters[0]; constant
4556 if (parameterIsThisKeyword(thisParameter)) {
4557 return thisParameter;
Dtypes.ts4843 thisParameter: Symbol | undefined,
6301 thisParameter?: Symbol; // symbol of this-type parameter
/third_party/typescript/lib/
Dtsc.js14794 var thisParameter = signature.parameters[0];
14795 if (parameterIsThisKeyword(thisParameter)) {
14796 return thisParameter;
46563 …var thisParameter = context.flags & 33554432 ? undefined : tryGetThisParameterDeclaration(signatur…
46564 if (thisParameter) {
46565 parameters.unshift(thisParameter);
46614 if (signature.thisParameter) {
46615 return symbolToParameterDeclaration(signature.thisParameter, context);
48825 var thisParameter = getAccessorThisParameter(func);
48826 if (thisParameter && declaration === thisParameter) {
[all …]
DtypingsInstaller.js18825 var thisParameter = signature.parameters[0];
18826 if (parameterIsThisKeyword(thisParameter)) {
18827 return thisParameter;
56166 …var thisParameter = context.flags & 33554432 /* NodeBuilderFlags.OmitThisParameter */ ? undefined …
56167 if (thisParameter) {
56168 parameters.unshift(thisParameter);
56217 if (signature.thisParameter) {
56218 return symbolToParameterDeclaration(signature.thisParameter, context);
58843 var thisParameter = getAccessorThisParameter(func);
58844 if (thisParameter && declaration === thisParameter) {
[all …]