Searched refs:sigArgType (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
H A D | function.cpp | 723 checker::Type *sigArgType = nullptr; in CallMatchesSignature() local 729 sigArgType = signature->RestVar()->TsType(); in CallMatchesSignature() 731 sigArgType = signature->Params()[index]->TsType(); in CallMatchesSignature() 736 if (!IsTypeAssignableTo(callArgType, sigArgType)) { in CallMatchesSignature() 739 sigArgType, "'."}, in CallMatchesSignature() 749 ElaborateElementwise(sigArgType, args[index], args[index]->Start()); in CallMatchesSignature()
|
/arkcompiler/ets_frontend/ets2panda/checker/ts/ |
H A D | function.cpp | 704 checker::Type *sigArgType = nullptr; in CallMatchesSignature() local 710 sigArgType = signature->RestVar()->TsType(); in CallMatchesSignature() 712 sigArgType = signature->Params()[index]->TsType(); in CallMatchesSignature() 717 if (IsTypeAssignableTo(callArgType, sigArgType)) { in CallMatchesSignature() 723 {"Argument of type '", callArgType, "' is not assignable to parameter of type '", sigArgType, "'."}, in CallMatchesSignature() 729 ElaborateElementwise(sigArgType, args[index], args[index]->Start()); in CallMatchesSignature()
|
Completed in 4 milliseconds